/* Updated color scheme to light yellowish and goldish theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

:root {
  --primary-color: #d4af37;
  --secondary-color: #f4e4a6;
  --accent-color: #fff8dc;
  --background-light: #fffef7;
  --background-white: #ffffff;
  --text-primary: #8b6914;
  --text-secondary: #b8860b;
  --text-muted: #daa520;
  --border-color: #f0e68c;
  --shadow-light: 0 1px 3px rgba(218, 165, 32, 0.1);
  --shadow-medium: 0 4px 6px rgba(218, 165, 32, 0.1);
  --shadow-large: 0 10px 15px rgba(218, 165, 32, 0.1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-white);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Enhanced Loading overlay animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--background-white), var(--background-light));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1s cubic-bezier(0.4, 0.0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0.0, 0.2, 1);
  overflow: hidden;
}

.loading-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Animated particles background */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--primary-color), transparent);
  border-radius: 50%;
  animation: floatParticles 6s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.particle:nth-child(2) {
  left: 20%;
  top: 80%;
  animation-delay: -2s;
  animation-duration: 6s;
}

.particle:nth-child(3) {
  left: 80%;
  top: 10%;
  animation-delay: -1s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  left: 90%;
  top: 70%;
  animation-delay: -3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 30%;
  top: 30%;
  animation-delay: -0.5s;
  animation-duration: 5s;
}

.particle:nth-child(6) {
  left: 70%;
  top: 60%;
  animation-delay: -4s;
  animation-duration: 8s;
}

.particle:nth-child(7) {
  left: 50%;
  top: 5%;
  animation-delay: -1.5s;
  animation-duration: 6s;
}

.particle:nth-child(8) {
  left: 15%;
  top: 50%;
  animation-delay: -2.5s;
  animation-duration: 7s;
}

/* Enhanced loading content */
.loading-content {
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  animation: contentReveal 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards;
  position: relative;
  z-index: 10;
}

/* Enhanced logo container with multiple animation layers */
.loading-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(-50px);
  animation: logoContainerReveal 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s forwards;
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Glowing background effect */
.logo-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.1) 50%, transparent 70%);
  border-radius: 50%;
  animation: pulseGlow 3s ease-in-out infinite;
}

/* Rotating ring around logo */
.logo-ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 3px solid transparent;
  border-top: 3px solid var(--primary-color);
  border-right: 3px solid var(--secondary-color);
  border-radius: 50%;
  animation: rotateRing 4s linear infinite;
}

.loading-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--background-white);
  padding: 8px;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
  animation: logoFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
  border: 2px solid var(--border-color);
}

/* Enhanced title container */
.title-container {
  position: relative;
  overflow: hidden;
}

.loading-title {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--primary-color), var(--text-secondary), var(--primary-color));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: shimmerText 3s ease-in-out infinite;
  opacity: 0;
  transform: translateX(-100px);
  animation: titleSlideIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s forwards,
             shimmerText 3s ease-in-out 2.5s infinite;
}

.loading-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(30px);
  animation: subtitleReveal 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2s forwards;
  position: relative;
}

.loading-subtitle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-color));
  animation: lineExpand 1s ease-out 2.5s forwards;
}

.loading-subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  animation: lineExpand 1s ease-out 2.5s forwards;
}

/* Progress bar container */
.loading-progress-container {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: progressReveal 0.8s ease-out 2.8s forwards;
}

.loading-progress-bar {
  width: 280px;
  height: 4px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  margin: 0 auto 16px;
  overflow: hidden;
  position: relative;
}

.loading-progress-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

.loading-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--text-secondary));
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.loading-percentage {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* Decorative elements */
.loading-decorative-left,
.loading-decorative-right {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.loading-decorative-left {
  top: 20%;
  left: -100px;
  animation: decorativeFloat 8s ease-in-out infinite;
}

.loading-decorative-right {
  bottom: 20%;
  right: -100px;
  animation: decorativeFloat 8s ease-in-out infinite reverse;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--background-light);
  padding: 4px;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.brand-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 15px;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  background: var(--background-white);
  border-top: 1px solid var(--border-color);
  padding: 24px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 400;
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--background-white);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-greeting {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 48px;
  max-width: 900px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-button {
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-button.primary {
  background: var(--primary-color);
  color: white;
}

.cta-button.primary:hover {
  background: var(--text-secondary);
  transform: translateY(-1px);
}

.cta-button.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.cta-button.secondary:hover {
  background: var(--background-light);
}

/* Updated About Section with real bakery image */
.about-section {
  padding: 120px 0;
  background: var(--background-light);
  overflow: hidden;
}

.section-header {
  margin-bottom: 80px;
  text-align: center;
}

.section-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--text-secondary));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.about-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--text-secondary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.about-number:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.about-info {
  flex: 1;
}

.about-info h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-info p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Bakery Image Container */
.bakery-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}

.bakery-main-image {
  width: 100%;
  max-width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.bakery-main-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.3);
}

/* Hygiene section */
.hygiene-section {
  padding: 120px 0;
  background: var(--background-white);
}

.hygiene-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hygiene-card {
  background: var(--background-light);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.hygiene-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
  background: var(--background-white);
}

.hygiene-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hygiene-icon img {
  width: 40px;
  height: 40px;
}

.hygiene-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.hygiene-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 15px;
}

/* History Section */
.history-section {
  padding: 120px 0;
  background: var(--background-light);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-content {
  width: 45%;
  padding: 24px;
  background: var(--background-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-light);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.timeline-content img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Products Section */
.products-section {
  padding: 120px 0;
  background: var(--background-white);
}

/* Product Category Navigation */
.product-categories-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 60px 0 40px;
}

.category-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--background-light);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.category-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--text-secondary));
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

.category-icon {
  font-size: 20px;
}

.category-text {
  font-weight: 600;
}

/* Product Category Containers */
.product-category {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.product-category.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.category-header {
  text-align: center;
  margin-bottom: 48px;
}

.category-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.category-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--background-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.product-image {
  height: 240px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.product-info p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature {
  padding: 4px 12px;
  background: var(--background-white);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
}

/* Updated Contact Form section with side-by-side layout */
.contact-section {
  padding: 120px 0;
  background: var(--background-white);
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-form-card {
  background: var(--background-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contact-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--text-secondary));
}

.contact-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.12);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: border-color 0.2s ease;
  background: var(--background-white);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.send-inquiry-btn {
  padding: 14px 32px;
  background: #4a5568;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  min-width: 140px;
  text-align: center;
}

.send-inquiry-btn:hover {
  background: #2d3748;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 85, 104, 0.3);
}

.contact-card {
  background: var(--background-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--text-secondary));
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

.contact-card h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.4;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
  font-size: 16px;
}

.contact-details {
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.contact-detail {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.contact-detail:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}

.contact-detail strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card .cta-button {
  width: 100%;
  margin-top: auto;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary-color), var(--text-secondary));
  border: none;
  position: relative;
  overflow: hidden;
}

.contact-card .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
  background: var(--background-light);
  color: var(--text-primary);
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  background: var(--background-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--text-primary);
  background: var(--accent-color);
  transform: translateY(-1px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--text-primary);
}

/* Simplified Footer Partners Section */
.footer-partners {
  margin: 60px 0 40px;
  padding: 50px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), var(--accent-color));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.footer-partners::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 60 60"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>') repeat;
  pointer-events: none;
}

.partners-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.partners-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partners-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--text-secondary));
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.partners-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

/* New simplified partners logos layout */
.partners-logos-simple {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.partner-circle-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
  border: 3px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.partner-circle-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  transition: left 0.5s ease;
}

.partner-circle-logo:hover::before {
  left: 100%;
}

.partner-circle-logo:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.25);
  border-color: var(--primary-color);
}

.circle-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(30%) opacity(0.8);
  transition: all 0.3s ease;
}

.partner-circle-logo:hover .circle-logo-img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu.active {
    display: block;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hygiene-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-year {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: calc(100% - 100px);
    margin-left: 100px !important;
    margin-right: 0 !important;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  /* Loading responsive adjustments */
  .loading-logo-container {
    flex-direction: column;
    gap: 16px;
  }

  .loading-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .loading-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .loading-progress-bar {
    width: 240px;
  }

  /* Partners section mobile adjustments */
  .partners-logos-simple {
    flex-direction: column;
    gap: 30px;
  }

  .partner-circle-logo {
    width: 100px;
    height: 100px;
  }

  /* Product categories responsive */
  .product-categories-nav {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .category-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .hygiene-grid {
    grid-template-columns: 1fr;
  }

  /* Loading mobile adjustments */
  .logo-glow {
    width: 120px;
    height: 120px;
  }

  .logo-ring {
    width: 100px;
    height: 100px;
  }

  .loading-logo {
    width: 80px;
    height: 80px;
  }

  .loading-progress-bar {
    width: 200px;
  }

  /* Partners section small mobile */
  .partner-circle-logo {
    width: 80px;
    height: 80px;
  }

  .footer-partners {
    padding: 30px 0;
  }

  .partners-header h3 {
    font-size: 24px;
  }

  /* Product categories small mobile */
  .category-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .category-icon {
    font-size: 16px;
  }
}

/* Scroll animations */
.scroll-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Animation keyframes */
@keyframes contentReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoContainerReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes subtitleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes progressReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatParticles {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) rotate(270deg);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

@keyframes shimmerText {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes lineExpand {
  from {
    width: 0;
  }
  to {
    width: 30px;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes decorativeFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
  }
  66% {
    transform: translateY(15px) rotate(240deg);
  }
}
