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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.navbar {
  background: rgb(108 108 108 / 60%);
  color: white;
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #14496f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.company-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.8;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 60, 114, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a:last-child {
  border-bottom: none;
  border-radius: 0 0 10px 10px;
}

.dropdown-menu a:first-child {
  border-radius: 10px 10px 0 0;
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  padding-left: 1.5rem;
  opacity: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.language-toggle button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-toggle button:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 30px;
  height: 30px;
  justify-content: space-between;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  color: white;

  text-align: center;
  min-height: 90vh;
}

.hero-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Slider */
.slider-container {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 95vh;
}

.slider {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.product-image {
  max-width: 600px;
  max-height: 500px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

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

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 2rem;
  text-align: center;
}

.slide-content h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.slide-content p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  z-index: 10;
  pointer-events: none;
}

.slider-nav button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 15px 18px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.slider-nav button:active {
  transform: scale(0.95);
}

/* Slider Dots */
.slider-dots {
  text-align: center;
  padding: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background-color: white;
}

/* Brand Logos Overlay */
.brand-logos-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
}

.brand-logos-container {
  background: #15496f;
  border-radius: 30px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(1);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  /* filter: grayscale(0%) brightness(1) invert(0); */
  transform: scale(1.1);
  cursor: pointer;
}

/* Six Brands Section */
.six-brands-section {
  padding: 80px 0;
  background: white;
}

.six-brands-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #2a5298;
}

.six-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.brand-item {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.brand-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.brand-item:hover::before {
  transform: scaleX(1);
}

.brand-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.brand-logo-container {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  gap: 15px;
}

.roche-logo {
  max-height: 50px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.brand-suffix {
  color: #2a5298;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.six-brand-logo {
  max-height: 60px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.brand-item:hover .roche-logo,
.brand-item:hover .six-brand-logo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.brand-item h3 {
  color: #2a5298;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.brand-item p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  margin: 0;
}

/* Company Info Section */
.company-info-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.company-info-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.company-info-content {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.company-logo-section {
  flex: 0 0 auto;
  text-align: center;
  padding: 2rem;
}

.company-info-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.company-logo-section h3 {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  text-transform: uppercase;
}

.company-logo-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 1px;
}

.company-description {
  flex: 1;
  padding-left: 2rem;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.company-description p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  opacity: 0.95;
  font-weight: 300;
}

/* Brand Products Showcase Section */
.brand-products-section {
  padding: 100px 0;
  background: #f8f9fa;
  position: relative;
}

.brand-products-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2a5298;
}

/* Brand Selector Tabs */
.brand-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
  padding: 0 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.brand-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #666;
  position: relative;
  overflow: hidden;
}

.brand-tab::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  transition: left 0.3s ease;
  z-index: 0;
}

.brand-tab.active::before,
.brand-tab:hover::before {
  left: 0;
}

.brand-tab.active,
.brand-tab:hover {
  color: white;
  border-color: #2a5298;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42, 82, 152, 0.3);
}

.brand-tab span,
.tab-logo {
  position: relative;
  z-index: 1;
}

.tab-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-tab.active .tab-logo,
.brand-tab:hover .tab-logo {
  filter: grayscale(0%) brightness(0) invert(1);
}

/* Products Container */
.products-container {
  position: relative;
  min-height: 600px;
}

.products-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

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

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.product-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(42, 82, 152, 0.2);
}

.product-image {
  height: 180px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.product-info h3 {
  color: #2a5298;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
}

.product-info p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Page-specific body classes */
.page-home .hero {
  display: block;
}

.page-about .hero,
.page-brands .hero,
.page-contact .hero {
  display: none;
}

/* Main content area */
#main-content {
  min-height: calc(100vh - 140px);
}

/* Error page styles */
.error-page {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
  max-width: 600px;
}

.error-page h2 {
  color: #2a5298;
  margin-bottom: 1rem;
}

.error-page button {
  background: #2a5298;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.3s ease;
}

.error-page button:hover {
  background: #1e3c72;
}

/* Active navigation link */
.nav-links a.active {
  opacity: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
  padding-bottom: 2px;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background: white;
}

.about-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2a5298;
}

.about-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #666;
}

.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

.vision,
.mission {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision h3,
.mission h3 {
  color: #2a5298;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.mission li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.mission li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2a5298;
  font-weight: bold;
}

/* Brands Section */
.brands-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.brands-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2a5298;
}

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

.brand-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.brand-card img {
  width: 100%;
  max-width: 200px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.brand-card h3 {
  color: #2a5298;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.brand-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Brand Details Section */
.brand-details {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #eee;
}

.brand-detail-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-detail-section h3 {
  color: #2a5298;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.product-item {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: #2a5298;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-item:hover {
  border-color: #2a5298;
  transform: translateY(-2px);
}

.brand-products {
  margin-top: 1.5rem;
}

.brand-products h4 {
  color: #2a5298;
  margin-bottom: 1rem;
}

.brand-products ul {
  list-style: none;
  padding: 0;
}

.brand-products li {
  padding: 0.5rem 0;
  color: #666;
  position: relative;
  padding-left: 1.5rem;
}

.brand-products li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2a5298;
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background: white;
}

/* Enhanced Contact Styles */
.contact-details {
  margin: 2rem 0;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.contact-item i {
  margin-right: 0.5rem;
  color: #2a5298;
  width: 20px;
}

.contact-item a {
  color: #2a5298;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.office-hours {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.office-hours h4 {
  color: #2a5298;
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.hours-item:last-child {
  border-bottom: none;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2a5298;
  font-weight: 500;
}

.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  background: white;
}

.submit-btn {
  width: 100%;
  background: #2a5298;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #1e3c72;
}

.map-section {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.map-section h3 {
  color: #2a5298;
  margin-bottom: 1.5rem;
}

.map-placeholder {
  height: 300px;
  background: #f8f9fa;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  border: 1px solid #ddd;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2a5298;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.contact-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.contact-info h3 {
  color: #2a5298;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  color: #666;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
}

.contact-form h3 {
  color: #2a5298;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  background: #2a5298;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1e3c72;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  color: #333;
  padding: 4rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: #2a5298;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #2a5298;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-about {
  max-width: 350px;
}

.footer-company-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  /* filter: brightness(0) saturate(100%) invert(25%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(104%) contrast(97%); */
}

.footer-about p {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #666;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2a5298;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #1e3c72;
  transform: translateY(-2px);
}

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

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

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-section ul li a:before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #2a5298;
  font-size: 0.7rem;
}

.footer-section ul li a:hover {
  color: #2a5298;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  color: #2a5298;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-item strong {
  color: #2a5298;
  display: block;
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: #666;
  margin: 0;
  line-height: 1.4;
}

.footer-bottom {
  border-top: 1px solid rgba(42, 82, 152, 0.2);
  padding-top: 2rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-size: 0.9rem;
}

/* About Page Styles */
.about-section {
  padding: 0;
  min-height: 100vh;
}

.about-hero {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(rgba(42, 27, 124, 0.7), rgba(79, 70, 181, 0.7), rgba(255, 107, 138, 0.7)), url("assets/imgs/pages/about.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  padding: 8rem 0 6rem;
  color: white;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.about-hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo {
  max-width: 250px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.wave-image {
  width: 100%;
  height: auto;
  display: block;
}

.company-story {
  padding: 2rem 0 6rem;
  background: white;
}

.story-content h2 {
  font-size: 2.5rem;
  color: #2a5298;
  text-align: center;
  margin-bottom: 3rem;
}

.story-text {
  max-width: 900px;
  margin: 0 auto;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 2rem;
  text-align: justify;
}

.vision-mission-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
}

.vision-mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 25% 25%, rgba(79, 70, 181, 0.3) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(255, 107, 138, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vision-card::before,
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(79, 70, 181, 0.1) 0%, rgba(255, 107, 138, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(79, 70, 181, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(79, 70, 181, 0.2);
}

.vision-card:hover::before,
.mission-card:hover::before {
  opacity: 1;
}

.card-icon-modern {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 2rem;
}

.icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #4f46b5 0%, #ff6b8a 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(79, 70, 181, 0.4);
}

.icon-bg i {
  font-size: 2rem;
  color: white;
}

.tech-pattern {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(79, 70, 181, 0.3);
  border-radius: 15px;
  background: rgba(79, 70, 181, 0.1);
  z-index: 1;
}

.tech-pattern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 1px solid rgba(79, 70, 181, 0.5);
  border-radius: 8px;
}

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

.vision-card h3,
.mission-card h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.vision-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.mission-list {
  list-style: none;
  padding: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.check-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #4f46b5 0%, #ff6b8a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  margin-top: 0.2rem;
}

.check-icon i {
  color: white;
  font-size: 0.8rem;
}

.values-section {
  padding: 6rem 0;
  background: white;
}

.values-section h2 {
  font-size: 2.5rem;
  color: #2a5298;
  text-align: center;
  margin-bottom: 4rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-item h4 {
  font-size: 1.3rem;
  color: #2a5298;
  margin-bottom: 1rem;
}

.value-item p {
  color: #666;
  line-height: 1.6;
}

.team-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  color: white;
}

.team-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.why-metabio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.why-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
}

.why-number {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 1rem;
}

.why-item h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.why-item p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .hero-overlay {
    padding: 6rem 0 4rem;
  }

  .hero-content-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .about-hero-content h1 {
    font-size: 3rem;
  }

  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .card-icon-modern {
    width: 100px;
    height: 100px;
  }

  .icon-bg {
    width: 70px;
    height: 70px;
  }

  .tech-pattern {
    width: 50px;
    height: 50px;
  }

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

  .why-metabio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 50vh;
  }

  .hero-overlay {
    padding: 4rem 0 3rem;
  }

  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }

  .story-content h2,
  .values-section h2,
  .team-section h2 {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .vision-card,
  .mission-card {
    padding: 2rem;
  }

  .vision-mission-section {
    padding: 6rem 0;
  }

  .card-icon-modern {
    width: 90px;
    height: 90px;
  }

  .icon-bg {
    width: 60px;
    height: 60px;
  }

  .icon-bg i {
    font-size: 1.5rem;
  }

  .tech-pattern {
    width: 40px;
    height: 40px;
    top: 5px;
    right: 5px;
  }

  .why-item {
    padding: 2rem;
  }

  .company-story,
  .vision-mission-section,
  .values-section,
  .team-section {
    padding: 4rem 0;
  }
}

/* Contact Page Styles */
.contact-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border-radius: 15px;
}

/* Brands Page Styles */
.brands-intro {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.main-brands {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.brand-logo-large {
  height: 60px;
  width: auto;
  margin-bottom: 0.5rem;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Active Navigation States */
.nav-links a.active {
  color: #c5c5c5 !important;
  font-weight: 600;
}

/* Page Body Classes */
.page-about .navbar,
.page-brands .navbar,
.page-contact .navbar {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: relative;
}

/* Brands Page Responsive */
@media (max-width: 1024px) {
  .main-brands {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .main-brands {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brands-intro,
  .contact-intro {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}

/* Brand Page Styles */
.brand-hero {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
  color: white;
  padding: 8rem 0 10rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.brand-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(30, 64, 175, 0.3) 0%, transparent 50%);
  z-index: 1;
}

.brand-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.brand-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-separator {
  color: #fbbf24;
  font-weight: 900;
  margin: 0 0.5rem;
  font-size: 1.1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.brand-description {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.4;
}

.brand-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

.brand-logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.brand-hero-logo {
  height: 80px;
  width: auto;
}

.brand-logo-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
}

/* Brand Overview Section */
.brand-overview {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fff 0%, #fff 100%);
}

.overview-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.overview-content h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.brand-logo-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 2rem;
}

.brand-overview-logo {
  max-height: 160px;
  max-width: 500px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
  transition: all 0.3s ease;
}

.brand-overview-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.15));
}

.brand-logo-section .brand-suffix {
  color: #1e40af;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.overview-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.learn-more-btn {
  background: linear-gradient(135deg, #14496f 0%, #1a5c8a 50%, #2073a8 100%);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(20, 73, 111, 0.3);
  text-decoration: none;
  display: inline-block;
}

.learn-more-btn:hover {
  background: linear-gradient(135deg, #0f3b59 0%, #14496f 50%, #1a5c8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(20, 73, 111, 0.4);
}

/* Modern Products Section */
.brand-products-modern {
  padding: 8rem 0;
  background: white;
}

.products-header {
  text-align: center;
  margin-bottom: 5rem;
}

.products-header h2 {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.products-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  font-weight: 400;
}

.products-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.product-card-modern {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
}

.product-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #3b82f6;
}

.product-image-container {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.product-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.product-category {
  background: rgba(59, 130, 246, 0.9);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-content {
  padding: 2rem;
}

.product-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.product-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 1.5rem;
}

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

.feature-tag {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #475569;
  padding: 0.4rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.product-action {
  padding: 0 2rem 2rem;
}

.product-btn {
  width: 100%;
  background: linear-gradient(135deg, #14496f 0%, #1a5c8a 50%, #2073a8 100%);
  color: white;
  border: none;
  padding: 1rem;
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(20, 73, 111, 0.3);
}

.product-btn:hover {
  background: linear-gradient(135deg, #0f3b59 0%, #14496f 50%, #1a5c8a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 73, 111, 0.4);
}

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

.product-btn:hover i {
  transform: translateX(4px);
}

.brand-products {
  padding: 6rem 0;
  background: white;
}

.brand-products h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2a5298;
  margin-bottom: 4rem;
}

/* Page Body Classes */
.page-brand .navbar {
  background: rgb(108 108 108 / 0%);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.page-brand .navbar.scrolled {
  background: #14496f;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Brand-specific backgrounds */
.page-eppendorf .brand-hero {
  background: linear-gradient(135deg, #0135ac 0%, #3b82f6 50%, #0135ac 100%);
}

.page-cytiva .brand-hero {
  background: linear-gradient(135deg, #0e2517 0%, #38a882 50%, #38a882 100%);
}

.page-horizon .brand-hero {
  /* background: linear-gradient(135deg, #000000 0%, #0061ff 50%, #050505 100%); */
  /* background: linear-gradient(135deg, #330000 0%, #8b0000 50%, #4b002b 100%); */
  background: linear-gradient(135deg, #2c0000 0%, #660000 45%, #8b0000 70%, #4b001a 100% );
}

.page-roche .brand-hero {
  background: linear-gradient(135deg, #0c41cd 0%, #0c41cd 50%, #60a5fa 100%);
}

/* Brand Page Responsive */
@media (max-width: 768px) {
  .brand-hero {
    padding: 6rem 0 3rem;
    min-height: 50vh;
  }

  .brand-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .brand-description {
    font-size: 1.2rem;
  }

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

  .brand-logo-section {
    flex-direction: column;
    gap: 1rem;
  }

  .brand-logo-section h1 {
    font-size: 2.5rem;
  }

  .brand-hero-logo {
    height: 60px;
  }

  .brand-products {
    padding: 4rem 0;
  }

  .brand-products h2 {
    font-size: 2rem;
  }

  /* Modern Products Responsive */
  .brand-overview {
    padding: 4rem 0;
  }

  .overview-content h2 {
    font-size: 2.5rem;
  }

  .brand-logo-section {
    flex-direction: column;
    gap: 10px;
  }

  .brand-overview-logo {
    max-height: 100px;
    max-width: 350px;
  }

  .brand-logo-section .brand-suffix {
    font-size: 1.4rem;
  }

  .overview-description {
    font-size: 1.1rem;
  }

  .brand-products-modern {
    padding: 5rem 0;
  }

  .products-header h2 {
    font-size: 2.5rem;
  }

  .products-subtitle {
    font-size: 1.1rem;
  }

  .products-grid-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-card-modern {
    margin-bottom: 1rem;
  }

  .product-image-container {
    height: 200px;
  }

  .product-content {
    padding: 1.5rem;
  }

  .product-content h3 {
    font-size: 1.3rem;
  }

  .product-description {
    font-size: 0.95rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(30, 60, 114, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .language-toggle button {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
  }

  .slider-container {
    height: 70vh;
  }

  .product-image {
    max-width: 300px;
    max-height: 250px;
  }

  .slider-nav {
    padding: 0 15px;
  }

  .slider-nav button {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .slide-content {
    padding: 1.5rem;
  }

  .slide-content h3 {
    font-size: 1.5rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .brand-logos-container {
    padding: 20px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .brand-logo {
    height: 35px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .vision-mission {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .brands-section {
    padding: 60px 0;
  }

  .brands-section h2 {
    font-size: 2rem;
  }

  .contact-section {
    padding: 60px 0;
  }

  .contact-section h2 {
    font-size: 2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .company-logo {
    height: 40px;
  }

  .six-brands-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
  }

  .brand-item {
    padding: 2rem;
  }

  .brand-logo-container {
    height: 80px;
  }

  .roche-logo {
    max-height: 40px;
    max-width: 100px;
  }

  .brand-suffix {
    font-size: 1rem;
  }

  .six-brand-logo {
    max-height: 50px;
    max-width: 150px;
  }

  .brand-item h3 {
    font-size: 1.2rem;
  }

  .brand-item p {
    font-size: 0.9rem;
  }

  .brand-products-section {
    padding: 80px 0;
  }

  .brand-products-section h2 {
    font-size: 2rem;
  }

  .brand-selector {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 3rem;
  }

  .brand-tab {
    padding: 0.8rem 1.2rem;
    gap: 0.6rem;
  }

  .brand-tab span {
    font-size: 0.9rem;
  }

  .tab-logo {
    height: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .product-image {
    height: 150px;
  }

  .product-info h3 {
    font-size: 1.1rem;
  }

  .product-info p {
    font-size: 0.9rem;
  }

  .company-info-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .company-logo-section {
    padding: 1rem;
  }

  .company-info-logo {
    height: 60px;
  }

  .company-logo-section h2 {
    font-size: 2rem;
  }

  .company-description {
    padding-left: 0;
    border-left: none;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    padding-top: 2rem;
  }

  .company-description p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 15px;
  }

  .slider-container {
    height: 60vh;
  }

  .product-image {
    max-width: 250px;
    max-height: 200px;
  }

  .brand-logos-container {
    padding: 15px;
    gap: 10px;
  }

  .brand-logo {
    height: 30px;
  }

  .slide-content h3 {
    font-size: 1.2rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .slider-nav {
    padding: 0 10px;
  }

  .slider-nav button {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .six-brands-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .brand-item {
    padding: 1.5rem;
  }

  .brand-logo-container {
    height: 70px;
  }

  .roche-logo {
    max-height: 35px;
    max-width: 80px;
  }

  .brand-suffix {
    font-size: 0.9rem;
  }

  .six-brand-logo {
    max-height: 40px;
    max-width: 120px;
  }

  .brand-item h3 {
    font-size: 1.1rem;
  }

  .brand-item p {
    font-size: 0.85rem;
  }

  .brand-products-section {
    padding: 60px 0;
  }

  .brand-products-section h2 {
    font-size: 1.8rem;
  }

  .brand-selector {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .brand-tab {
    padding: 0.7rem 1rem;
    gap: 0.5rem;
  }

  .brand-tab span {
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .tab-logo {
    height: 18px;
  }

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

  .product-card {
    padding: 1.2rem;
  }

  .product-image {
    height: 120px;
  }

  .product-info h3 {
    font-size: 1rem;
  }

  .product-info p {
    font-size: 0.85rem;
  }

  .company-info-section {
    padding: 60px 0;
  }

  .company-info-logo {
    height: 50px;
  }

  .company-logo-section h3 {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  .company-logo-section h2 {
    font-size: 1.8rem;
  }

  .company-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Footer Responsive */
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-about {
    grid-column: 1 / -1;
    max-width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Mobile Footer Responsive */
@media (max-width: 480px) {
  footer {
    padding: 3rem 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-about {
    grid-column: 1;
  }

  .footer-section h4 {
    font-size: 1.1rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* Product images inside sliders - make them 1.5x larger */
.slider .product-image {
  transform: scale(2.2);
}
