/* ========================= */
/* RESET & GLOBAL STYLES */
/* ========================= */

/* Genel reset – tüm elementlerde margin/padding sıfırlanır ve box modeli düzenlenir */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Sayfanın genel fontu ve arka plan renk ayarı */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #1f1f1f;
}

/* İçerikleri ortalamak ve max genişlik vermek için kullanılan container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ========================= */
/* HEADER */
/* ========================= */

/* Header (üst menü) genel stil */
.site-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
}

/* Header içindeki logo + navbar hizalama */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Logo boyut ayarı */
.logo img {
  height: 90px;
  width: auto;
  display: block;
}

/* Navbar ortalama */
.navbar {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Menü linklerinin listesi */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Menü linklerinin genel görünümü */
.nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: 0.3s ease;
}

/* Hover ve aktif link rengi */
.nav-links a:hover,
.nav-links a.active {
  color: #6FA000;
}

/* Sağ üstteki teklif butonu */
.quote-btn {
  text-decoration: none;
  background-color: #0d3f91;
  color: white;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Buton hover efekti */
.quote-btn:hover {
  background-color: #0a2f6d;
}

/* ========================= */
/* HERO */
/* ========================= */

/* Hero (ana banner) bölümü */
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("images/hero2.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Hero karartma overlay (yazı okunabilirliği için) */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Hero içeriği (başlık + açıklama) */
.hero-content {
  color: white;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

/* Hero başlık */
.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Hero açıklama */
.hero-content p {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.9;
}

/* Hero butonları container */
.hero-buttons {
  display: flex;
  gap: 15px;
}

/* Genel buton yapısı */
.btn {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Primary buton */
.btn.primary {
  background-color: #5FAF2C;
  color: white;
}

/* Primary hover */
.btn.primary:hover {
  background-color: #4A8F22;
}

/* Secondary buton */
.btn.secondary {
  border: 2px solid white;
  color: white;
}

/* Secondary hover */
.btn.secondary:hover {
  background-color: white;
  color: #0d3f91;
}

/* ========================= */
/* HERO MOBILE */
/* ========================= */

@media (max-width: 768px) {
  .hero {
    height: 72vh;
    background-position: 50% center;
  }

  .hero-content {
    max-width: 320px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }
}

/* ========================= */
/* WHY US SECTION */
/* ========================= */

/* Why us bölümü */
.why {
  padding: 80px 0;
  background-color: #ffffff;
  text-align: center;
}

/* Section başlık */
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* Why grid layout */
.why-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

/* Why kartları */
.why-item {
  flex: 1;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: 0.3s ease;
}

/* Hover efekti */
.why-item:hover {
  transform: translateY(-5px);
  border-color: #0d3f91;
}

/* Why başlık */
.why-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0d3f91;
}

/* Why açıklama */
.why-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ========================= */
/* PRODUCTS PREVIEW */
/* ========================= */

/* Ürünler preview bölümü */
.products-preview {
  padding: 90px 0;
  background-color: #f8f9fb;
}

/* Ürünler başlık alanı */
.products-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* Ürün açıklama yazısı */
.products-heading p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-top: 15px;
}

/* 
  Sadece anasayfadaki products preview grid'ini hedefliyoruz.
  Böylece products.html içindeki .products-grid ile çakışma azalır.
*/
.products-preview .products-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* 
  Kartları sabit ve dengeli genişlikte tutuyoruz.
  Böylece 3 kart ortada daha düzenli görünür.
*/
.products-preview .product-card {
  width: 100%;
  max-width: 320px;
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

/* Hover */
.products-preview .product-card:hover {
  transform: translateY(-6px);
}

/* Ürün görseli */
.products-preview .product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Kart içeriği */
.products-preview .product-card-content {
  padding: 25px;
  text-align: center;
}

/* Ürün başlık */
.products-preview .product-card-content h3 {
  font-size: 22px;
  color: #0d3f91;
  margin-bottom: 12px;
}

/* Ürün açıklama */
.products-preview .product-card-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* Ürün linki */
.products-preview .product-link {
  text-decoration: none;
  color: #5FAF2C;
  font-weight: 600;
  font-size: 15px;
}

/* Link hover */
.products-preview .product-link:hover {
  color: #0d3f91;
}

/* ========================= */
/* FOOTER */
/* ========================= */

/* Footer genel */
.site-footer {
  background-color: #3f3f3f;
  color: #ffffff;
  margin-top: 0;
}

/* Footer grid */
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding: 70px 0 40px;
}

/* Footer kolon */
.footer-col {
  flex: 1;
}

/* Footer logo */
.footer-brand img {
  height: 115px;
  width: auto;
  margin-bottom: 20px;
}

/* Footer yazıları */
.footer-brand p,
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  font-weight: 300;
  text-decoration: none;
}

/* Footer başlık */
.footer-col h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* Başlık alt çizgi */
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 2px;
  background-color: #5FAF2C;
}

/* Footer liste */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Liste item */
.footer-col ul li {
  margin-bottom: 10px;
}

/* Liste link */
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-left: 0;
  transition: all 0.3s ease;
}

/* Hover animasyonu */
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 16px;
}

/* Genel hover */
.footer-col a:hover {
  color: #5FAF2C;
}

/* Hover çizgi efekti */
.footer-col ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  background-color: #5FAF2C;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover::before {
  opacity: 1;
}

/* Footer alt kısmı */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  text-align: center;
}

/* Footer alt yazı */
.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ========================= */
/* LANGUAGE DROPDOWN */
/* ========================= */

/* LANGUAGE DROPDOWN - Navbar içindeki dil seçimi */
.language-menu {
  position: relative;
}

/* Açılır menü kutusu */
.language-dropdown {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 150px;
  padding: 8px 0;
  margin: 0;
  border: 1px solid #e5e5e5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: none;
  z-index: 1000;
  border-radius: 6px;
  overflow: hidden;
}

/* Her dil seçeneği */
.language-dropdown li {
  margin: 0;
}

/* Link stilleri */
.language-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
}

/* Hover efekti */
.language-dropdown li a:hover {
  background-color: #f5f5f5;
  color: #5FAF2C;
}

/* Mouse üstüne gelince dropdown aç */
.language-menu:hover .language-dropdown {
  display: block;
}

/* ========================= */
/* NEW ABOUT PAGE */
/* ========================= */

/* NEW ABOUT PAGE */
.about-intro {
  padding: 72px 0 36px;
  background: #ffffff;
}

/* INTRO CONTENT */
.about-intro-content {
  max-width: 760px;
}

/* MAIN TITLE */
.about-main-title {
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -1px;
  color: #1b1b1f;
  max-width: 820px;
  margin-bottom: 18px;
}

/* INTRO LEAD */
.about-intro-lead {
  font-size: 18px;
  line-height: 1.8;
  color: #5a5f68;
  max-width: 720px;
}

/* STORY SECTION */
.about-story-clean {
  padding: 36px 0 56px;
  background: #ffffff;
}

/* STORY GRID */
.about-story-clean-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

/* STORY TEXT */
.about-story-clean-text {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6f8 100%);
  border: 1px solid #e7ebf0;
  border-radius: 26px;
  padding: 38px 40px;
  box-shadow: 0 18px 45px rgba(11, 27, 52, 0.06);
}

/* STORY TITLE */
.about-story-title {
  font-size: 42px;
  line-height: 1.14;
  letter-spacing: -0.8px;
  color: #1d1f24;
  margin-bottom: 22px;
  max-width: 560px;
}

/* STORY LEAD */
.about-story-lead {
  font-size: 18px;
  line-height: 1.85;
  color: #1f2630;
  font-weight: 500;
  margin-bottom: 16px;
}

/* STORY BODY */
.about-story-body {
  font-size: 16px;
  line-height: 1.85;
  color: #5c6470;
  margin-bottom: 16px;
}

/* STORY NOTE */
.about-story-note {
  font-size: 16px;
  line-height: 1.85;
  color: #46505d;
  margin-top: 24px;
  padding-left: 18px;
  border-left: 3px solid #6fb12d;
}
.about-image img {
  border-radius: 20px;
}

/* STORY IMAGE */
.about-story-clean-image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10, 28, 56, 0.12);
}

/* STORY IMAGE TAG */
.about-story-clean-image img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

/* STORY IMAGE HOVER */
.about-story-clean-image:hover img {
  transform: scale(1.03);
}

/* HIGHLIGHTS SECTION */
.about-highlights-clean {
  padding: 12px 0 84px;
  background: #ffffff;
}

/* HIGHLIGHTS GRID */
.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* HIGHLIGHT CARD */
.about-highlight-card {
  background: #ffffff;
  border: 1px solid #e8edf2;
  border-radius: 22px;
  padding: 30px 26px;
  box-shadow: 0 14px 34px rgba(12, 26, 48, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* HIGHLIGHT CARD HOVER */
.about-highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(12, 26, 48, 0.09);
  border-color: #dce6d2;
}

/* HIGHLIGHT NUMBER */
.about-highlight-number {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #18479d;
  margin-bottom: 18px;
}

/* HIGHLIGHT TITLE */
.about-highlight-card h3 {
  font-size: 20px;
  line-height: 1.35;
  color: #1d1f24;
  margin-bottom: 10px;
}

/* HIGHLIGHT DESC */
.about-highlight-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #626b76;
}

/* SUSTAINABILITY SECTION */
.about-sustainability {
  padding: 0 0 92px;
  background: #ffffff;
}

/* SUSTAINABILITY BOX */
.about-sustainability-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  background: #f7f9fb;
  border: 1px solid #e7edf3;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(10, 28, 56, 0.07);
}

/* SUSTAINABILITY TEXT */
.about-sustainability-text {
  padding: 54px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* SUSTAINABILITY TITLE */
.about-sustainability-title {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.7px;
  color: #1b1e24;
  margin-bottom: 18px;
  max-width: 500px;
}

/* SUSTAINABILITY LEAD */
.about-sustainability-lead {
  font-size: 17px;
  line-height: 1.85;
  color: #2f3945;
  margin-bottom: 14px;
  font-weight: 500;
}

/* SUSTAINABILITY DESC */
.about-sustainability-desc {
  font-size: 16px;
  line-height: 1.85;
  color: #65707d;
  max-width: 520px;
}

/* SUSTAINABILITY IMAGE */
.about-sustainability-image {
  position: relative;
  min-height: 100%;
}

/* SUSTAINABILITY IMAGE TAG */
.about-sustainability-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* TIMELINE SECTION */
.timeline {
  padding: 98px 0 110px;
  background: linear-gradient(180deg, #f8f9fb 0%, #f4f7fa 100%);
  text-align: center;
  position: relative;
}

/* TIMELINE TITLE */
.timeline .section-title {
  margin-bottom: 0;
  color: #1d1f24;
}

/* TIMELINE ITEMS */
.timeline-items {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
  align-items: start;
}

/* TIMELINE LINE */
.timeline-line {
  position: absolute;
  top: 8px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(to right, #d8e0e8, #6fb12d);
}

/* TIMELINE ITEM */
.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 0;
}

/* TIMELINE DOT */
.timeline-dot {
  width: 18px;
  height: 18px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #6fb12d;
  box-shadow: 0 0 0 8px rgba(111, 177, 45, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

/* TIMELINE YEAR */
.timeline-item h3 {
  font-size: 20px;
  color: #18479d;
  margin-bottom: 10px;
}

/* TIMELINE TEXT */
.timeline-item p {
  max-width: 180px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.7;
  color: #5f6772;
}

/* TIMELINE HOVER */
.timeline-item:hover .timeline-dot {
  transform: scale(1.12);
  border-color: #18479d;
  box-shadow: 0 0 0 10px rgba(24, 71, 157, 0.10);
}

/* ABOUT MOBILE */
@media (max-width: 1100px) {
  .about-main-title {
    font-size: 46px;
  }

  .about-story-clean-grid,
  .about-sustainability-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-story-clean-image img {
    height: 520px;
  }

  .about-sustainability-image img {
    min-height: 360px;
  }

  .about-highlights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline-items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
  }
}

/* ABOUT TABLET */
@media (max-width: 768px) {
  .about-intro {
    padding: 56px 0 26px;
  }

  .about-main-title {
    font-size: 38px;
    line-height: 1.15;
  }

  .about-intro-lead,
  .about-story-lead {
    font-size: 17px;
  }

  .about-story-clean {
    padding: 24px 0 48px;
  }

  .about-story-clean-text {
    padding: 30px 24px;
    border-radius: 22px;
  }

  .about-story-title {
    font-size: 34px;
  }

  .about-story-body,
  .about-story-note,
  .about-sustainability-desc,
  .about-sustainability-lead {
    font-size: 15px;
  }

  .about-story-clean-image img {
    height: 420px;
    border-radius: 22px;
  }

  .about-highlights-clean {
    padding: 8px 0 64px;
  }

  .about-highlights-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-highlight-card {
    padding: 26px 22px;
  }

  .about-sustainability {
    padding: 0 0 72px;
  }

  .about-sustainability-text {
    padding: 34px 24px;
  }

  .about-sustainability-title {
    font-size: 32px;
  }

  .about-sustainability-image img {
    min-height: 300px;
  }

  .timeline {
    padding: 82px 0 88px;
  }

  .timeline-items {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item p {
    max-width: 100%;
  }
}

/* ABOUT SMALL MOBILE */
@media (max-width: 480px) {
  .about-main-title {
    font-size: 32px;
  }

  .about-story-title,
  .about-sustainability-title {
    font-size: 28px;
  }

  .about-story-clean-text,
  .about-sustainability-text {
    padding: 28px 20px;
  }

  .about-story-clean-image img {
    height: 320px;
  }

  .about-highlight-number {
    font-size: 26px;
  }
}




/* ========================= */
/* PRODUCTS PAGE */
/* ========================= */

.products-page {
  padding: 100px 0;
  text-align: center;
}

.product-filters {
  margin: 30px 0 50px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.product-filters button {
  background: none;
  border: none;
  font-weight: 600;
  color: #777;
  cursor: pointer;
}

.product-filters .active {
  color: #6fb12d;
  border-bottom: 2px solid #6fb12d;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-item img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product-item h3 {
  margin-top: 10px;
}

.product-item span {
  color: #6fb12d;
  font-size: 14px;
}


/* ========================= */
/* PRIVATE LABEL CTA */
/* ========================= */

.private-label-cta {
  margin-top: 100px;
  padding: 80px 0;
  background: #18479d;
  color: #fff;
  text-align: center;
}

.private-label-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #6fb12d;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
}


/* ========================= */
/* PRODUCTS PAGE MOBILE FIX */
/* ========================= */

@media (max-width: 768px) {

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

  .product-filters {
    flex-wrap: wrap;
    gap: 15px;
  }

  .private-label-cta h2 {
    font-size: 24px;
  }

}
/* ========================= */
/* PRODUCTS PAGE */
/* ========================= */

.products-page {
  padding: 100px 0 80px;
  background: #ffffff;
}

.products-page-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.products-page-header .section-eyebrow {
  margin-bottom: 14px;
}

.products-page-header .section-title {
  font-size: 46px;
  line-height: 1.15;
  color: #1d1d1f;
  margin-bottom: 16px;
}

.products-page-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #5b5b5b;
  max-width: 660px;
  margin: 0 auto;
}

/* FILTER BUTTONS */
.product-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.filter-btn {
  appearance: none;
  border: 1px solid #dfe5ec;
  background: #ffffff;
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover {
  border-color: #6fb12d;
  color: #18479d;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #18479d;
  border-color: #18479d;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(24, 71, 157, 0.18);
}

/* PRODUCT GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

/* PRODUCT CARD */
.product-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e7ebf0;
  border-radius: 22px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(to right, #6fb12d, #18479d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: #d8e3ef;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.09);
}

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

/* PRODUCT IMAGE AREA */
.product-card-image {
  width: 100%;
  height: 180px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}

.product-card-image img {
  width: 100;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

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

/* PRODUCT TEXT */
.product-card h3 {
  font-size: 20px;
  line-height: 1.3;
  color: #1d1d1f;
  margin-bottom: 8px;
}

.product-card-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #6fb12d;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  margin: 0;
}

/* PRIVATE LABEL CTA */
.private-label-cta {
  padding: 0 0 100px;
  background: #ffffff;
}

.private-label-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #18479d 0%, #0f3576 100%);
  border-radius: 28px;
  padding: 56px 36px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 24px 50px rgba(24, 71, 157, 0.22);
}

.private-label-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.private-label-box .section-eyebrow {
  color: #a6db75;
  margin-bottom: 14px;
}

.private-label-box h2 {
  font-size: 38px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #ffffff;
}

.private-label-box p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.cta-btn {
  display: inline-block;
  margin-top: 26px;
  background: #6fb12d;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(111, 177, 45, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: #629f28;
  box-shadow: 0 16px 32px rgba(111, 177, 45, 0.34);
}

/* ========================= */
/* PRODUCTS PAGE RESPONSIVE */
/* ========================= */

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-page-header .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .products-page {
    padding: 80px 0 60px;
  }

  .products-page-header {
    margin-bottom: 34px;
  }

  .products-page-header .section-title {
    font-size: 34px;
  }

  .products-page-desc {
    font-size: 16px;
  }

  .product-filters {
    gap: 10px;
    margin-bottom: 34px;
  }

  .filter-btn {
    padding: 11px 18px;
    font-size: 13px;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .product-card {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .product-card-image {
    height: 145px;
    border-radius: 14px;
    margin-bottom: 14px;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-card p {
    font-size: 13px;
  }

  .private-label-cta {
    padding: 0 0 80px;
  }

  .private-label-box {
    padding: 40px 22px;
    border-radius: 22px;
  }

  .private-label-box h2 {
    font-size: 28px;
  }

  .private-label-box p {
    font-size: 15px;
  }

  .cta-btn {
    padding: 13px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .products-page-header .section-title {
    font-size: 30px;
  }

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

  .product-card-image {
    height: 170px;
  }

  .private-label-box h2 {
    font-size: 24px;
  }
}

/* ========================= */
/* GALLERY PAGE */
/* ========================= */

.gallery-page {
  background: #f8f9fb;
}

/* ========================= */
/* GALLERY HERO */
/* ========================= */

.gallery-hero {
  padding: 72px 0 34px;
}

.gallery-hero-inner {
  max-width: 760px;
}

.gallery-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #18479d;
}

.gallery-hero-title {
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 800;
  color: #1d2129;
}

.gallery-hero-text {
  margin: 0;
  max-width: 700px;
  font-size: 18px;
  line-height: 1.8;
  color: #5d6674;
}

/* ========================= */
/* GALLERY OVERVIEW */
/* ========================= */

.gallery-overview {
  padding: 18px 0 34px;
}

.gallery-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-overview-card {
  padding: 28px 26px;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(15, 31, 58, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 71, 157, 0.18);
  box-shadow: 0 16px 34px rgba(15, 31, 58, 0.08);
}

.gallery-overview-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  color: #18479d;
}

.gallery-overview-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #1d2129;
}

.gallery-overview-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5d6674;
}

/* ========================= */
/* SECTION HEADING */
/* ========================= */

.gallery-showcase {
  padding: 26px 0 90px;
}

.gallery-section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.gallery-section-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6fb12d;
}

.gallery-section-heading h2 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  color: #1d2129;
}

.gallery-section-heading p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #5d6674;
}

/* ========================= */
/* GALLERY GRID */
/* ========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.gallery-card {
  grid-column: span 4;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(15, 31, 58, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 71, 157, 0.18);
  box-shadow: 0 18px 38px rgba(15, 31, 58, 0.08);
}

.gallery-card-large {
  grid-column: span 8;
}

.gallery-card-wide {
  grid-column: span 8;
}

.gallery-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef2f6;
}

.gallery-card-large .gallery-card-image {
  aspect-ratio: 16 / 9;
}

.gallery-card-wide .gallery-card-image {
  aspect-ratio: 16 / 7;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-card:hover .gallery-card-image img {
  transform: scale(1.03);
}

.gallery-card-content {
  padding: 22px 22px 24px;
}

.gallery-card-tag {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6fb12d;
}

.gallery-card-content h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 800;
  color: #1d2129;
}

.gallery-card:not(.gallery-card-large):not(.gallery-card-wide) .gallery-card-content h3 {
  font-size: 24px;
}

.gallery-card-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5d6674;
}

/* ========================= */
/* GALLERY CTA */
/* ========================= */

.gallery-cta {
  padding: 0 0 100px;
}

.gallery-cta-card {
  position: relative;
  overflow: hidden;
  padding: 58px 24px;
  text-align: center;
  background: linear-gradient(135deg, #18479d 0%, #163f8a 55%, #1e4ea9 100%);
  border-radius: 32px;
  box-shadow: 0 20px 46px rgba(24, 71, 157, 0.18);
}

.gallery-cta-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.gallery-cta-eyebrow {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9fda44;
}

.gallery-cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto 16px;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.gallery-cta-card p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 28px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
}

.gallery-cta-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  background: #6fb12d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(111, 177, 45, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gallery-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(111, 177, 45, 0.34);
  background: #7cc737;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1200px) {
  .gallery-hero-title {
    font-size: 48px;
  }

  .gallery-section-heading h2 {
    font-size: 36px;
  }

  .gallery-card-content h3 {
    font-size: 25px;
  }

  .gallery-cta-card h2 {
    font-size: 44px;
  }
}

@media (max-width: 992px) {
  .gallery-hero {
    padding: 60px 0 28px;
  }

  .gallery-overview-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide {
    grid-column: auto;
  }

  .gallery-card-large .gallery-card-image,
  .gallery-card-wide .gallery-card-image,
  .gallery-card .gallery-card-image {
    aspect-ratio: 16 / 10;
  }

  .gallery-hero-title {
    font-size: 42px;
  }

  .gallery-hero-text {
    font-size: 17px;
  }

  .gallery-section-heading h2 {
    font-size: 34px;
  }

  .gallery-cta-card {
    padding: 50px 22px;
  }

  .gallery-cta-card h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .gallery-hero {
    padding: 48px 0 24px;
  }

  .gallery-hero-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .gallery-hero-text {
    font-size: 16px;
    line-height: 1.75;
  }

  .gallery-overview-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .gallery-overview-card h3 {
    font-size: 24px;
  }

  .gallery-section-heading h2 {
    font-size: 30px;
  }

  .gallery-card {
    border-radius: 22px;
  }

  .gallery-card-content {
    padding: 20px 18px 22px;
  }

  .gallery-card-content h3 {
    font-size: 22px;
  }

  .gallery-cta-card {
    padding: 42px 18px;
    border-radius: 24px;
  }

  .gallery-cta-card h2 {
    font-size: 32px;
  }

  .gallery-cta-card p {
    font-size: 16px;
  }

  .gallery-cta-btn {
    min-height: 52px;
    padding: 0 28px;
    font-size: 15px;
  }

  .gallery-cta {
    padding: 0 0 80px;
  }
}

@media (max-width: 576px) {
  .gallery-eyebrow,
  .gallery-section-label,
  .gallery-cta-eyebrow {
    font-size: 11px;
  }

  .gallery-hero-title {
    font-size: 30px;
  }

  .gallery-overview-number {
    font-size: 24px;
  }

  .gallery-overview-card h3 {
    font-size: 22px;
  }

  .gallery-section-heading h2 {
    font-size: 27px;
  }

  .gallery-card-content h3 {
    font-size: 21px;
  }

  .gallery-cta-card h2 {
    font-size: 28px;
  }

  .gallery-cta-btn {
    width: 100%;
  }
}

/* ========================= */
/* CONTACT PAGE */
/* ========================= */

.contact-page {
  background: #f8f9fb;
}

/* ========================= */
/* CONTACT HERO */
/* ========================= */

.contact-hero {
  padding: 70px 0 40px;
}

.contact-hero-inner {
  max-width: 760px;
}

.contact-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #18479d;
}

.contact-hero-title {
  margin: 0 0 18px;
  font-size: 54px;
  line-height: 1.08;
  font-weight: 800;
  color: #1d2129;
}

.contact-hero-text {
  margin: 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.8;
  color: #5d6674;
}

/* ========================= */
/* CONTACT MAIN */
/* ========================= */

.contact-main {
  padding: 20px 0 90px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 34px;
  align-items: start;
}

/* ========================= */
/* LEFT SIDE */
/* ========================= */

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-intro {
  padding-top: 8px;
}

.contact-section-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6fb12d;
}

.contact-section-title {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #1d2129;
}

.contact-section-text {
  margin: 0;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.8;
  color: #5d6674;
}

.contact-info-list {
  display: grid;
  gap: 18px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 31, 58, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(24, 71, 157, 0.18);
  box-shadow: 0 16px 34px rgba(15, 31, 58, 0.08);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(111, 177, 45, 0.12), rgba(24, 71, 157, 0.10));
  border: 1px solid rgba(24, 71, 157, 0.08);
}

.contact-info-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #1d2129;
}

.contact-info-content p {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.7;
  color: #5d6674;
}

.contact-info-content p:last-child {
  margin-bottom: 0;
}

.contact-info-content a {
  display: inline-block;
  font-size: 16px;
  line-height: 1.7;
  color: #18479d;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-info-content a:hover {
  color: #6fb12d;
}

/* ========================= */
/* RIGHT SIDE / FORM */
/* ========================= */

.contact-form-card {
  padding: 34px 32px;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 31, 58, 0.08);
}

.contact-form-header {
  margin-bottom: 28px;
}

.contact-form-title {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #1d2129;
}

.contact-form-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #5d6674;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #28303d;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 15px 16px;
  font-size: 15px;
  line-height: 1.5;
  font-family: inherit;
  color: #1f2430;
  background: #f9fafc;
  border: 1px solid #dce3eb;
  border-radius: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #8a93a3;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  background: #ffffff;
  border-color: rgba(24, 71, 157, 0.45);
  box-shadow: 0 0 0 4px rgba(24, 71, 157, 0.08);
}

.contact-form-group textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 8px;
  padding: 0 28px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(135deg, #18479d, #2459b8);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(24, 71, 157, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(24, 71, 157, 0.24);
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* ========================= */
/* MAP SECTION */
/* ========================= */

.contact-map-section {
  padding: 0 0 100px;
}

.contact-map-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e6ebf1;
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(15, 31, 58, 0.06);
}

.contact-map-text {
  padding: 34px 34px 24px;
}

.contact-map-text h2 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #1d2129;
}

.contact-map-text p {
  margin: 0;
  max-width: 700px;
  font-size: 16px;
  line-height: 1.8;
  color: #5d6674;
}

.contact-map-embed {
  height: 420px;
  border-top: 1px solid #edf1f5;
}

.contact-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ========================= */
/* CONTACT PAGE RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-form-card {
    margin-top: 0;
  }

  .contact-hero {
    padding: 56px 0 28px;
  }

  .contact-hero-title {
    font-size: 42px;
    line-height: 1.12;
  }

  .contact-section-title,
  .contact-form-title,
  .contact-map-text h2 {
    font-size: 32px;
    line-height: 1.15;
  }

  .contact-map-embed {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 46px 0 24px;
  }

  .contact-hero-inner {
    max-width: 100%;
  }

  .contact-hero-title {
    font-size: 34px;
    line-height: 1.12;
  }

  .contact-hero-text,
  .contact-section-text,
  .contact-form-text,
  .contact-map-text p {
    font-size: 16px;
    line-height: 1.75;
  }

  .contact-section-title,
  .contact-form-title,
  .contact-map-text h2 {
    font-size: 28px;
  }

  .contact-info-card {
    padding: 20px 18px;
    border-radius: 20px;
  }

  .contact-form-card {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .contact-map-card {
    border-radius: 22px;
  }

  .contact-map-text {
    padding: 24px 20px 18px;
  }

  .contact-map-embed {
    height: 300px;
  }

  .contact-info-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 14px;
  }
}

@media (max-width: 576px) {
  .contact-page .container {
    width: min(100% - 32px, 1200px);
  }

  .contact-hero-title {
    font-size: 29px;
  }

  .contact-eyebrow,
  .contact-section-label {
    font-size: 11px;
  }

  .contact-section-title,
  .contact-form-title,
  .contact-map-text h2 {
    font-size: 24px;
  }

  .contact-info-card {
    gap: 12px;
    padding: 18px 14px;
  }

  .contact-info-content h3 {
    font-size: 18px;
  }

  .contact-info-content p,
  .contact-info-content a {
    font-size: 15px;
    line-height: 1.65;
  }

  .contact-form-card {
    padding: 20px 14px;
  }

  .contact-form-group input,
  .contact-form-group textarea {
    padding: 14px;
    font-size: 15px;
    border-radius: 14px;
  }

  .contact-form-group textarea {
    min-height: 150px;
  }

  .contact-submit-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
  }

  .contact-map-embed {
    height: 260px;
  }
}

/* ========================= */
/* HEADER RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .header-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

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

  .navbar {
    width: 100%;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    padding: 0;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
  }

  .quote-btn {
    width: auto;
    min-width: 140px;
  }
}

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

@media (max-width: 576px) {
  .container {
    width: calc(100% - 32px);
  }
}
/* ========================= */
/* FOOTER RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    width: 100%;
  }

  .footer-logo img {
    max-width: 160px;
    height: auto;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  .why-cards,
  .why-grid,
  .why-section-grid {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .why-card {
    width: 100%;
    max-width: 100%;
  }

  .why .container,
  .why-section .container {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .why h2,
  .why-title {
    font-size: 32px;
    line-height: 1.15;
    word-break: break-word;
  }
}

html {
  scroll-behavior: smooth;
}

/* ========================= */
/* PRODUCT MODAL */
/* ========================= */

.product-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.product-modal.active {
  display: block;
}

.product-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 28, 0.68);
  backdrop-filter: blur(7px);
}

.product-modal-content {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 56px auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 24px;
  padding: 28px;
  z-index: 2;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(13, 63, 145, 0.08);
  animation: modalFadeUp 0.28s ease;
}

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

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #eef2f7;
  color: #344054;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #dfe7f1;
  color: #0d3f91;
}

.modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-right: 56px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(111, 160, 0, 0.12);
  color: #5f8e00;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.modal-controls-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-arrow {
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: #0d3f91;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(13, 63, 145, 0.18);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.modal-arrow:hover {
  background: #6fa000;
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(111, 160, 0, 0.22);
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 34px;
  align-items: stretch;
}

.modal-image-panel {
  position: relative;
  min-height: 440px;
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(111, 160, 0, 0.09), transparent 58%),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  border: 1px solid rgba(13, 63, 145, 0.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.modal-image-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(111, 160, 0, 0.18) 0%, rgba(111, 160, 0, 0.04) 45%, transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.modal-image {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.modal-image img {
  max-width: 100%;
  max-height: 380px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.modal-info h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  color: #111827;
}

.modal-desc {
  margin: 12px 0 22px;
  font-size: 18px;
  line-height: 1.6;
  color: #344054;
  max-width: 640px;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.modal-info-card {
  background: #ffffff;
  border: 1px solid rgba(13, 63, 145, 0.08);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.modal-info-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #0d3f91;
}

.modal-info-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
}

.modal-footer-bar {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

.modal-counter {
  font-size: 15px;
  font-weight: 600;
  color: #475467;
}

@media (max-width: 992px) {
  .product-modal-content {
    width: min(1000px, calc(100% - 24px));
    padding: 22px;
  }

  .modal-body {
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 24px;
  }

  .modal-info h2 {
    font-size: 38px;
  }

  .modal-desc {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .product-modal {
    padding: 12px;
  }

  .product-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
  }

  .product-modal-content {
    width: 100%;
    max-width: 100%;
    margin: 16px auto;
    padding: 18px;
    border-radius: 18px;
    height: auto;
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .modal-topbar {
    align-items: flex-start;
    gap: 12px;
    padding-right: 48px;
    margin-bottom: 18px;
  }

  .modal-controls-top {
    gap: 8px;
  }

  .modal-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .modal-image-panel {
    min-height: 260px;
    padding: 18px;
  }

  .modal-image img {
    max-height: 220px;
  }

  .modal-info h2 {
    font-size: 30px;
  }

  .modal-desc {
    margin: 10px 0 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modal-info-card {
    padding: 16px;
    border-radius: 16px;
  }

  .modal-footer-bar {
    margin-top: 14px;
  }
}

@media (max-width: 480px) {
  .product-modal-content {
    margin: 12px auto;
    padding: 16px;
    border-radius: 16px;
  }

  .modal-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 22px;
  }

  .modal-badge {
    min-height: 30px;
    padding: 6px 12px;
    font-size: 12px;
  }

  .modal-info h2 {
    font-size: 26px;
  }

  .modal-desc {
    font-size: 14px;
  }

  .modal-info-label {
    font-size: 12px;
  }

  .modal-info-card p {
    font-size: 15px;
  }

  .modal-counter {
    font-size: 14px;
  }
}