/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-teal: #00bcd4;
  --primary-pink: #ff6b9d;
  --primary-yellow: #ffc107;
  --primary-orange: #ff9800;
  --dark-brown: #3e2723;
  --medium-brown: #5d4037;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --shadow: rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--dark-text);
  min-width: 320px;
  letter-spacing: 0.015em;
}

/* Typography */
h1, h2, h3, h4, h5, h6,
.logo,
.hero-title,
.section-title,
.section-subtitle,
.product-title,
.value-title,
.footer-title {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-tagline,
.hero-quote {
  font-family: 'Josefin Sans', sans-serif;
}

/* Skip link for keyboard accessibility */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 8px 16px;
  background: var(--dark-brown);
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

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

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, var(--primary-teal), var(--primary-pink), var(--primary-yellow)) 1;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
  position: relative;
}

.logo {
  text-decoration: none;
  z-index: 1001;
  cursor: pointer;
  transition: opacity 0.3s;
  position: relative;
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.logo:hover {
  opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  position: relative;
}

.hamburger i {
  font-size: 1.5rem;
  color: var(--dark-brown);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger .fa-times {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.hamburger .fa-bars {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.hamburger.active .fa-bars {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.hamburger.active .fa-times {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.mobile-lang {
  display: none;
}

.desktop-lang {
  display: flex;
}

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

.nav-link {
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
  line-height: 1;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary-teal), var(--primary-pink));
  transition: width 0.3s;
}

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

.nav-link.active {
  color: var(--primary-teal);
  font-weight: 600;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: relative;
}

.lang-selector {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-teal);
  background: var(--white);
  color: var(--dark-text);
  cursor: pointer;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.lang-selector:hover {
  background: var(--light-bg);
}

.lang-selector .fa-chevron-down {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.lang-selector[aria-expanded="true"] .fa-chevron-down {
  transform: rotate(180deg);
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--white);
  border: 2px solid var(--primary-teal);
  border-radius: 10px;
  padding: 0.5rem 0;
  min-width: 160px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

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

.lang-option {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.lang-option:hover {
  background: var(--light-bg);
}

.lang-option.active {
  background: var(--primary-teal);
  color: var(--white);
  font-weight: 600;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--primary-teal);
  background: transparent;
  color: var(--dark-text);
  cursor: pointer;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 0.9rem;
  line-height: 1;
}

.lang-btn.active {
  background: var(--primary-teal);
  color: var(--white);
  border-color: transparent;
}

.lang-btn:hover:not(.active) {
  background: var(--light-bg);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(135deg, rgba(62, 39, 35, 0.75), rgba(93, 64, 55, 0.75)), 
                    url('https://images.unsplash.com/photo-1509440159596-0249088772ff?w=1600&h=900&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
  max-width: 300px;
  width: 100%;
  height: auto;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 500;
  text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--primary-teal);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  animation: fadeInUp 1s ease-out 0.4s both;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: var(--primary-pink);
}

/* Hero Manifesto Styling */
.hero-manifesto {
  max-width: 800px;
  margin: 0 auto;
  color: var(--white);
}

.hero-tagline {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-quote {
  font-size: 1.4rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.6;
  color: var(--primary-yellow);
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-teal), var(--primary-pink), var(--primary-yellow));
  border-radius: 2px;
}

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

.about-text p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-emphasis {
  font-weight: 700;
  font-style: italic;
  color: var(--dark-text);
  font-size: 1.2rem;
  margin-top: 2rem;
}

.about-tagline {
  font-weight: 700;
  color: var(--primary-teal);
  font-size: 1.15rem;
  margin-top: 1.5rem;
  letter-spacing: 0.5px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow);
  border: 3px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--primary-teal), var(--primary-pink), var(--primary-yellow)) border-box;
}

/* Mission & Vision Section */
.mission-vision {
  padding: 6rem 0;
  background: var(--dark-brown);
  color: var(--white);
}

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

.mission-box,
.vision-box {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 2px solid rgba(0, 188, 212, 0.3);
  transition: transform 0.3s, border-color 0.3s;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal);
}

.section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--primary-yellow);
  font-weight: 700;
}

.mission-vision p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.emphasis-text {
  font-weight: 600;
  color: var(--primary-teal);
  font-style: italic;
}

/* Values Section */
.values {
  padding: 6rem 0;
  background: var(--white);
}

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

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow);
  border-top: 4px solid var(--primary-teal);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary-pink);
}

.value-icon {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
}

.value-card:hover .value-icon {
  color: var(--primary-pink);
}

.value-title {
  font-size: 1.3rem;
  color: var(--dark-text);
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-description {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.6;
}

/* Manifesto Section */
.manifesto {
  padding: 6rem 0;
  background: var(--dark-brown);
  color: var(--white);
  text-align: center;
}

.manifesto .section-title {
  color: var(--white);
}

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

.manifesto-line {
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.manifesto-spacer {
  height: 2rem;
}

.manifesto-emphasis {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--primary-yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: var(--light-bg);
}

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

.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid transparent;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(to right, var(--primary-teal), var(--primary-pink), var(--primary-yellow), var(--primary-orange));
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px var(--shadow);
}

.product-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.product-content {
  padding: 2rem;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-text);
}

.product-description {
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.tag {
  padding: 0.4rem 1rem;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tag:last-child {
  background: var(--primary-pink);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-content p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.3rem;
}

.contact-item i {
  color: var(--primary-teal);
  font-size: 1.5rem;
}

.contact-link {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-link:hover {
  color: var(--primary-teal);
}

/* Location Cards */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  max-width: 700px;
}

.location-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow);
}

.location-title {
  color: var(--dark-brown);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.location-title i {
  color: var(--primary-teal);
  font-size: 1.3rem;
}

.location-address {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.location-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--primary-teal);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  margin-top: auto;
}

.location-link:hover {
  background: var(--primary-pink);
  transform: scale(1.05);
}

.location-link i {
  font-size: 1.1rem;
}

.visit-text {
  max-width: 700px;
  margin: 2rem auto 0;
  font-size: 1.1rem;
  color: var(--light-text);
  line-height: 1.8;
  font-style: italic;
}

/* Disable phone link on desktop (keep functional on mobile) */
@media (min-width: 968px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: text;
    color: var(--dark-text);
  }
  
  a[href^="tel:"]:hover {
    color: var(--dark-text);
  }
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  border-top: 6px solid transparent;
  border-image: linear-gradient(to right, var(--primary-teal), var(--primary-pink), var(--primary-yellow), var(--primary-orange)) 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}

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

.footer-title {
  font-size: 1.1rem;
  font-weight: bold;
  
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--primary-yellow);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-teal);
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contacts i {
  color: var(--primary-teal);
  width: 20px;
}

.footer-contacts a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contacts a:hover {
  color: var(--primary-teal);
}

.footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-address-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-address-link:hover {
  color: var(--primary-teal);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: var(--primary-pink);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.5rem;
  transition: transform 0.3s, background 0.3s;
}

.social-link:hover {
  transform: translateY(-3px);
  background: var(--primary-teal);
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
  .hamburger {
    display: flex;
  }

  .desktop-lang {
    display: none;
  }

  .mobile-lang {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid rgba(0, 188, 212, 0.2);
    position: relative;
  }

  .mobile-lang .lang-dropdown {
    right: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .mobile-lang .lang-dropdown.active {
    transform: translateX(-50%) translateY(0);
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 80%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 15px var(--shadow);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .nav-link::after {
    bottom: 0;
  }

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

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

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

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

  .about,
  .products,
  .contact,
  .mission-vision,
  .values,
  .manifesto {
    padding: 4rem 0;
  }

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

  .hero-tagline {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-quote {
    font-size: 1.2rem;
  }

  .manifesto-line {
    font-size: 1.5rem;
  }

  .manifesto-emphasis {
    font-size: 1.8rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 4rem 0;
  }

  .about,
  .products,
  .contact,
  .mission-vision,
  .values,
  .manifesto {
    padding: 3rem 0;
  }

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

  .hero-tagline {
    font-size: 1.15rem;
  }

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

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

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

  .section-subtitle {
    font-size: 1.5rem;
  }

  .manifesto-line {
    font-size: 1.3rem;
  }

  .manifesto-emphasis {
    font-size: 1.6rem;
  }

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

  .nav {
    width: 280px;
  }

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

  .about-text p,
  .contact-content p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .contact-item {
    font-size: 1.1rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
  }

  .location-card {
    padding: 1.5rem;
  }

  .location-title {
    font-size: 1.3rem;
  }

  .location-address {
    font-size: 0.95rem;
  }

  .location-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .visit-text {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

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

  .footer-logo {
    height: 50px;
    margin: 0 auto 0.5rem;
  }

  .footer-contacts p {
    justify-content: center;
  }

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

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

  .about,
  .products,
  .contact,
  .mission-vision,
  .values,
  .manifesto {
    padding: 2.5rem 0;
  }

  .mission-box,
  .vision-box {
    padding: 1.5rem;
  }

  .value-card {
    padding: 2rem 1.5rem;
  }

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

  .manifesto-line {
    font-size: 1.1rem;
  }

  .manifesto-emphasis {
    font-size: 1.4rem;
  }

  .logo img {
    height: 40px;
  }

  .footer-logo {
    height: 45px;
  }

  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .container {
    padding: 0 15px;
  }

  .product-content {
    padding: 1.5rem;
  }

  .contact-item {
    font-size: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}
