/* Flexarina - Modern Design System */
:root {
  --primary-color: #4A5CFF;
  --primary-dark: #3A4CE6;
  --primary-light: #6B7AFF;
  --secondary-color: #8B5CF6;
  --accent-color: #FF6B6B;
  --text-dark: #1A1A2E;
  --text-medium: #4A5568;
  --text-light: #718096;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, #4A5CFF 0%, #8B5CF6 100%);
  --gradient-hero: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Header */
.main-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

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

.logo-img {
  height: 70px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

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

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

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

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-primary);
}

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

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text-block {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: white;
  color: var(--primary-color);
  box-shadow: var(--shadow-lg);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
  animation: fadeInRight 0.8s ease-out;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

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

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.icon-number {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.feature-text {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Foods Section */
.foods-section {
  padding: 6rem 0;
  background: white;
}

.foods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.food-item {
  text-align: center;
}

.food-image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}

.food-image-wrapper:hover {
  transform: scale(1.05);
}

.food-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.food-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

.food-description {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Stats Section */
.stats-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.stats-image-block {
  position: relative;
}

.stats-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.stats-content-block {
  padding: 2rem 0;
}

.stats-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.stats-intro {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.stat-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Info Blocks Section */
.info-blocks-section {
  padding: 6rem 0;
  background: white;
}

.info-blocks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.info-block {
  padding: 4rem 3rem;
  border-radius: 20px;
  color: white;
  background: var(--gradient-primary);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.95;
  z-index: 0;
}

.info-block.image-block::before {
  opacity: 0.85;
}

.info-block-title,
.info-block-text {
  position: relative;
  z-index: 1;
}

.info-block-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.info-block-text {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Product Section */
.product-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.product-text-block {
  padding: 2rem 0;
}

.product-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4;
}

.product-description {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.product-image-small {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.product-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-block {
  text-align: center;
}

.product-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.product-note {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
  text-align: left;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: white;
}

.faq-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.accordion-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s;
}

.accordion-item.active {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.3s;
}

.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-question {
  flex: 1;
  padding-right: 1rem;
}

.accordion-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.accordion-content p {
  color: var(--text-medium);
  line-height: 1.7;
  padding-top: 1rem;
}

/* CTA Banner Section */
.cta-banner-section {
  padding: 6rem 0;
  background: var(--gradient-hero);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/22893.jpg') center/cover;
  opacity: 0.2;
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.cta-banner-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-banner-text {
  font-size: 1.125rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info-block {
  padding: 2rem 0;
}

.contact-image-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-image-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

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

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

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

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

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  display: none;
}

.success-message {
  background: #D4EDDA;
  color: #155724;
  border: 1px solid #C3E6CB;
}

.error-message {
  background: #F8D7DA;
  color: #721C24;
  border: 1px solid #F5C6CB;
}

/* Footer */
.main-footer {
  background: #1A1A2E;
  color: #E2E8F0;
  padding: 4rem 0 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-legal {
  margin-bottom: 3rem;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-legal-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #CBD5E0;
  margin-bottom: 1.5rem;
}

.footer-disclaimer {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #A0AEC0;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.footer-references {
  margin-top: 1.5rem;
}

.footer-references a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-references a:hover {
  color: white;
  text-decoration: underline;
}

.footer-nav {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  justify-content: center;
}

.footer-nav-link {
  color: #CBD5E0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-nav-link:hover {
  color: white;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #A0AEC0;
  font-size: 0.9rem;
}

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    height: 400px;
  }

  .stats-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .product-layout {
    grid-template-columns: 1fr;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

  .nav-list {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 999;
  }

  .main-nav.nav-open .nav-list {
    transform: translateX(0);
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

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

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

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

  .stats-title {
    font-size: 2rem;
  }

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

  .footer-nav-list {
    flex-direction: column;
    align-items: center;
  }
}

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

  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features-section,
  .foods-section,
  .stats-section,
  .info-blocks-section,
  .product-section,
  .faq-section,
  .contact-section {
    padding: 4rem 0;
  }

  .info-block {
    padding: 2.5rem 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

}
}