/* Modern Healthcare Supply Theme - Mobile First Approach */

:root {
  /* Blue-Dominant Color Palette */
  --primary-blue: #0084d4;
  --primary-blue-dark: #042f4d;
  --primary-blue-medium: #0069ab;
  --primary-blue-light: #def1ff;
  --primary-blue-ultra-light: #eff0ff;
  
  /* Secondary Blue Variations */
  --secondary-blue: #2cbeff;
  --secondary-blue-light: #75d4ff;
  --accent-blue: #0084d4;
  --accent-blue-dark: #064a74;
  
  /* Supporting Colors */
  --accent-orange: #FF6B35;
  --success-green: #4CAF50;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --section-gap: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows with Blue Tints */
  --shadow-sm: 0 1px 2px 0 rgba(4, 47, 77, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(4, 47, 77, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(4, 47, 77, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(4, 47, 77, 0.1);
  
  /* Blue-Dominant Gradients */
  --gradient-primary: linear-gradient(135deg, #0084d4 0%, #2cbeff 100%);
  --gradient-secondary: linear-gradient(135deg, #042f4d 0%, #0084d4 100%);
  --gradient-hero: linear-gradient(135deg, rgba(4, 47, 77, 0.95) 0%, rgba(0, 132, 212, 0.90) 100%);
  --gradient-text: linear-gradient(135deg, #0084d4 0%, #2cbeff 100%);
  --gradient-highlight: linear-gradient(120deg, rgba(0, 132, 212, 0.15) 0%, rgba(44, 190, 255, 0.20) 100%);
  --gradient-card: linear-gradient(135deg, #0069ab 0%, #0084d4 100%);
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-700);
  font-size: 16px;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  color: var(--gray-800);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 132, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 132, 212, 0.5);
  background: linear-gradient(135deg, #042f4d 0%, #0084d4 100%);
}

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

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Header */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.75rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  margin-right: 0.5rem;
}

.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-700);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.header-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  transition: all 0.3s ease;
}

/* Main Content */
.main-content {
  margin-top: 75px;
  padding-top: var(--container-padding);
}

/* Hero Section */
.hero-section {
  /* background: var(--gradient-hero); */
  color: var(--white);
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
  min-height: 70vh;
  padding: 2rem 0;
}

.hero-text h1 {
  color: rgba(0, 0, 0, 0.9);
  margin-bottom: 1rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.text-highlight {
  background: linear-gradient(135deg, #0084d4, #2cbeff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.company-name {
  color: #0084d4;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 2rem 0;
  color: rgba(0, 0, 0, 0.9);
}

.hero-actions {
  color: gray;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.partnership-images {
  display: flex;
  /* gap: 1rem; */
  align-items: center;
  margin-top: 0.25rem;
}

.partner-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  /* background: #ffffff; */
  /* border: 2px solid #0084d4; */
  /* border-radius: 8px; */
  padding: 8px;
  margin: 0 0.25rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.best-partner-logo {
  height: 260px;
  width: auto;
  object-fit: contain;
  /* background: #ffffff; */
  /* border: 2px solid #0084d4; */
  /* border-radius: 8px; */
  padding: 8px;
  margin: 0 0.25rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.partner-logo:hover {
  opacity: 1;
}

.partner-placeholder {
  height: 60px;
  width: 120px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid #dee2e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-placeholder:hover {
  opacity: 1;
}

.hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  text-decoration: none;
}

.hero-text p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.partner-logo {
  height: 120px;
  width: auto;
  opacity: 0.8;
  /* filter: brightness(0) invert(1); */
}

.hero-image {
  text-align: center;
  position: relative;
}

.doctor-image img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
  width: 600px;
  height: 600px;
  object-fit: cover;
  /* border: 8px solid rgba(255, 255, 255, 0.2); */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); */
}

/* Stats Cards */
.hero-stats {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.partner-card {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stats-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.best-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 0.5rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  pointer-events: auto;
}

.stats-card.happy-clients {
  top: 20%;
  right: 5%;
  width: 300px;
  z-index: 10;
}

.stats-card.order-delivery {
  left: -51%;
  top: 36%;
  width: 377px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
}

.best-card.best-client {
  left: 0%;
  top: 36%;
  width: 277px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 10;
}

.chat-bubble {
  position: absolute;
  bottom: 32%;
  right: 45%;
  background: white;
  border-radius: 20px;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  width: 370px;
  pointer-events: auto;
  z-index: 10;
}

.chat-bubble::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

/* Avatar Stack */
.client-avatars {
  margin-bottom: 15px;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  object-fit: cover;
}

.avatar:first-child {
  margin-left: 0;
}

/* Stats Info */
.stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.stats-label {
  color: #3498db;
  font-weight: 600;
  margin: 5px 0 10px 0;
  font-size: 1rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  color: #f1c40f;
}

.rating-value {
  color: #7f8c8d;
  font-size: 0.9rem;
}

/* Order Delivery Card */
.card-icon {
  width: 25px;
  height: 25px;
  background: #3498db;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.5rem;
}

.card-icon-lg {
  width: 50px;
  height: 50px;
  background: #3498db;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  padding-bottom: 5px;
}

.card-text h4 {
  margin: 0;
  color: #2c3e50;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Chat Bubble Text */
.chat-bubble p {
  margin: 0;
  color: #7f8c8d;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Decorative Lines */
.decorative-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.line {
  position: absolute;
  border: 2px dashed #3498db;
  opacity: 0.3;
}

.line-1 {
  top: 25%;
  right: 28%;
  width: 80px;
  height: 1px;
  transform: rotate(30deg);
}

.line-2 {
  left: 25%;
  top: 55%;
  width: 60px;
  height: 1px;
  transform: rotate(-45deg);
}

.line-3 {
  bottom: 25%;
  right: 32%;
  width: 70px;
  height: 1px;
  transform: rotate(20deg);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(0, 212, 255, 0.2));
  border-radius: 50%;
  z-index: -1;
}

/* Background Ornaments */
.hero-ornament {
  position: absolute;
  z-index: 1;
}

.ornament-dots {
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 2px, transparent 2px);
  background-size: 15px 15px;
}

.ornament-dots-1 {
  top: 10%;
  right: 10%;
}

.ornament-dots-2 {
  bottom: 20%;
  left: 5%;
}

.ornament-circle {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-style: dashed;
}

.ornament-circle-1 {
  top: 20%;
  left: 15%;
}

.ornament-circle-2 {
  bottom: 30%;
  right: 20%;
}

.ornament-dashed-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 50%, transparent 50%);
  background-size: 20px 2px;
}

.ornament-line-1 {
  top: 35%;
  left: 8%;
  transform: rotate(45deg);
}

.ornament-line-2 {
  bottom: 15%;
  right: 15%;
  transform: rotate(-30deg);
}

.ornament-plus {
  width: 30px;
  height: 30px;
  position: relative;
}

.ornament-plus::before,
.ornament-plus::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
}

.ornament-plus::before {
  width: 30px;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.ornament-plus::after {
  width: 3px;
  height: 30px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.ornament-plus-1 {
  top: 15%;
  left: 25%;
}

.ornament-plus-2 {
  bottom: 25%;
  right: 8%;
}

/* Curved Line Ornaments */
.ornament-curved-line {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top: none;
  border-right: none;
}

.curved-line-1 {
  top: 10%;
  right: 25%;
  transform: rotate(45deg);
}

.curved-line-2 {
  bottom: 15%;
  left: 10%;
  transform: rotate(-135deg);
  width: 120px;
  height: 120px;
}

/* Vector Ornaments */
.vector-ornament {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.vector-ornament img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vector-ornament-1 {
  top: 5%;
  right: 5%;
  width: 300px;
  height: 200px;
  transform: rotate(15deg);
}

.vector-ornament-2 {
  bottom: 10%;
  left: 3%;
  width: 250px;
  height: 150px;
  transform: rotate(-45deg) scaleX(-1);
  opacity: 0.3;
}

/* Hero Ornaments Container */
.hero-ornaments {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

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

.hero-image-wrapper {
  /* position: relative; */
  width: 100%;
  max-width: 500px;
  height: 600px;
  display: flex;
  justify-content: center;
  /* align-items: center; */
}

.circle-background {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(44, 190, 255, 0.3), rgba(0, 132, 212, 0.2));
  border-radius: 50%;
  z-index: 1;
}

.doctor-image {
  position: relative;
  z-index: 2;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  overflow: hidden;
  /* border: 8px solid rgba(255, 255, 255, 0.2); */
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Stats Cards */
.hero-stats {
  position: absolute;
  right: -180px;
  top: 68%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stats-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stats-card:hover {
  transform: translateX(-10px) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Happy Clients Card */
.happy-clients {
  min-width: 220px;
  text-align: center;
}

.client-avatars {
  margin-bottom: 0.25rem;
}

.avatar-stack {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.avatar:first-child {
  margin-left: 0;
}

.stats-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 0 0 0.25rem 0;
  line-height: 1;
}

.stats-label {
  font-size: 1rem;
  color: #666;
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stars {
  color: #ffa500;
  font-size: 1.1rem;
  display: flex;
  gap: 2px;
}

.rating-value {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
}

/* Order Delivery Card */
.order-delivery {
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary-blue), #2cbeff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 132, 212, 0.3);
}

.card-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
  line-height: 1.3;
}

.testimonial-card {
  background: var(--white);
  border: 2px solid var(--primary-blue-light);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 132, 212, 0.1);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 132, 212, 0.02) 0%, rgba(44, 190, 255, 0.05) 100%);
  z-index: 1;
}

.testimonial-card > * {
  position: relative;
  z-index: 2;
}

.testimonial-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.testimonial-logo img {
  max-width: 100px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--gray-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Section Spacing */
.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-title p {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

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

/* Cards */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

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

.card-icon {
  width: 25px;
  height: 25px;
  background: var(--gradient-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 0.25rem; */
  box-shadow: 0 4px 20px rgba(0, 132, 212, 0.3);
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  z-index: -1;
  filter: blur(8px);
  opacity: 0.4;
}

.card-icon svg,
.card-icon i {
  width: 16px;
  height: 15px;
  font-size: 15px;
  color: var(--white);
  z-index: 1;
}

/* Modern Tracking Section */
.tracking-section {
  background: var(--white);
  padding: 1rem 0;
}

.tracking-container {
  /* background: linear-gradient(135deg, var(--primary-blue-light) 0%, rgba(44, 190, 255, 0.1) 100%); */
  border: 2px solid var(--primary-blue-light);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.tracking-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 132, 212, 0.02) 0%, rgba(44, 190, 255, 0.05) 100%);
  z-index: 1;
}

.tracking-container > * {
  position: relative;
  z-index: 2;
}

.tracking-header {
  text-align: left;
  margin-bottom: 2rem;
}

.tracking-header h2 {
  font-size: 2.5rem;
  margin: 0;
  color: var(--primary-blue);
}

/* Modern Tracking Form */
.tracking-form-modern {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  align-items: stretch;
  width: 100%;
}

.tracking-input-modern {
  flex: 9;
  padding: 1rem 1.5rem;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--white);
  color: var(--gray-500);
  transition: all 0.3s ease;
}

.tracking-input-modern:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 132, 212, 0.1);
}

.btn-track-now {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  flex: 1;
  min-width: 140px;
}

.btn-track-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 132, 212, 0.3);
}

/* Modern Timeline */
.timeline-modern {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0;
}

/* Center empty state when it's the only child */
.timeline-modern:has(.timeline-empty-state:only-child) {
  align-items: center;
  justify-content: center;
}

.timeline-step-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  text-align: center;
  flex-shrink: 0;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 24px;
  transition: all 0.3s ease;
}

.timeline-step-modern.completed .step-icon {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 132, 212, 0.3);
}

.timeline-step-modern.active .step-icon {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 132, 212, 0.4);
  transform: scale(1.1);
}

.timeline-step-modern.pending .step-icon {
  background: var(--gray-200);
  color: var(--gray-400);
}

.step-info {
  width: 100%;
}

.step-header {
  margin-bottom: 0.5rem;
}

.step-label {
  font-size: 0.875rem;
  color: var(--gray-500);
  font-weight: 500;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0.5rem 0;
}

.step-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.step-status.completed {
  background: var(--gradient-primary);
  color: var(--white);
}

.step-status.in-progress {
  background: var(--gray-200);
  color: var(--gray-600);
}

.step-date {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
  line-height: 1.4;
}

.timeline-connector {
  width: 40px;
  height: 2px;
  background: var(--gray-200);
  margin: 2rem 0;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 30px;
}

.timeline-connector.completed {
  background: var(--gradient-primary);
}

/* Service Cards */
.service-grid {
  display: grid;
  gap: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-200);
}

.service-card h2 {
  padding-top: 0.5rem;
  font-size: 1.125rem
}

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

/* About Section */
.about-section {
  background: var(--white);
  padding: 1rem 0;
}

.about-container {
  border: 2px solid var(--primary-blue-light);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 132, 212, 0.02) 0%, rgba(44, 190, 255, 0.05) 100%);
  z-index: 1;
}

.about-container > * {
  position: relative;
  z-index: 2;
}

.about-container h2 {
  padding-bottom: 1.5rem;
  text-align: center;
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-text h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--gray-600);
}

/* Platform Steps */
.platform-section {
  background: var(--white);
  padding: 1rem 0;
}

.platform-container {
  border: 2px solid var(--primary-blue-light);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.platform-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 132, 212, 0.02) 0%, rgba(44, 190, 255, 0.05) 100%);
  z-index: 1;
}

.platform-container > * {
  position: relative;
  z-index: 2;
}

.platform-content {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.platform-steps {
  position: relative;
  padding-left: 2rem;
}

.platform-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 35px;
  bottom: 110px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--primary-blue) 0px,
    var(--primary-blue) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 1;
}

.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 132, 212, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 50%;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Partner Showcase */
.partner-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.partner-logo-container {
  position: relative;
}

.partner-card {
  background: linear-gradient(135deg, rgba(222, 241, 255, 0.8) 0%, rgba(44, 190, 255, 0.1) 100%);
  border: 2px solid var(--primary-blue-light);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-width: 320px;
  max-width: 380px;
  box-shadow: 0 8px 25px rgba(0, 132, 212, 0.15);
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 132, 212, 0.02) 0%, rgba(44, 190, 255, 0.05) 100%);
  z-index: 1;
}

.partner-card > * {
  position: relative;
  z-index: 2;
}

.partner-logo-wrapper {
  /* margin-bottom: 2rem; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 1rem; */
}

.partner-logo {
  max-width:120px;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-card .stats-card {
  background: var(--white);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto;
  max-width: fit-content;
}

.partner-card .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.partner-card .card-text h4 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.client-logos {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.client-logo {
  height: 60px;
  width: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.client-logo:hover {
  opacity: 1;
}

/* Counter Section */
.counter-section {
  background: var(--white);
  color: var(--gray-800);
  text-align: center;
}

.testimonials-counter-layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.testimonials-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

/* Testimonial Card with Two-Column Layout */
.testimonial-card-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.testimonial-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.testimonial-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.counter-grid {
  display: grid;
  gap: 3rem;
  margin: 2rem 0;
}

.counter-item h3 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.counter-item p {
  font-size: 1rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* Product Grid */
.product-grid {
  display: grid;
  gap: 2rem;
}

.product-card {
  background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
  position: relative;
  color: var(--white);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(33, 150, 243, 0.4);
}

.product-image-wrapper {
  position: relative;
  padding: 1.5rem 1.5rem 0;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Removed product badges - no longer needed */
/*.product-quantity-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.product-description-badge {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary-blue);
  padding: 0.5rem 1rem;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  max-width: calc(100% - 2rem);
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}*/

.product-content {
  padding: 1rem 1.5rem 1.5rem;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
  text-align: left;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-rating {
  background: var(--white);
  color: #FFD700;
  padding: 0.4rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  min-width: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-category {
  background: var(--white);
  color: var(--primary-blue);
  padding: 0.4rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* More Card Styling */
.more-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.product-card.more-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.more-link {
  text-decoration: none;
  color: var(--primary-blue);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-blue);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.more-content:hover {
  background: var(--primary-blue-dark);
  transform: scale(1.05);
}

.product-price {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.25rem;
}

/* Map Section */
.map-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.map-container {
  height: 500px;
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#map {
  height: 100%;
  width: 100%;
}

/* Warehouse Cards Section */
.warehouse-cards-section {
  position: relative;
}

.warehouse-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.warehouse-card {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

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

.warehouse-card h4 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.warehouse-address {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.warehouse-address p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.95;
}

.warehouse-address strong {
  font-weight: 700;
  font-size: 1.1rem;
}

.warehouse-directions-btn {
  background: var(--white);
  color: var(--primary-blue);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
}

.warehouse-directions-btn:hover {
  background: var(--primary-blue-light);
  color: var(--primary-blue-dark);
  transform: none;
}

.warehouse-card-hidden {
  display: none;
}

/* Carousel Controls */
.warehouse-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.warehouse-carousel-btn {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.warehouse-carousel-btn:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.warehouse-carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.warehouse-carousel-btn i {
  transition: transform 0.3s ease;
}

.warehouse-carousel-btn:hover:not(:disabled) i {
  transform: scale(1.2);
}

/* Footer */
.footer {
  background: var(--white);
  color: var(--gray-600);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gray-100);
}

.footer .footer-content {
  display: grid !important;
  gap: 2rem;
  margin-bottom: 3rem;
  grid-template-columns: repeat(4, 1fr) !important;
  align-items: start;
}

/* Footer Brand Section */
.footer-brand {
  max-width: none;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.logo-icon {
  display: flex;
  gap: 4px;
  align-items: center;
  width: fit-content;
}

.logo-shape {
  width: 12px;
  height: 24px;
  transform: skew(-15deg);
}

.logo-shape.green {
  background: #4CAF50;
}

.logo-shape.blue {
  background: var(--primary-blue);
}

.logo-shape.gray {
  background: var(--gray-400);
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-500);
  margin: 0;
}

/* Footer Sections */
.footer-section {
}

.footer-section h4 {
  color: var(--primary-blue);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li:last-child {
  margin-bottom: 0;
}

.footer-section a {
  color: var(--gray-600);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-section a:hover {
  color: var(--primary-blue);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-link.facebook {
  background: #1877F2;
}

.social-link.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.social-link.linkedin {
  background: #0A66C2;
}

.social-link.youtube {
  background: #FF0000;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.copyright {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Design - Mobile First */

/* Mobile (<480px) defaults - single column */
.warehouse-cards-container {
  grid-template-columns: 1fr;
}

@media (min-width: 480px) {

  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  
  .testimonials-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }

  .warehouse-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-container {
    padding: 2rem 1.5rem;
  }
  
  .platform-steps::before {
    display: none;
  }
  
  .platform-steps {
    padding-left: 0;
  }
  
  .step {
    margin-bottom: 2rem;
  }
  
  .partner-card {
    min-width: auto;
    padding: 2rem 1.5rem;
  }
  
  .platform-container {
    padding: 2rem 1.5rem;
  }
  
  /* Tracking Section Mobile */
  .tracking-container {
    padding: 2rem 1.5rem;
  }
  
  .tracking-header h2 {
    font-size: 2rem;
  }
  
  .tracking-form-modern {
    flex-direction: column;
    gap: 1rem;
  }
  
  .tracking-input-modern {
    width: 100%;
  }
  
  .btn-track-now {
    width: 100%;
    min-width: unset;
    justify-content: center;
  }
  
  .timeline-step-modern {
    min-width: 160px;
  }
  
  .timeline-connector {
    width: 30px;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 767px) {
  .hero-content {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    text-align: center;
    min-height: auto;
    padding: 1rem 0;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-image-wrapper {
    max-width: 300px;
    height: 300px;
  }
  
  .circle-background {
    width: 280px;
    height: 280px;
  }
  
  .doctor-image {
    width: 250px;
    height: 250px;
  }
  
  .hero-stats {
    position: static;
    flex-direction: row;
    justify-content: center;
    transform: none;
    margin-top: 1rem;
    gap: 1rem;
  }
  
  .stats-card {
    min-width: auto;
    padding: 1rem;
  }
  
  .hero-ornaments {
    display: none;
  }
  
  .vector-ornament {
    display: none;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  
  h1 { font-size: 3rem; }
  h2 { font-size: 2.5rem; }
  
  /* Force 4-column footer layout on desktop */
  .footer .footer-content {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
  }
  
  .nav-menu {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
  
  .tracking-form {
    flex-direction: row;
  }
  
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .about-content { grid-template-columns: 1fr 1fr; }
  .platform-content { grid-template-columns: 1fr 1fr; }
  
  .platform-steps::before {
    display: block;
  }
  .counter-grid { grid-template-columns: repeat(4, 1fr); }

  /* Two-column testimonials row on tablet/desktop */
  .testimonials-row {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  /* Two-column layout inside each testimonial card */
  .testimonial-card-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .client-logos { grid-template-columns: repeat(3, 1fr); }
  
  .footer-content { 
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem;
  }
  
  .footer-brand {
    max-width: none;
  }
  
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }

  /* Warehouse Cards - 3 columns on desktop */
  .warehouse-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  
  .main-content {
    padding-top: 100px;
  }
  
  h1 { font-size: 3.5rem; }
  
  .hero-section {
    padding: 3rem 0 1rem;
  }
  
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(4, 1fr); }
  .client-logos { grid-template-columns: repeat(4, 1fr); }
  
  .map-container {
    height: 500px;
  }
}

@media (min-width: 1200px) {
  .hero-content {
    gap: 6rem;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  to {
    left: 100%;
  }
}

/* Catalogue Page Styles */
.catalogue-banner {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}

.catalogue-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(43, 155, 209, 0.9) 0%, rgba(0, 163, 181, 0.95) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
}

.banner-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-size: 1rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
}

/* Search and Filter Section */
.search-filter-section {
  background: var(--white);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 75px;
  z-index: 100;
}

.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-bar {
  flex: 1;
}

.search-input-container {
  display: flex;
  gap: 0.5rem;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input {
  flex: 1;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  z-index: 1;
}

.search-btn {
  white-space: nowrap;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: end;
}

.filter-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 150px;
}

.filter-item label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}

.filter-select {
  padding: 0.75rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  background: var(--white);
  transition: border-color 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.clear-filters-btn {
  white-space: nowrap;
  align-self: end;
}

/* Active Filters */
.active-filters {
  background: var(--gray-50);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.active-filters h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-tag {
  background: var(--primary-blue-light);
  color: var(--primary-blue-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-tag button {
  background: none;
  border: none;
  color: var(--primary-blue-dark);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  margin: 0;
}

/* Products Section */
.products-section {
  padding: 2rem 0;
}

.products-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: linear-gradient(135deg, #2196F3 0%, #21CBF3 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.3);
  transition: all 0.3s ease;
  position: relative;
  color: var(--white);
}

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

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge:not(.new):not(.sale):not(.premium) {
  background: var(--accent-orange);
  color: var(--white);
}

.product-badge.new {
  background: var(--secondary-green);
  color: var(--white);
}

.product-badge.sale {
  background: #e74c3c;
  color: var(--white);
}

.product-badge.premium {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: var(--gray-800);
}

.product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.3s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.action-btn {
  background: var(--white);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.action-btn:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

.product-content {
  padding: 1.5rem;
}

.product-category {
  color: var(--gray-500);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-brand {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.stars {
  display: flex;
  gap: 0.125rem;
}

.stars i {
  color: #ffd700;
  font-size: 0.875rem;
}

.rating-count {
  color: var(--gray-500);
  font-size: 0.875rem;
}

.product-price {
  margin-bottom: 0.75rem;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-blue);
}

.original-price {
  font-size: 1rem;
  color: var(--gray-500);
  text-decoration: line-through;
  margin-left: 0.5rem;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feature {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
}

.product-buttons {
  display: flex;
  gap: 0.5rem;
}

.product-buttons .btn {
  flex: 1;
  font-size: 0.875rem;
  padding: 0.75rem 1rem;
}

/* Loading Spinner */
.loading-container {
  text-align: center;
  padding: 3rem;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top: 4px solid var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn,
.pagination-number {
  background: var(--white);
  border: 1px solid var(--gray-300);
  color: var(--gray-700);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pagination-btn:hover,
.pagination-number:hover {
  background: var(--gray-50);
  border-color: var(--primary-blue);
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-number.active {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  color: var(--white);
}

.pagination-ellipsis {
  padding: 0.5rem;
  color: var(--gray-500);
}

.results-info {
  color: var(--gray-600);
  font-size: 0.875rem;
}

/* Nav Menu Active State */
.nav-menu a.active {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
  .nav-menu {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  .search-input-container {
    flex-direction: column;
  }
  
  .filter-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-item {
    min-width: unset;
  }
  
  .pagination-container {
    flex-direction: column;
    text-align: center;
  }
  
  /* Footer Mobile Styles */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }
  
  .footer-brand {
    max-width: none;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

/* Responsive Grid */
@media (min-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Footer Tablet Styles */
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    text-align: left;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .search-filter-container {
    flex-direction: row;
    /* align-items: end; */
  }
  
  .filter-controls {
    flex-direction: row;
    align-items: end;
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Tracking Section Tablet/Desktop */
  .tracking-form-modern {
    flex-direction: row;
  }
  
  .tracking-header h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.hidden { display: none; }
.block { display: block; }

/* Grid Column Spanning Utilities */
.col-span-1 { grid-column: span 1; }
.col-span-2 { grid-column: span 2; }
.col-span-3 { grid-column: span 3; }

/* Responsive Column Spanning */
@media (min-width: 768px) {
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:col-span-3 { grid-column: span 3; }
}
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }

/* PO Tracking Alert Messages */
.tracking-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tracking-alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.tracking-alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.tracking-alert-success i {
  color: #28a745;
}

.tracking-alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.tracking-alert-error i {
  color: #dc3545;
}

.tracking-alert-info {
  background: var(--primary-blue-light);
  color: var(--primary-blue-dark);
  border: 1px solid rgba(0, 132, 212, 0.2);
}

.tracking-alert-info i {
  color: var(--primary-blue);
}

/* Timeline Empty State */
.timeline-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 300px;
  color: var(--gray-400);
}

.timeline-empty-state i {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  opacity: 0.3;
  color: var(--primary-blue);
}

.timeline-empty-state p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  color: var(--gray-500);
}

/* Loading Button State */
.btn-track-now:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.fa-spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* ========================================
   PRODUCT DETAIL PAGE STYLES
   ======================================== */

/* Breadcrumb Section */
.breadcrumb-section {
  background: var(--gray-50);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--primary-blue-dark);
  text-decoration: underline;
}

.breadcrumb .separator {
  color: var(--gray-400);
}

.breadcrumb .current {
  color: var(--gray-600);
  font-weight: 500;
}

/* Product Detail Section */
.product-detail-page .main-content {
  background: var(--gray-50);
}

.product-detail-section {
  padding: 3rem 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* Product Images */
.product-images-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: var(--shadow-md);
}

.product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-thumbnail-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.thumbnail-wrapper {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--gray-50);
}

.thumbnail-wrapper:hover,
.thumbnail-wrapper.active {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(0, 132, 212, 0.1);
}

.product-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Info */
.product-info-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 0;
}

.product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 2px 10px rgba(0, 132, 212, 0.2);
}

.product-manufacturer,
.product-model,
.product-sku,
.product-stock {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.product-manufacturer .label,
.product-model .label,
.product-sku .label,
.product-stock .label {
  font-weight: 600;
  color: var(--gray-700);
  min-width: 140px;
}

.product-manufacturer .value,
.product-model .value,
.product-sku .value,
.product-stock .value {
  color: var(--gray-600);
}

.product-stock .value.in-stock {
  color: var(--success-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-stock .value.in-stock i {
  font-size: 1.125rem;
}

.product-stock .value.out-of-stock {
  color: #dc3545;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-stock .value.out-of-stock i {
  font-size: 1.125rem;
}

/* Warehouses */
.product-warehouses {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}

.product-warehouses h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.warehouse-list {
  display: grid;
  gap: 1rem;
}

.warehouse-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.warehouse-item:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 2px 10px rgba(0, 132, 212, 0.1);
}

.warehouse-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 132, 212, 0.3);
}

.warehouse-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0 0 0.25rem 0;
}

.warehouse-info .stock-qty {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warehouse-info .stock-qty.in-stock {
  color: var(--success-green);
  font-weight: 600;
}

.warehouse-info .stock-qty.in-stock i {
  font-size: 1rem;
  color: var(--success-green);
}

.warehouse-info .stock-qty.not-available {
  color: #dc3545;
  font-weight: 600;
}

.warehouse-info .stock-qty.not-available i {
  font-size: 1rem;
  color: #dc3545;
}

.warehouse-item.out-of-stock {
  opacity: 0.6;
  border-color: var(--gray-300);
}

.warehouse-item.out-of-stock .warehouse-icon {
  background: var(--gray-400);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.warehouse-item.out-of-stock:hover {
  border-color: var(--gray-400);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Description */
.product-description {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}

.product-description h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.product-description .description-content {
  color: var(--gray-700);
  line-height: 1.7;
}

.product-description .description-content p {
  margin-bottom: 1rem;
}

.product-description .description-content p:last-child {
  margin-bottom: 0;
}

/* Product Actions */
.product-actions {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--gray-200);
}

.btn-contact-us {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 132, 212, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-contact-us:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 132, 212, 0.4);
  background: linear-gradient(135deg, #042f4d 0%, #0084d4 100%);
}

.btn-contact-us i {
  font-size: 1.25rem;
}

/* Product Link Styling */
.product-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.product-link:hover {
  text-decoration: none;
}

/* Responsive Design */
@media (min-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1.2fr;
    padding: 3rem;
  }

  .product-name {
    font-size: 2.5rem;
  }

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

  .product-thumbnail-images {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
}

@media (min-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }

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

/* ========================================
   CATALOG PAGE STYLES
   ======================================== */

/* Catalog Banner */
.catalog-banner-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  padding: 4rem 0 3rem;
  color: white;
  text-align: center;
}

.catalog-banner-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.catalog-banner-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.catalog-banner-section .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.catalog-banner-section .breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.catalog-banner-section .breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.catalog-banner-section .breadcrumb .separator {
  opacity: 0.6;
}

.catalog-banner-section .breadcrumb .current {
  font-weight: 600;
}

/* Promo Banner */
.promo-banner-section {
  padding: 2rem 0;
}

.promo-banner {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

/* Search and Filter Section */
.search-filter-section {
  padding: 2rem 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.search-filter-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.search-bar {
  width: 100%;
}

.search-input-container {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  gap: 1rem;
}

.search-icon {
  color: var(--gray-400);
  font-size: 1.25rem;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  /* padding: 0.75rem 0; */
  color: var(--gray-900);
}

.search-input::placeholder {
  color: var(--gray-400);
}

.search-btn {
  padding: 0.75rem 2rem;
  white-space: nowrap;
  border-radius: 0.5rem;
}

/* Filter Controls */
.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}

.filter-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-item label {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-item label i {
  color: var(--primary-blue);
}

.filter-select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  background: white;
  color: var(--gray-900);
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:hover {
  border-color: var(--primary-blue);
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 132, 212, 0.1);
}

.clear-filters-btn {
  padding: 0.75rem 1.5rem;
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.clear-filters-btn:hover {
  background: var(--gray-300);
  transform: translateY(-1px);
}

/* Products Section */
.products-section {
  padding: 3rem 0;
  min-height: 60vh;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}

.results-header h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
}

.results-info {
  font-size: 1rem;
  color: var(--gray-600);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Loading Indicator */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 0;
  gap: 1rem;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  position: relative;
}

.loading-spinner .spinner {
  width: 100%;
  height: 100%;
  border: 4px solid var(--gray-200);
  border-top-color: var(--primary-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-container p {
  color: var(--gray-600);
  font-size: 1rem;
}

/* End of Results */
.end-of-results {
  text-align: center;
  padding: 3rem 0;
  color: var(--gray-600);
}

.end-of-results i {
  font-size: 3rem;
  color: var(--success-green);
  margin-bottom: 1rem;
  display: block;
}

.end-of-results p {
  font-size: 1.1rem;
  font-weight: 600;
}

/* No Results Card */
.no-results-card {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--gray-50);
  border-radius: 1rem;
  border: 2px dashed var(--gray-300);
}

.no-results-icon {
  font-size: 4rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.no-results-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.no-results-card p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--accent-orange), #e74c3c);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
  z-index: 2;
}

.product-badge.badge-new {
  background: linear-gradient(135deg, var(--primary-green), #27ae60);
  box-shadow: 0 2px 10px rgba(46, 204, 113, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .catalog-banner-section h1 {
    font-size: 2rem;
  }

  .catalog-banner-section p {
    font-size: 1rem;
  }

  .search-input-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .search-btn {
    width: 100%;
  }

  .filter-controls {
    flex-direction: column;
  }

  .filter-item {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
  }
}

/* ========================================
   CATALOG PAGE HEADER
   ======================================== */

/* Page Header Section */
.page-header-section {
  background: linear-gradient(135deg, rgba(4, 47, 77, 0.95) 0%, rgba(0, 132, 212, 0.95) 100%),
              url('/front/images/medical-bg.jpg') center/cover;
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 132, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

.page-header-section .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header-section .breadcrumb a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-header-section .breadcrumb a:hover {
  opacity: 1;
}

.page-header-section .breadcrumb .separator {
  opacity: 0.6;
  font-weight: 300;
}

.page-header-section .breadcrumb .current {
  font-weight: 600;
  opacity: 1;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive Page Header */
@media (max-width: 768px) {
  .page-header-section {
    padding: 3rem 0 2rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .page-header-section .breadcrumb {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }
}

@media (min-width: 1200px) {
  .page-title {
    font-size: 4rem;
  }

  .page-subtitle {
    font-size: 1.35rem;
  }
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-info-section {
  padding: 3rem 0;
  background: var(--gray-50);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-info-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.contact-info-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.contact-info-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
  padding: 4rem 0;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-header {
  margin-bottom: 2rem;
}

.contact-form-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.contact-form-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

/* Form Styles */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--primary-blue);
  margin-right: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-300);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 132, 212, 0.1);
}

.form-control::placeholder {
  color: var(--gray-400);
}

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

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.btn-submit {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.form-note {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin: 0;
}

.form-message {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Contact Illustration */
.contact-illustration {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.illustration-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.illustration-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.illustration-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.illustration-card p {
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.6;
}

/* ========================================
   CAREER PAGE STYLES
   ======================================== */

.why-join-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Open Positions Section */
.open-positions-section {
  padding: 4rem 0;
}

.positions-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.job-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.job-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary-blue);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.job-title-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.job-meta i {
  color: var(--primary-blue);
}

.job-badge {
  background: linear-gradient(135deg, var(--accent-orange), #e74c3c);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.job-description {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.job-requirements {
  margin-bottom: 2rem;
}

.job-requirements h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.job-requirements ul {
  list-style: none;
  padding: 0;
}

.job-requirements li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.job-requirements li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.job-posted {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* Career CTA Section */
.career-cta-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  color: white;
  padding: 4rem;
  border-radius: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 132, 212, 0.3);
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 2rem;
  max-width: 600px;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-white:hover {
  background: white;
  color: var(--primary-blue);
}

.cta-illustration i {
  font-size: 8rem;
  opacity: 0.2;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
  }

  .cta-illustration {
    display: none;
  }

  .job-header {
    flex-direction: column;
    gap: 1rem;
  }

  .job-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .form-actions {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }

  .btn-submit {
    width: 100%;
  }
}

/* ========================================
   SERVICES PAGE STYLES
   ======================================== */

.services-overview-section {
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-detail-card {
  /* background: white; */
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary-blue);
}

.service-icon-large {
  width: 90px;
  height: 90px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 132, 212, 0.3);
}

.service-detail-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: center;
}

.service-description {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features-list li {
  padding: 0.75rem 0;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-features-list li i {
  color: var(--success-green);
  font-size: 1.125rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Service Process Section */
.service-process-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 37px;
  top: 80px;
  width: 2px;
  height: calc(100% + 3rem);
  background: linear-gradient(180deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  opacity: 0.3;
}

.step-number-large {
  width: 75px;
  height: 75px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(0, 132, 212, 0.3);
  z-index: 2;
  position: relative;
}

.step-content-large {
  flex: 1;
  padding-top: 1rem;
}

.step-content-large h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.step-content-large p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Why Choose Section */
.why-choose-section {
  padding: 4rem 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-choose-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.why-choose-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.why-choose-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.why-choose-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Services CTA Section */
.services-cta-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.services-cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.services-cta-section .cta-buttons .btn {
  flex: 0 1 auto;
}

/* Responsive Services Page */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .process-step::after {
    left: 50%;
    transform: translateX(-50%);
    top: 90px;
  }

  .step-content-large {
    padding-top: 0;
  }

  .services-cta-section .cta-buttons {
    flex-direction: column;
  }

  .services-cta-section .cta-buttons .btn {
    width: 100%;
  }
}

/* ========================================
   LOCATION PAGE STYLES
   ======================================== */

.map-section-detailed {
  padding: 4rem 0;
  background: var(--gray-50);
}

.map-container-large {
  height: 600px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
}

#location-map {
  height: 100%;
  width: 100%;
}

/* Warehouse Popup Styles */
.warehouse-popup {
  padding: 0.5rem 0;
}

.warehouse-popup h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.warehouse-popup p {
  margin: 0.25rem 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}

.warehouse-popup .btn {
  margin-top: 0.75rem;
}

/* Warehouses List Section */
.warehouses-list-section {
  padding: 4rem 0;
}

.warehouses-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
}

.warehouse-detail-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.warehouse-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-left-color: var(--primary-blue);
}

.warehouse-detail-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--gray-100);
}

.warehouse-detail-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 132, 212, 0.3);
}

.warehouse-detail-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 0.5rem 0;
}

.warehouse-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-blue-light);
  color: var(--primary-blue-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.warehouse-detail-content {
  margin-bottom: 2rem;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.detail-item i {
  color: var(--primary-blue);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.detail-text p {
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.detail-text a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}

.detail-text a:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.warehouse-detail-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-get-directions {
  flex: 1;
  min-width: 150px;
}

.btn-view-on-map {
  flex: 1;
  min-width: 150px;
}

.btn-sm {
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

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

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* Coverage Section */
.coverage-section {
  padding: 4rem 0;
  background: var(--gray-50);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.coverage-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.coverage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.coverage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.coverage-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--gray-900);
}

.coverage-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Location CTA Section */
.location-cta-section {
  padding: 4rem 0;
}

/* Responsive Location Page */
@media (max-width: 968px) {
  .warehouses-detail-grid {
    grid-template-columns: 1fr;
  }

  .warehouse-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .warehouse-detail-actions {
    flex-direction: column;
  }

  .btn-get-directions,
  .btn-view-on-map {
    width: 100%;
  }

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

@media (max-width: 768px) {
  .map-container-large {
    height: 400px;
  }
}

/* ================================================
   FOOTER PAGES STYLES
   ================================================ */

/* Hero Section Simple (for footer pages) */
.hero-section-simple {
  background: var(--gradient-primary);
  padding: 6rem 0 4rem;
  color: white;
  text-align: center;
}

.hero-content-center {
  max-width: 800px;
  margin: 0 auto;
}

.hero-section-simple h1 {
  color: white;
  margin-bottom: 1rem;
  font-size: 3rem;
}

.hero-section-simple p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

/* FAQ Page Styles */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.faq-item h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: var(--gray-600);
  line-height: 1.8;
}

/* Legal Pages (Terms, Privacy) Styles */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  color: var(--primary-blue);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.legal-content ul li {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Help Center Styles */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.help-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.help-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.help-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.help-card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.help-card ul {
  list-style: none;
  padding: 0;
}

.help-card ul li {
  color: var(--gray-600);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.help-card ul li:last-child {
  border-bottom: none;
}

.help-cta {
  text-align: center;
  padding: 3rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.help-cta h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.help-cta p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

/* Partnership Page Styles */
.partnership-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.partnership-intro h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.partnership-intro p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
}

.partnership-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.benefit-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.75rem;
}

.benefit-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

.current-partners {
  text-align: center;
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
}

.current-partners h2 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo-item {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.partner-logo-item:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}

.partner-logo-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.partnership-cta {
  text-align: center;
  padding: 3rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  color: white;
}

.partnership-cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.partnership-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Responsive Styles for Footer Pages */
@media (max-width: 768px) {
  .hero-section-simple h1 {
    font-size: 2rem;
  }

  .hero-section-simple p {
    font-size: 1rem;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .help-grid,
  .partnership-benefits {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .hero-section-simple {
    padding: 4rem 0 3rem;
  }

  .legal-content {
    padding: 1.5rem 1rem;
  }

  .faq-item,
  .help-card,
  .benefit-card {
    padding: 1.5rem;
  }

  .partner-logos {
    grid-template-columns: 1fr;
  }
}

/* ================================================
   ADDITIONAL FOOTER PAGES STYLES
   ================================================ */

/* Getting Started Page Styles */
.getting-started-container {
  max-width: 1200px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.step-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: all 0.3s ease;
}

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

.step-number-badge {
  position: absolute;
  top: -15px;
  left: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.step-card .step-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 1.5rem;
  color: var(--primary-blue);
  font-size: 1.75rem;
}

.step-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.step-card p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.step-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.step-checklist li {
  color: var(--gray-600);
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-checklist li i {
  color: var(--success-green);
  font-size: 1.1rem;
}

.resources-section {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  text-align: center;
}

.resources-section h2 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.resource-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.resource-card i {
  font-size: 2.5rem;
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.resource-card h3 {
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.resource-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Cookie Policy Styles */
.cookie-controls {
  background: var(--gray-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.cookie-controls h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.cookie-toggle-group {
  margin-bottom: 2rem;
}

.cookie-toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
}

.cookie-info strong {
  display: block;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.cookie-info p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.toggle-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toggle-switch input[type="checkbox"] {
  appearance: none;
  width: 50px;
  height: 26px;
  background: var(--gray-300);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked {
  background: var(--primary-blue);
}

.toggle-switch input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.toggle-switch input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.toggle-switch input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.toggle-switch label {
  color: var(--gray-600);
  font-size: 0.9rem;
  cursor: pointer;
}

/* Trust Center Styles */
.trust-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.trust-intro h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.trust-intro p {
  color: var(--gray-600);
  font-size: 1.1rem;
  line-height: 1.8;
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.trust-pillar-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.trust-pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.pillar-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 2rem;
}

.trust-pillar-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.trust-pillar-card > p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pillar-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.pillar-features li {
  color: var(--gray-600);
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.6;
}

.pillar-features li i {
  color: var(--success-green);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.certifications-section {
  text-align: center;
  padding: 3rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.certifications-section h2 {
  color: var(--primary-blue);
  margin-bottom: 2rem;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.certification-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary-blue);
  font-size: 1.5rem;
}

.certification-card h4 {
  color: var(--gray-800);
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.certification-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.transparency-section {
  text-align: center;
  margin: 3rem 0;
}

.transparency-section h2 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.transparency-section p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.transparency-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.transparency-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: white;
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-md);
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.transparency-link:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.transparency-link i {
  font-size: 1.25rem;
}

.trust-contact-section {
  background: var(--gradient-primary);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
  margin-top: 3rem;
}

.trust-contact-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.trust-contact-section > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.contact-option {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.contact-option i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.contact-option h4 {
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-option p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Styles for New Pages */
@media (max-width: 768px) {
  .steps-grid,
  .trust-pillars {
    grid-template-columns: 1fr;
  }

  .resources-grid,
  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .transparency-links {
    flex-direction: column;
  }

  .transparency-link {
    width: 100%;
  }

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

  .cookie-toggle-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .step-card,
  .trust-pillar-card {
    padding: 2rem 1.5rem;
  }

  /* WhatsApp Buy Now Button Responsive */
  .btn-whatsapp-order {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .btn-whatsapp-order i {
    font-size: 1.1rem;
  }
}

/* ========================================
   WhatsApp Buy Now Button Styles
   ======================================== */

.product-meta {
  margin-top: 0.75rem;
}

.btn-whatsapp-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  border: none;
  cursor: pointer;
}

.btn-whatsapp-order:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn-whatsapp-order:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-order i {
  font-size: 1.1rem;
}

.btn-whatsapp-order span {
  font-weight: 600;
  letter-spacing: 0.3px;
}
