body {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

.site-header {
  background-color: #2f7431;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  height: 100px;
  gap: 10px;
}

.header-bar {
  display: contents;
}

.logo {
  flex-shrink: 0;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
}

.logo a img {
  max-width: 300px;
  height: auto;
}
.has-dropdown > a i {
  display: none;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: white;
}

.nav1 > ul > li > a {
  padding: 15px 10px;
}
.sector {
  display: flex;
  align-items: center;
  gap: 60px;
}
.nav1 > ul,
.nav2 > ul {
  display: flex;
  gap: 20px;
  color: white;
}
.nav1 > ul > li > a:hover,
.nav2 > ul > li > a:hover {
  text-decoration: underline;
  background: #265227;
}

.dropdown {
  position: static;
  top: 100%;
  left: 0;
  background-color: #265227;
  min-width: 260px;
  padding: 10px 0;
  z-index: 999;
  opacity: 1;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 1s ease,
    transform 1s ease,
    visibility 1s ease;
  pointer-events: none;
}
.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nav1 ul li {
  position: relative;
  list-style: none;
  height: 30px;
  display: flex;
  align-items: center;
}
.nav1 > ul > li.has-dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown li {
  list-style: none;
}

.dropdown li a {
  display: block;
  padding: 18px 30px;
  font-size: 14px;
  color: #ffffeb;
  transition: 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown li a:hover {
  text-decoration: underline;
}

/* Slider kodu ===========================----------------->>>>> */

.container {
  max-width: 1400px;
  margin: auto;
}

main > .container {
  max-width: none;
  width: 100%;
  margin: 0;
}

.slider {
  cursor: grab;
  position: relative;
  width: 100%;
  margin-top: 1px;
  overflow: hidden;
}

.slides-wrapper {
  display: flex;
  width: 100%;
  position: relative;
  min-height: 570px;
  overflow: hidden;
}

.slide {
  min-width: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}

.slide img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  display: block;
}

.slide-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  top: 50%;
  text-align: center;
  left: 7%;
  width: 500px;
  transform: translateY(-50%);
  color: white;
}
.mobile-separator {
  display: none;
}
#content-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1.5;
}
#content-center h1 {
  padding: 15px;
}
#content-center p {
  font-size: 18px;
}
#center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#center h1 {
  font-size: 28px;
}
#center a {
  margin: 1em;
}
#center h1 {
  font-weight: 700;
  font-size: 30px;
}
#center p,
#center p > em {
  font-size: 25px;
  line-height: 0.8cm;
}
#right-align {
  left: auto;
  right: 7%;
}

#right-align p {
  line-height: 1;
  font-size: 28px;
}
#right-align span {
  margin: 1em;
  font-size: 14px;
}
#right-align a {
  margin: 0;
}
#right-align-dark {
  width: 550px;
  left: auto;
  right: 3%;
  padding: 30px;
  background: #000000b2;
}
#right-align-dark p {
  font-size: 24px;
}

#right-align-dark h2 {
  padding-top: 20px;
  color: #00843d;
  font-size: 36px;
}
.slide-content p {
  font-size: 22px;
  line-height: 0.5cm;
}
.slide-content a {
  font-size: 18px;
  padding: 10px 15px;
  background: #018754;
  transition:
    background-color 0.5s ease,
    color 0.5s ease,
    border-color 1s ease;
}
.slide-content a:hover {
  background: #ffffff;
  color: #000000;
  border: 2px solid #018754;
}

.slide-content h1 {
  font-size: 30px;
  font-weight: 600;
}

.slide-content em {
  font-size: 18px;
  font-style: italic;
  display: block;
  margin-bottom: 20px;
}

.slide-btn {
  display: inline-block;
  padding: 12px 28px;
  margin-top: 2em;
  border: 2px solid white;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  background-color: rgba(56, 114, 57, 0.6);
  transition: 0.2s;
}
#btn {
  margin: 1em;
}

.slide-btn:hover {
  background-color: #387239;
}
.prev-btn,
.next-btn {
  position: absolute;
  transition: background-color 0.5s ease;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: rgb(179, 179, 179);
}

.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.categories a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #387239;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  text-decoration: none;
  font-size: 20px;
  padding: 18px 12px;
  text-align: center;
  transition: 0.2s;
  min-height: 64px;
}

.categories a:hover {
  background-color: #2d5f2e;
}

@media (max-width: 1024px) {
  .categories {
    grid-template-columns: repeat(3, 1fr);
    padding: 30px 24px;
    gap: 16px;
  }

  .categories a {
    font-size: 18px;
    padding: 16px 10px;
    min-height: 58px;
  }
}

@media (max-width: 640px) {
  #champions img {
    height: 500px;
  }
  #gritx img {
    height: 600px;
  }
  #height img {
    height: 600px;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 16px;
    gap: 12px;
  }

  .section-img-large {
    display: none !important;
  }

  .categories a {
    font-size: 16px;
    padding: 20px 12px;
    min-height: 56px;
  }
}

.divider {
  max-width: 1340px;
  margin: auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section-img-small {
  display: none;
}

.section-img-large {
  width: 100%;
  display: block;
  object-fit: cover;
}

.promo {
  position: relative;
  width: 100%;
}
.promo .section-img-large {
  height: 600px;
}

.promo-content {
  position: absolute;
  top: 30%;
  right: 80px;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
  text-align: center;
}

.promo-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.promo-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.promo-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.promo-btns a {
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  transition: 0.2s;
}

.promo-btns a:hover {
  background-color: white;
  color: #387239;
}
.shop-section {
  position: relative;
  width: 100%;
}

.shop-section .section-img-large {
  height: 588px;
}

.shop-content {
  position: absolute;
  top: 20%;
  left: 80px;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.shop-content h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.shop-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.shop-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.shop-btns a {
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 14px;
  text-align: center;
  transition: 0.2s;
}

.shop-btns a:hover {
  background-color: white;
  color: #1e3d1f;
}

.shop-img {
  flex: 1;
  height: 550px;
}

.shop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.referral {
  position: relative;
  margin: 0px;
}

.referral .section-img-large {
  height: 550px;
}

.referral-content {
  position: absolute;
  top: 20%;
  right: 80px;
  transform: translateY(-50%);
  color: white;
  max-width: 450px;
  text-align: center;
}

.referral-content h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 24px;
}

.referral-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.referral-btn {
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 15px;
  transition: 0.2s;
  display: inline-block;
}

.referral-btn:hover {
  background-color: white;
  color: #1e3d1f;
}
.training {
  position: relative;
  margin: 0px;
}

.training .section-img-large {
  height: 550px;
}

.training-content {
  position: absolute;
  top: 20%;
  left: 80px;
  transform: translateY(-50%);
  color: white;
  max-width: 450px;
  text-align: center;
}

.training-content h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
}

.training-content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.training-btn {
  color: white;
  text-decoration: none;
  border: 2px solid white;
  border-radius: 30px;
  padding: 12px 32px;
  font-size: 15px;
  transition: 0.2s;
  display: inline-block;
}

.training-btn:hover {
  background-color: white;
  color: #1e3d1f;
}
.news {
  position: relative;
  margin: 0px;
}

.news .section-img-large {
  height: 550px;
}

.news-content {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
  color: white;
}

.news-content h2 {
  font-size: 24px;
  font-weight: 400;
}

/* FOOTER */
footer {
  max-width: 1420px;
  margin: 1px auto;

  background-color: #ffffff;
}

/* FOOTER FORM */
.footer-form {
  position: relative;
  margin: 0 10px;
  border-radius: 12px;
  overflow: hidden;
}

.footer-form img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.footer-form-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 0 60px;
  gap: 60px;
}

.footer-form-left {
  flex: 1;
  color: white;
}

.footer-form-left h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-form-left p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-form-right {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-row input,
.form-full {
  flex: 1;
  padding: 14px 20px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.9);
  outline: none;
}

.form-full {
  width: 100%;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background-color: #e8d44d;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.form-submit:hover {
  background-color: #d4c040;
}

/* FOOTER BOTTOM */
.footer-bottom {
  display: flex;
  gap: 60px;
  padding: 60px 60px 40px;
  border-bottom: 1px solid #e0e0e0;
}

.footer-about {
  flex: 2;
}

.footer-logo {
  width: 160px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.footer-socials a:hover {
  background-color: #387239;
  color: white;
}

.footer-links,
.footer-hours,
.footer-address {
  flex: 1;
}

.footer-links h3,
.footer-hours h3,
.footer-address h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
}

.footer-links ul,
.footer-hours ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #444;
  font-size: 14px;
  transition: 0.2s;
}

.footer-links ul li a:hover {
  color: #387239;
}

.footer-hours ul li {
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-hours ul li a {
  color: #444;
  text-decoration: none;
}

.footer-hours ul li a:hover {
  color: #387239;
}

.footer-address p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  display: flex;
  gap: 8px;
}

.footer-copy {
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy p {
  font-size: 13px;
  color: #666;
}

.footer-copy a {
  color: #222;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 860px) {
  /* Slider */
  .slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .slides-wrapper {
    min-height: auto;
    position: relative;
  }
  .slide img {
    height: 280px;
    object-fit: cover;
  }
  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out;
    z-index: 1;
  }

  .slide-content,
  #content-center,
  #center {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    background-color: #387239;
    color: #ffffff;
    padding: 28px 20px;
    text-align: center;
    box-sizing: border-box;
  }
  #right-align {
    background: #000000;
  }
  #center {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 28px 20px;
    text-align: center;
    box-sizing: border-box;
  }

  #right-align-dark {
    position: static;
    transform: none;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    background: rgb(1, 41, 1);
  }

  .mobile-separator {
    display: flex;
    height: 400px;
    background: #0c5b10;
  }

  .slide-content p {
    font-size: 16px;
  }

  .slide-content h2 {
    font-size: 26px;
  }

  .slide-content em {
    font-size: 15px;
  }

  .slide-btn {
    margin-top: 8px;
  }

  #content-center {
    background: #000000;
  }

  .prev-btn,
  .next-btn {
    top: 140px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  /* Promo, Shop, Referral, Training, News */
  .promo,
  .shop-section,
  .referral,
  .training,
  .news {
    display: flex;
    flex-direction: column;
  }
  .shop-section{
    margin: 0px 15px !important;
    box-sizing: border-box;
    width: auto;
  }

  .promo .section-img-small,
  .shop-section .section-img-small,
  .referral .section-img-small,
  .training .section-img-small,
  .news .section-img-small {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    order: 1;
  }

  .promo .section-img-large,
  .shop-section .section-img-large,
  .referral .section-img-large,
  .training .section-img-large,
  .news .section-img-large {
    height: 280px;
    object-fit: cover;
    order: 2;
  }

  .promo-content,
  .shop-content,
  .referral-content,
  .training-content,
  .news-content {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
    max-width: 100%;
    width: 100%;
    order: 3;
    color: #ffffff;
    padding: 48px 28px 56px;
    min-height: 300px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .promo-content {
    background-color: #000000;
  }

  .shop-content {
    background-color: #828282;
    padding: 56px 32px 64px;
    min-height: 480px;
  }

  .referral-content {
    background-color: #2f1700;
  }

  .training-content {
    background-color: #006400;
  }

  .news-content {
    background-color: #005900;
  }

  .promo-content h2,
  .shop-content h2,
  .referral-content h2,
  .training-content h2,
  .news-content h2,
  .promo-content p,
  .shop-content p,
  .referral-content p,
  .training-content p,
  .news-content h2 {
    color: #ffffff;
  }

  .promo-content h2,
  .shop-content h2,
  .referral-content h2,
  .training-content h2,
  .news-content h2 {
    font-size: 22px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 540px;
  }

  .shop-content h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 24px;
  }

  .promo-content p,
  .shop-content p,
  .referral-content p,
  .training-content p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: 520px;
  }

  .shop-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 36px;
    color: #ffffff;
  }

  .promo-btns a,
  .shop-btns a,
  .referral-btn,
  .training-btn {
    color: #ffffff;
    border-color: #ffffff;
    background-color: transparent;
  }

  .promo-btns a:hover,
  .shop-btns a:hover,
  .referral-btn:hover,
  .training-btn:hover {
    background-color: #ffffff;
    color: #333333;
  }

  .promo-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .shop-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 16px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .shop-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 30px;
    padding: 14px 12px;
    font-size: 14px;
    min-height: 50px;
    text-align: center;
    line-height: 1.3;
  }

  /* Footer — overlay form on background image */
  .footer-form {
    position: relative;
    display: block;
    margin: 12px 16px;
    border-radius: 16px;
    overflow: hidden;
    min-height: 520px;
  }

  .footer-form img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .footer-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  .footer-form-content {
    position: relative;
    z-index: 2;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    padding: 36px 24px 40px;
    gap: 16px;
    background: transparent;
    min-height: 520px;
    justify-content: center;
  }

  .footer-form-left,
  .footer-form-right {
    flex: unset;
    width: 100%;
  }

  .footer-form-left h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
  }

  .footer-form-left p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 8px;
    text-align: left;
  }

  .footer-form-right {
    gap: 12px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .form-row input,
  .form-full {
    width: 100%;
    padding: 14px 20px;
    border-radius: 30px;
    background: #ffffff;
    font-size: 14px;
  }

  .form-row input::placeholder,
  .form-full::placeholder {
    color: #9a8b7a;
  }

  .form-submit {
    background-color: #8da062;
    color: #ffffff;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    margin-top: 4px;
  }

  .form-submit:hover {
    background-color: #7d904f;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px 30px;
  }

  .footer-about,
  .footer-links,
  .footer-hours,
  .footer-address {
    flex: unset;
    width: 100%;
  }

  .footer-copy {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    text-align: center;
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 1025px) {
  .dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2d5f2e;
    min-width: 260px;
    padding: 10px 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 1s ease,
      transform 1s ease,
      visibility 1s ease;
    pointer-events: none;
  }

  .nav1 > ul > li.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 1224px) {
  .hamburger {
    display: block;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    height: auto;
    min-height: unset;
    padding: 0;
    background-color: #2f7431;
    position: relative;
    width: 100%;
    box-sizing: border-box;
  }

  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    box-sizing: border-box;
  }

  .logo a img {
    max-width: 200px;
  }

  .sector {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: static;
    width: 100%;
    gap: 0;
    min-height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    background-color: #1e4d2b;
    transition:
      max-height 0.45s ease,
      opacity 0.35s ease;
  }

  .sector.open {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sector .nav1,
  .sector .nav2 {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .sector .nav1 ul,
  .sector .nav2 ul {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .sector .nav1 ul li,
  .sector .nav2 ul li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    height: auto;
    display: block;
  }

  .sector .nav1 ul li.has-dropdown {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .sector .nav1 ul li a,
  .sector .nav2 ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
    text-decoration: none;
  }

  .sector.open .nav1 > ul > li:not(.has-dropdown) > a:hover,
  .sector.open .nav2 > ul > li > a:hover {
    text-decoration: underline;
  }

  .sector.open .has-dropdown > a:hover,
  .sector.open .has-dropdown > a:active {
    text-decoration: none;
  }

  .sector.open .has-dropdown > a:hover .nav-link-text {
    text-decoration: underline;
  }

  .sector .nav1 ul li.has-dropdown > a {
    font-weight: 700;
  }

  .sector .has-dropdown > a i {
    display: inline-block !important;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    margin-left: auto;
    padding-left: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
  }

  .dropdown {
    position: static !important;
    visibility: visible !important;
    pointer-events: none !important;
    display: block !important;
    max-height: 0;
    opacity: 0;
    transform: translateY(-12px);
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    min-width: unset !important;
    width: 100%;
    list-style: none;
    transition:
      max-height 1s ease,
      opacity 0.8s ease,
      transform 1s ease,
      padding 1s ease;
  }

  .dropdown.open {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 0 8px !important;
    pointer-events: auto !important;
  }

  .dropdown li {
    border-bottom: none !important;
    padding: 0;
    margin: 0;
    height: auto;
    display: block;
  }

  .dropdown li a {
    display: block;
    padding: 10px 20px 10px 36px;
    font-weight: 400;
    font-size: 14px;
    opacity: 1;
    color: white;
    text-decoration: none;
    border-bottom: none;
    letter-spacing: 0;
  }

  .sector.open .dropdown li a:hover {
    text-decoration: underline;
  }
}

/* Tablet: 768px and below */

@media (max-width: 768px) {
  .sector {
    padding: 0;
  }
  .prev-btn,
  .next-btn{
    display: none;
  }

  .sector .nav1,
  .sector .nav2 {
    width: 100%;
  }

  .sector .nav1 ul,
  .sector .nav2 ul {
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  /* Hər li arasında padding/margin olmasın */
  .sector .nav1 ul li,
  .sector .nav2 ul li {
    padding: 0 !important;
    margin: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
  }

  /* Linklər tam eni tutsun, sol tərəfdə */
  .sector .nav1 ul li a,
  .sector .nav2 ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
    box-sizing: border-box;
    text-align: left;
  }

  /* nav1 və nav2 arasındakı boşluğu sil */
  .sector .nav1,
  .sector .nav2 {
    margin: 0;
    padding: 0;
  }

  /* Dropdown alt linklər */
  .dropdown {
    padding: 0 !important;
    margin: 0 !important;
  }

  .dropdown li {
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .dropdown li a {
    padding: 10px 20px 10px 36px !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    opacity: 1;
    display: block !important;
    border-bottom: none !important;
  }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
  /* Header */
  .header-bar {
    padding: 12px 15px;
  }

  .logo a img {
    width: 120px;
  }

  .nav1 ul,
  .nav2 ul {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .nav1 a,
  .nav2 a {
    font-size: 11px;
  }

  /* Slider */
  .slide img {
    height: 300px;
  }

  #champions img {
    object-position: 95% 100%;
  }

  .slide-content {
    padding: 22px 16px;
  }

  .slide-content p {
    font-size: 13px;
  }

  .slide-content h2 {
    font-size: 20px;
  }

  .prev-btn,
  .next-btn {
    top: 110px;
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* Sections */
  .promo .section-img-large,
  .shop-section .section-img-large,
  .referral .section-img-large,
  .training .section-img-large,
  .news .section-img-large {
    height: 200px;
  }

  .promo-content,
  .shop-content,
  .referral-content,
  .training-content,
  .news-content {
    padding: 36px 20px 44px;
    min-height: 260px;
  }

  .shop-content {
    padding: 44px 20px 52px;
    min-height: 420px;
  }

  .promo-content h2,
  .referral-content h2,
  .training-content h2,
  .news-content h2 {
    font-size: 18px;
  }

  .shop-content h2 {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .promo-content p,
  .referral-content p,
  .training-content p {
    font-size: 13px;
  }

  .shop-content p {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .promo-btns a,
  .referral-btn,
  .training-btn {
    padding: 10px 18px;
    font-size: 13px;
  }

  .shop-btns {
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
    max-width: 100%;
  }

  .shop-btns a {
    padding: 12px 8px;
    font-size: 12px;
    min-height: 44px;
  }

  /* Footer */
  .footer-form {
    margin: 10px 12px;
    min-height: 480px;
  }

  .footer-form-content {
    padding: 28px 18px 32px;
    min-height: 480px;
  }

  .footer-form-left h2 {
    font-size: 18px;
  }

  .footer-form-left p {
    font-size: 12px;
  }

  .form-row input,
  .form-full {
    padding: 12px 16px;
    font-size: 13px;
  }

  .footer-bottom {
    padding: 28px 16px 24px;
    gap: 24px;
  }

  .footer-logo {
    width: 120px;
  }

  .footer-about p,
  .footer-hours ul li,
  .footer-address p {
    font-size: 13px;
  }

  .footer-links h3,
  .footer-hours h3,
  .footer-address h3 {
    font-size: 15px;
  }

  .footer-copy p,
  .footer-copy a {
    font-size: 12px;
  }
}

/* Progress Garden header */
main {
  position: relative;
}

.pg-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 18px 80px 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

.pg-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  margin: 0;
}

.pg-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  flex-direction:column;
}

.pg-header__logo img {
  width: 200px;
  height: auto;
}

.pg-header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.pg-header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pg-header__item {
  position: relative;
  list-style: none;
}

.pg-header__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  background: none;
  color: #fff;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding: 8px 0;
  white-space: nowrap;
}

.pg-header__link:hover {
  opacity: 0.85;
}

.pg-header__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f2c94c;
  flex-shrink: 0;
}

.pg-header__link i {
  font-size: 11px;
  margin-left: 2px;
}

.pg-header__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}

.pg-header__dropdown a {
  display: block;
  padding: 10px 20px;
  color: #333;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 14px;
  text-decoration: none;
}

.pg-header__dropdown a:hover {
  background: #f5f5f5;
}

.pg-header__item--dropdown:hover .pg-header__dropdown,
.pg-header__item--dropdown:focus-within .pg-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pg-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.pg-header__shop {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #fff;
  font-family: "Poppins", "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.pg-header__shop:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pg-header__toggle {
  display: none;
  border: none;
  background: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

.pg-header__mobile {
  display: none;
}

@media (max-width: 1100px) {
  .pg-header {
    padding: 14px 20px 0;
  }

  .pg-header__nav,
  .pg-header__shop {
    display: none;
  }

  .pg-header__toggle {
    display: block;
  }

  .pg-header__mobile {
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
    background: rgba(30, 77, 43, 0.96);
    margin: 12px -20px 0;
  }

  .pg-header__mobile.open {
    max-height: 80vh;
    opacity: 1;
    overflow-y: auto;
  }

  .pg-header__mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .pg-header__mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pg-header__mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: none;
    color: #fff;
    font-family: "Poppins", "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    box-sizing: border-box;
  }

  .pg-header__mobile-shop {
    color: #f2c94c;
  }

  .pg-header__mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .pg-header__mobile-item--dropdown.open .pg-header__mobile-submenu {
    max-height: 200px;
  }

  .pg-header__mobile-submenu a {
    display: block;
    padding: 10px 20px 10px 36px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    text-decoration: none;
  }

  .pg-header__mobile-submenu a:hover {
    text-decoration: underline;
  }

  .pg-header__logo img {
    width: 120px;
  }
}

/* About page */
.about-page main {
  padding-top: 0;
}

.pg-header--inner {
  position: relative;
  background: #2f7431;
  padding-bottom: 18px;
}

.pg-header__link--active {
  opacity: 1;
  font-weight: 600;
}

.about-hero {
  background: linear-gradient(135deg, #1e4d2b 0%, #387239 50%, #2f7431 100%);
  color: #fff;
  padding: 60px 80px 80px;
  text-align: center;
}

.about-hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero__label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f2c94c;
  margin-bottom: 16px;
}

.about-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero__tagline {
  font-size: 22px;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 6px;
}

.about-hero__subtitle {
  font-size: 16px;
  opacity: 0.75;
}

.about-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px 80px;
}

.about-section {
  padding: 56px 0;
  border-bottom: 1px solid #e8e8e8;
}

.about-section--alt {
  background: #f8faf7;
  margin: 0 -40px;
  padding: 56px 40px;
  border-bottom: none;
}

.about-section h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1e4d2b;
  margin-bottom: 20px;
}

.about-section p,
.about-section__text p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.about-section p:last-child,
.about-section__text p:last-child {
  margin-bottom: 0;
}

.about-section strong {
  color: #2f7431;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid #e8e8e8;
}

.about-stat {
  text-align: center;
  padding: 28px 16px;
  background: #f8faf7;
  border-radius: 12px;
  border: 1px solid #e4ede4;
}

.about-stat__number {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #387239;
  margin-bottom: 8px;
}

.about-stat__label {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.about-areas {
  padding: 56px 0;
  border-bottom: 1px solid #e8e8e8;
}

.about-areas h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1e4d2b;
  margin-bottom: 12px;
}

.about-areas__intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
}

.about-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-areas__grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid #e4ede4;
  border-radius: 10px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-areas__grid li:hover {
  border-color: #387239;
  box-shadow: 0 4px 16px rgba(56, 114, 57, 0.12);
}

.about-areas__grid i {
  font-size: 20px;
  color: #387239;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-areas__grid span {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.about-mission {
  padding: 56px 0;
  border-bottom: 1px solid #e8e8e8;
}

.about-mission__inner {
  background: linear-gradient(135deg, #1e4d2b, #387239);
  color: #fff;
  padding: 48px 56px;
  border-radius: 16px;
  text-align: center;
}

.about-mission__inner h2 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-mission__inner p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto;
  opacity: 0.95;
}

.about-pg {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 64px 0 0;
}

.about-pg__content {
  flex: 1;
}

.about-pg__logo {
  width: 140px;
  margin-bottom: 20px;
}

.about-pg h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #1e4d2b;
  margin-bottom: 16px;
}

.about-pg p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

.about-pg__actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #387239;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid #387239;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-btn:hover {
  background: #2d5f2e;
  border-color: #2d5f2e;
}

.about-btn--outline {
  background: transparent;
  color: #387239;
}

.about-btn--outline:hover {
  background: #387239;
  color: #fff;
}

.about-pg__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #f8faf7;
  border-radius: 16px;
  border: 1px solid #e4ede4;
}

.about-pg__brand img {
  max-width: 200px;
  height: auto;
}

@media (max-width: 900px) {
  .about-hero {
    padding: 40px 24px 56px;
  }

  .about-hero h1 {
    font-size: 32px;
  }

  .about-content {
    padding: 0 24px 60px;
  }

  .about-section--alt {
    margin: 0 -24px;
    padding: 48px 24px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-areas__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-pg {
    flex-direction: column;
    text-align: center;
  }

  .about-pg__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .about-pg__actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .about-hero h1 {
    font-size: 26px;
  }

  .about-hero__tagline {
    font-size: 18px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .about-stat {
    padding: 20px 12px;
  }

  .about-stat__number {
    font-size: 28px;
  }

  .about-areas__grid {
    grid-template-columns: 1fr;
  }

  .about-mission__inner {
    padding: 32px 24px;
  }

  .about-section h2,
  .about-areas h2,
  .about-mission__inner h2 {
    font-size: 22px;
  }

  .about-pg__actions {
    flex-direction: column;
    align-items: center;
  }

  .about-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
