:root {
  --purple-dark: #6B4C93;
  --purple-medium: #8B6FA8;
  --purple-light: #B8A4D1;
  --pink-dark: #D67BA8;
  --pink-medium: #E8A5C4;
  --pink-light: #F5D0E1;
  --pink-very-light: #FDF2F8;
  --gradient-purple: linear-gradient(180deg, #F5D0E1 0%, #E8A5C4 100%);
  --gradient-purple-dark: linear-gradient(180deg, #8B6FA8 0%, #6B4C93 100%);
  --gradient-pink: linear-gradient(180deg, #FDF2F8 0%, #F5D0E1 50%, #E8A5C4 100%);
  --text-dark: #2D2D2D;
  --text-light: #666666;
  --white: #FFFFFF;
  --shadow-soft: 0 10px 40px rgba(107, 76, 147, 0.1);
  --shadow-medium: 0 15px 50px rgba(107, 76, 147, 0.15);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .title-elegant, .logo-text {
  font-family: 'Playfair Display', serif;
}

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(107, 76, 147, 0.05);
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--purple-medium);
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--purple-dark);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: var(--purple-dark);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

  .hamburger.active .hamburger-line {
    background-color: var(--purple-dark);
  }

  .hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hamburger:focus {
    outline: 2px solid var(--purple-medium);
    outline-offset: 2px;
  }

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-medium);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--purple-medium);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  background: var(--gradient-purple-dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 8% 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/flow1.png') no-repeat left center;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
  color: var(--white);
  max-width: 600px;
  margin-left: auto;
}

.hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.hero-title-small {
  font-size: 2.5rem;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  opacity: 0.95;
}

.hero-title-large {
  font-size: 5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-flower-decoration {
  position: absolute;
  left: 5%;
  top: 20%;
  width: 300px;
  height: 400px;
  background: url('images/flow2.png') no-repeat center;
  background-size: contain;
  opacity: 0.2;
  z-index: 1;
}

/* Buttons */
.btn {
  padding: 16px 40px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s;
  display: inline-block;
  font-size: 1rem;
}

.btn-hero {
  background-color: var(--white);
  color: var(--purple-dark);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background-color: var(--pink-very-light);
}

/* Perfect Gift Section */
.perfect-gift {
  padding: 120px 0;
  background: var(--gradient-pink);
}

.perfect-gift-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.perfect-gift-text {
  padding-right: 40px;
}

.section-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

.title-bold {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
}

.title-elegant {
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  font-family: 'Playfair Display', serif;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.perfect-gift-image .image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}

.perfect-gift-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.perfect-gift-image:hover img {
  transform: scale(1.05);
}

/* Freshly Picked Section */
.freshly-picked {
  padding: 120px 0;
  background: var(--gradient-pink);
}

.freshly-picked-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.freshly-picked-image .image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.freshly-picked-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}

.freshly-picked-image:hover img {
  transform: scale(1.05);
}

.section-title-large {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.section-title-large span {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  line-height: 1.3;
}

.section-title-large .title-elegant {
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.services-list {
  list-style: none;
  padding-left: 0;
}

.services-list li {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.8;
}

.services-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple-medium);
  font-weight: bold;
  font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials {
  padding: 120px 0;
  background: var(--gradient-purple);
  position: relative;
  overflow: hidden;
}

.testimonials-bg-deco {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  top: -200px;
  right: -150px;
  pointer-events: none;
  animation: testimonial-float 8s ease-in-out infinite;
}

.testimonials-bg-deco::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,164,209,0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: testimonial-float 10s ease-in-out infinite reverse;
}

@keyframes testimonial-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 15px) scale(1.05); }
}

.testimonials-title {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.testimonials-title .title-bold {
  font-size: 2.8rem;
}

.testimonials-title .title-elegant {
  font-size: 2.4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--white);
  padding: 45px 40px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(107, 76, 147, 0.12);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s, border-color 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.testimonial-card[data-delay="0"].is-visible { animation: testimonial-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.testimonial-card[data-delay="1"].is-visible { animation: testimonial-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards; }
.testimonial-card[data-delay="2"].is-visible { animation: testimonial-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards; }

@keyframes testimonial-pop {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-light), var(--pink-medium));
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 70px rgba(107, 76, 147, 0.2);
  border-color: var(--purple-light);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-card--featured {
  background: linear-gradient(145deg, #ffffff 0%, #FDF2F8 100%);
  border-color: rgba(184, 164, 209, 0.4);
  box-shadow: 0 25px 60px rgba(107, 76, 147, 0.18);
}

.testimonial-card--featured::before {
  opacity: 1;
  height: 5px;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--purple-light);
  line-height: 1;
  opacity: 0.7;
}

.testimonial-stars {
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #E8B923;
  margin-bottom: 12px;
  margin-top: 8px;
}

.testimonial-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 15px;
  font-family: 'Inter', sans-serif;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  font-style: italic;
}

/* Google Rating Section */
.google-rating {
  min-height: 500px;
  background: url('images/wnetrze.png') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-rating::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 76, 147, 0.3);
}

.rating-overlay {
  position: relative;
  z-index: 2;
  background: rgba(232, 165, 196, 0.9);
  backdrop-filter: blur(10px);
  padding: 60px 80px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.rating-content {
  color: var(--white);
}

.stars {
  font-size: 3rem;
  letter-spacing: 5px;
  margin-bottom: 20px;
  color: var(--white);
}

.rating-title {
  font-size: 2.2rem;
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  color: var(--white);
}

.rating-google-link {
  display: inline-block;
  margin-bottom: 12px;
  line-height: 0;
}

.rating-google-icon {
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.google-maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  text-decoration: none;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.google-maps-link:hover {
  opacity: 0.9;
}

.google-maps-link .maps-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}

.google-maps-link .maps-icon svg {
  width: 100%;
  height: 100%;
}

.maps-icon {
  font-size: 1.2rem;
}

/* Quality Proof Section */
.quality-proof {
  padding: 120px 0;
  background: var(--white);
}

.quality-title {
  text-align: left;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.quality-title .title-bold {
  font-size: 3rem;
}

.quality-title .title-elegant {
  font-size: 2.6rem;
}

.quality-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 60px;
  max-width: 600px;
}

.quality-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 30px;
  height: 600px;
}

.quality-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: transform 0.3s;
}

.quality-image:hover {
  transform: scale(1.02);
}

.quality-image.large {
  grid-row: 1 / 3;
}

.quality-image.medium {
  grid-column: 2;
}

.quality-image.small {
  grid-column: 2;
  grid-row: 2;
}

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

/* History Section */
.history {
  min-height: 600px;
  background: url('images/flow2.png') center/cover;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.history::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(107, 76, 147, 0.4);
  backdrop-filter: blur(2px);
}

.history-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
}

.history-content {
  background: rgba(232, 165, 196, 0.95);
  backdrop-filter: blur(10px);
  padding: 60px 80px;
  border-radius: 30px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.history-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-family: 'Playfair Display', serif;
}

.history-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.9;
}

.history-text p {
  margin-bottom: 20px;
}

.history-text p:last-child {
  margin-bottom: 0;
}

/* Offer Section */
.offer {
  padding: 120px 0;
  background: var(--gradient-pink);
}

.offer-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 80px;
  font-family: 'Playfair Display', serif;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

a.offer-card {
  text-decoration: none;
  color: inherit;
}

.offer-card {
  background: var(--white);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  border: 2px solid transparent;
  display: block;
}

.offer-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--purple-light);
}

.offer-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

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

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

.offer-content {
  padding: 35px;
  text-align: center;
}

.offer-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple-dark);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.offer-card-description {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--gradient-purple-dark);
  position: relative;
  padding: 80px 8% 40px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.footer-image {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 400px;
  height: 500px;
  opacity: 0.4;
  z-index: 1;
}

.footer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-info {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-info p {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0.95;
}

.footer-brand-name {
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title-large {
    font-size: 4rem;
  }

  .perfect-gift-content,
  .freshly-picked-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .perfect-gift-text,
  .freshly-picked-text {
    padding-right: 0;
    text-align: center;
  }

  .perfect-gift-image,
  .freshly-picked-image {
    margin-top: 30px;
  }

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

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

  .quality-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .quality-image.large,
  .quality-image.medium,
  .quality-image.small {
    grid-column: 1;
    grid-row: auto;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    position: relative;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    gap: 0;
    box-shadow: -5px 0 20px rgba(107, 76, 147, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(107, 76, 147, 0.1);
  }

  .nav-links a {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
    width: 100%;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover {
    color: var(--purple-medium);
    padding-left: 10px;
  }

  /* Overlay when menu is open */
  .navbar::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
    pointer-events: none;
  }

  .navbar.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .hero {
    min-height: 70vh;
    padding: 80px 5% 60px;
  }

  .hero-title-small {
    font-size: 1.8rem;
  }

  .hero-title-large {
    font-size: 3rem;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-flower-decoration {
    display: none;
  }

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

  .title-elegant {
    font-size: 1.8rem;
  }

  .section-title-large span {
    font-size: 1.8rem;
  }

  .testimonials-title .title-bold {
    font-size: 2.2rem;
  }

  .testimonials-title .title-elegant {
    font-size: 1.9rem;
  }

  .rating-overlay {
    padding: 40px 25px;
    margin: 0 15px;
    border-radius: 20px;
  }

  .rating-title {
    font-size: 1.8rem;
  }

  .stars {
    font-size: 2rem;
  }

  .history-content {
    padding: 40px 25px;
    margin: 0 15px;
    border-radius: 20px;
  }

  .history-title {
    font-size: 2.2rem;
  }

  .footer-brand-name {
    font-size: 3rem;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
  }

  .footer-image {
    width: 200px;
    height: 300px;
    right: 0;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .container {
    padding: 0 4%;
  }

  .quality-gallery {
    gap: 20px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-title {
    margin-bottom: 50px;
  }

  .offer {
    padding: 80px 0;
  }

  .offer-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 15px 4%;
  }

  .logo-main {
    font-size: 0.8rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 60vh;
    padding: 70px 4% 50px;
  }

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

  .hero-title-small {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .btn {
    padding: 14px 30px;
    font-size: 0.9rem;
  }

  .title-bold {
    font-size: 1.6rem;
  }

  .title-elegant {
    font-size: 1.4rem;
  }

  .section-title-large span {
    font-size: 1.5rem;
  }

  .section-title-large .title-elegant {
    font-size: 1.3rem;
  }

  .perfect-gift,
  .freshly-picked {
    padding: 60px 0;
  }

  .testimonials {
    padding: 60px 0;
  }

  .testimonials-title .title-bold {
    font-size: 1.8rem;
  }

  .testimonials-title .title-elegant {
    font-size: 1.6rem;
  }

  .testimonial-card {
    padding: 30px 25px;
  }

  .rating-overlay {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .rating-title {
    font-size: 1.5rem;
  }

  .stars {
    font-size: 1.8rem;
  }

  .quality-proof {
    padding: 60px 0;
  }

  .quality-title .title-bold {
    font-size: 2rem;
  }

  .quality-title .title-elegant {
    font-size: 1.8rem;
  }

  .quality-description {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .history {
    padding: 60px 0;
  }

  .history-content {
    padding: 30px 20px;
    margin: 0 10px;
  }

  .history-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .history-text {
    font-size: 1rem;
  }

  .offer {
    padding: 60px 0;
  }

  .offer-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .offer-card-title {
    font-size: 1.3rem;
  }

  .footer {
    padding: 60px 4% 30px;
    min-height: 400px;
  }

  .footer-brand-name {
    font-size: 2.5rem;
  }

  .footer-info {
    gap: 15px;
  }

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

  .footer-image {
    width: 150px;
    height: 250px;
  }

  .container {
    padding: 0 3%;
  }

  .nav-links {
    width: 85%;
    padding: 90px 25px 25px;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

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

.offer-card,
.quality-image {
  animation: fadeInUp 0.6s ease-out;
}
