@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  --header-height: 3.5rem;

  /* ========================================
     BALANCED COLOR DESIGN - Green, Orange, Black
     Primary: Green | Secondary: Orange | Dark: Black
     ======================================== */
  
  /* PRIMARY - Green */
  --green-primary: #8bc34a;
  --green-dark: #689f38;
  --green-light: #aed581;
  
  /* SECONDARY - Orange */
  --orange-accent: #ff9f43;
  --orange-dark: #ff8c00;
  --orange-light: #ffb74d;
  
  /* DARK - Black */
  --title-color: #141400;
  --black-dark: #1a1a1a;
  --black-light: #2d2d2d;
  
  /* Aliases for backward compatibility */
  --first-color: var(--green-primary);
  --first-color-alt: var(--green-dark);
  --accent-green: var(--orange-accent);
  --accent-green-alt: var(--orange-dark);
     
  /* Legacy color names */
  --green-bright: #8bc34a;
  --orange-dark: #f57c00;
     
  /* White Theme - Light Background */
  --text-color: #333333;
  --text-color-light: #666666;
  --white-color: #ffffff;
  --light-bg: #f5f5f5;
  --light-bg-2: #eeeeee;
  --body-color: #ffffff;
  --container-color: #ffffff;
  --card-bg: #ffffff;

  --body-font: "Montserrat", sans-serif;
  --second-font: "Roboto Slab", serif;
  --biggest-font-size: 3rem;
  --bigger-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;

  --font-regular: 400;
  --font-semi-bold: 600;
  --font-bold: 700;

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1150px) {
  :root {
    --biggest-font-size: 5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
  }
}

/*=============== KEYFRAME ANIMATIONS ===============*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease-out forwards;
}

.animate-slide-left {
  animation: slideInLeft 1s ease-out forwards;
}

.animate-slide-right {
  animation: slideInRight 1s ease-out forwards;
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background: #ffffff;
  color: var(--text-color);
  min-height: 100vh;
}

button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: var(--title-color);
  font-weight: var(--font-bold);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
* {
  box-sizing: border-box;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.section__title {
  font-size: var(--bigger-font-size);
  font-family: var(--second-font);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--title-color);
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--title-color), var(--accent-green));
  margin: 10px auto 0;
  border-radius: 2px;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== SERVICES ===============*/
.services__container {
  padding-top: 1.5rem;
  grid-template-columns: 1fr;
  row-gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.services__card {
  background-color: var(--container-color);
  box-shadow: 0 12px 25px hsla(0, 0%, 0%, 0.12);
  padding: 1.5rem;
  border: 2px solid transparent;
  transition: border-color 0.4s, transform 0.4s;
}

.services__card:hover {
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.services__tag {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.services__tag i {
  color: var(--accent-green);
  font-size: 1.25rem;
}

.services__media {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    hsla(140, 35%, 96%, 1) 0%,
    hsla(28, 88%, 96%, 1) 100%
  );
  border: 1px solid hsla(150, 10%, 24%, 0.12);
}

.services__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.services__placeholder {
  display: none !important;
}

.services__media.is-missing .services__img {
  display: none;
}

.services__media.is-missing {
  background: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
  min-height: 200px;
}

.services__description {
  margin-top: 1rem;
  color: var(--text-color);
}

@media screen and (min-width: 768px) {
  .services__container {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }

  .services__img {
    height: 320px;
  }
}

/*=============== PRODUCT DETAILS ===============*/
.favorite__card-link {
  display: block;
  color: inherit;
}

.favorite__card-link:focus-visible {
  outline: 3px solid hsla(140, 55%, 36%, 0.45);
  outline-offset: 6px;
  border-radius: 1rem;
}

.product__container {
  padding-top: 6rem;
}

.product__header {
  text-align: center;
}

.product__back {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5rem;
  color: var(--text-color);
  margin-bottom: 1.25rem;
  transition: color 0.3s;
}

.product__back:hover {
  color: var(--accent-green);
}

.product__title {
  color: var(--title-color);
  font-size: var(--bigger-font-size);
  font-family: var(--second-font);
}

.product__subtitle {
  margin-top: 0.5rem;
  color: var(--text-color-light);
}

.product__content {
  padding-top: 2rem;
  row-gap: 2rem;
}

.product__details {
  background-color: var(--container-color);
  border: 1px solid hsla(150, 10%, 24%, 0.12);
  padding: 1.5rem;
  box-shadow: 0 12px 25px hsla(0, 0%, 0%, 0.08);
}

.product__section-title {
  color: var(--accent-green);
  font-family: var(--second-font);
  font-size: var(--h2-font-size);
  margin-bottom: 0.75rem;
}

.product__description {
  color: var(--text-color);
  margin-bottom: 1.25rem;
}

.product__specs {
  display: grid;
  row-gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.product__spec {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid hsla(150, 10%, 24%, 0.12);
}

.product__spec-key {
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__spec-val {
  color: var(--text-color);
  text-align: right;
}

/* Slider */
.slider {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    hsla(140, 35%, 96%, 1) 0%,
    hsla(28, 88%, 96%, 1) 100%
  );
  border: 1px solid hsla(150, 10%, 24%, 0.12);
}

.slider__track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 420ms ease;
}

.slider__slide {
  flex: 0 0 100%;
}

.slider__media {
  position: relative;
}

.slider__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Hover Image Swap Effect - second image overlay */
.slider__hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.slider__media:hover .slider__img {
  transform: scale(1.08);
}

.slider__media:hover .slider__hover-img {
  opacity: 1;
}

.slider__placeholder {
  display: none;
  padding: 4rem 1.25rem;
  text-align: center;
  color: var(--text-color);
}

.slider__media.is-missing .slider__img {
  display: none;
}

.slider__media.is-missing .slider__placeholder {
  display: block;
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid hsla(150, 10%, 24%, 0.15);
  background: hsla(0, 0%, 100%, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--title-color);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.25s, background-color 0.25s;
}

.slider__btn:hover {
  background: hsla(0, 0%, 100%, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.slider__btn--prev {
  left: 0.75rem;
}

.slider__btn--next {
  right: 0.75rem;
}

.slider__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: hsla(0, 0%, 100%, 0.55);
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s;
}

.slider__dot.is-active {
  background: hsla(0, 0%, 100%, 0.95);
  transform: scale(1.25);
}

@media screen and (min-width: 768px) {
  .product__content {
    grid-template-columns: 1.1fr 0.9fr;
    column-gap: 2rem;
    align-items: start;
  }

  .slider__img {
    height: 420px;
  }
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
}

/* Header default: readable on light pages */
.header .nav__toggle,
.header .nav__close,
.header .nav__link {
  color: var(--title-color);
}

/* If the hero background slider or image is loaded, use white */
body.hero-bg-loaded .header .nav__toggle,
body.hero-bg-loaded .header .nav__close,
body.hero-bg-loaded .header .nav__link {
  color: hsl(0, 0%, 100%);
}

/* Keep logo on-brand - always use brand color */
.header .nav__logo {
  color: var(--first-color);
}

/* When scrolled, the header gets a light blur background */
.blur-header .nav__logo,
.blur-header .nav__toggle,
.blur-header .nav__close,
.blur-header .nav__link {
  color: var(--title-color);
}

.nav {
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  color: var(--first-color);
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  transition: all 0.4s;
  font-weight: 700;
}

.nav__logo:hover {
  color: var(--first-color-alt);
  transform: scale(1.05);
}

.nav__logo-img {
  height: 30px;
  width: auto;
  vertical-align: middle;
}

.nav__toggle,
.nav__close {
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

.nav__toggle {
  display: none;
}

/* Original nav behavior restored */

.nav__close {
  display: none;
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.nav__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 2rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s, transform 0.3s ease;
  position: relative;
}

/* Make burger always visible on mobile */
@media screen and (max-width: 992px) {
  .nav {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .header__quote {
    display: none !important;
  }
  
  .header__actions {
    gap: 0.5rem !important;
    flex-shrink: 1;
  }
  
  .nav__toggle {
    position: relative;
    z-index: 100;
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    box-shadow: 0 2px 10px rgba(5, 150, 105, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
  }
  
  .nav__toggle:hover {
    background: linear-gradient(135deg, #047857 0%, #036d4a 100%);
    transform: scale(1.05);
  }
  
  .nav__toggle:active {
    transform: scale(0.98);
  }
  
  .nav__toggle i {
    font-size: 20px !important;
    color: white !important;
    font-weight: 500;
  }

  body.hero-bg-loaded .nav__toggle {
    background: hsla(0, 0%, 0%, 0.2);
    border-color: hsla(0, 0%, 100%, 0.3);
  }
  
  .nav__menu {
    top: 60px !important;
  }
}

/* Navigation for Mobile Devices - Fixed */
@media screen and (max-width: 992px) {
  .nav__menu {
    position: fixed;
    top: 60px !important;
    right: -100%;
    left: 0;
    background: hsla(0, 0%, 100%, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid hsla(150, 10%, 24%, 0.1);
    width: 100% !important;
    height: calc(100vh - 60px);
    padding: 2rem 1.5rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 999;
    overflow-y: auto;
  }
  
  .show-menu {
    right: 0 !important;
  }
  
  /* Menu backdrop */
  .show-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: -1;
  }
}

  /* Mobile dropdown styles */
  .nav__dropdown {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    cursor: pointer;
  }

  .nav__link--dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
    cursor: pointer !important;
    pointer-events: auto !important;
  }

  .nav__dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    box-shadow: none;
    background-color: rgba(0, 0, 0, 0.05);
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    width: 100%;
    z-index: 5;
  }

  .nav__dropdown.active .nav__dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0.5rem 0 0.5rem 1rem;
  }

  .nav__dropdown.active .nav__link--dropdown i {
    transform: rotate(180deg) !important;
  }

  .nav__dropdown-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid hsla(150, 10%, 24%, 0.1);
    display: block;
    width: 100%;
  }
}

.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s, transform 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transition: width 0.3s ease;
}

.nav__link:hover {
  color: var(--accent-green);
}

.nav__link:hover::after {
  width: 100%;
}

/*==================== DROPDOWN MENU ====================*/
.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.nav__link--dropdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer !important;
  transition: all 0.3s ease;
  pointer-events: auto !important;
  z-index: 100;
  position: relative;
}

.nav__link--dropdown i {
  font-size: 1.1rem;
  transition: transform 0.3s ease !important;
  display: inline-block;
  pointer-events: auto !important;
  cursor: pointer;
}

.nav__dropdown.active .nav__link--dropdown i {
  transform: rotate(180deg) !important;
}

.nav__dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  border: 1px solid #eee;
}

.nav__dropdown:hover > .nav__dropdown-menu,
.nav__dropdown.active > .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-menu li {
  padding: 0;
}

.nav__dropdown-link {
  display: block;
  padding: 0.6rem 1rem;
  color: #333333;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.nav__dropdown-link:hover {
  color: #8bc34a;
  background-color: #f8f9fa;
  padding-left: 1.25rem;
}

.nav__close,
.nav__img-1,
.nav__img-2 {
  position: absolute;
}

.nav__close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.nav__img-1 {
  width: 80px;
  top: 11rem;
  right: 0.75rem;
}

.nav__img-2 {
  width: 60px;
  top: 28rem;
  left: 6rem;
}

/* Show Menu */
.show-menu {
  right: 0;
}

/* Add Blur Header */
.blur-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: hsla(140, 35%, 96%, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  top: 0;
  left: 0;
  z-index: -1;
}

/* Active Link */
.active-link {
  color: var(--accent-green);
}

/*=============== HOME ===============*/
.home {
  position: relative;
  padding-top: 6.5rem;
}

.home__container {
  row-gap: 2rem;
}

/* Background Slider Styles */
.home__bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.home__bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.home__bg-slide.active {
  opacity: 1;
}

/* Slider Dots */
.home__bg-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
}

.home__bg-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.home__bg-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.home__bg-dot.active {
  background-color: #fff;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.home__bg-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.home__bg-dot.active {
  background-color: #fff;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.home__bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: brightness(0.5) blur(1px);
}

.home__bg-slide.active {
  opacity: 1;
}

.home__bg,
.home__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home__bg {
  object-fit: cover;
  object-position: center;
}

.home__shadow {
  background: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.0) 0%,
    hsla(140, 45%, 22%, 0.35) 55%,
    hsl(0, 0%, 100%) 100%
  );
}

.home__data {
  position: relative;
  text-align: center;
}

.home,
.home h1,
.home h2,
.home h3,
.home h4,
.home .home__location span,
.home .home__social a {
  color: hsl(0, 0%, 100%);
}

.home__location span {
  color: hsl(0, 0%, 100%);
  font-size: var(--small-font-size);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.home__description {
  color: hsl(0, 0%, 100%);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.home__bread {
  width: 50px;
  position: absolute;
  top: 15rem;
  left: 4rem;
}

.home__image {
  max-width: 400px;
  justify-self: center;
}

.home__img {
  rotate: 15deg;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(5px 10px 15px rgba(0, 0, 0, 0.3));
}

.home__footer,
.home__location,
.home__social {
  display: flex;
}

.home__footer {
  justify-content: space-between;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

.home__location {
  align-items: center;
  column-gap: 0.5rem;
}

.home__location i {
  font-size: 1.5rem;
  color: var(--accent-green);
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.home__location span {
  color: var(--title-color);
  font-size: var(--small-font-size);
}

.home__social {
  column-gap: 1rem;
}

.home__social a {
  color: var(--title-color);
  font-size: 1.5rem;
  transition: all 0.4s;
  display: inline-block;
}

.home__social a:hover {
  color: var(--accent-green);
  transform: scale(1.2);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  color: white;
  font-weight: var(--font-semi-bold);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(139, 195, 74, 0.3);
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.button:hover::before {
  left: 100%;
}

.button:hover {
  background: linear-gradient(135deg, var(--first-color-alt) 0%, var(--first-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
  color: white;
}

/*=============== NEW ===============*/
.new {
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
}

.new__container {
  padding-top: 1.5rem;
  row-gap: 3.5rem;
}

.new__content {
  row-gap: 2rem;
}

.new__card {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  padding: 1rem;
  background-color: var(--container-color);
  border-radius: 1rem;
  box-shadow: 0 4px 10px hsla(0, 0%, 0%, 0.06);
  transform: translateY(0) scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.new__card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.new__card:hover::after {
  opacity: 1;
}

.new__card:nth-child(2) img {
  order: -1;
}

.new__card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 14px 30px hsla(0, 0%, 0%, 0.16);
  background-color: hsl(140, 40%, 99%);
}

.new__card:hover .new__img {
  transform: translateY(-6px) rotate(-4deg);
}

.new__img {
  width: 150px;
  transition: transform 0.35s ease;
}

.new__title {
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  color: var(--accent-green);
  margin-bottom: 0.5rem;
}

.new__description {
  font-size: var(--small-font-size);
}

.new__button {
  justify-self: center;
}

/*=============== ABOUT ===============*/
.about {
  background: linear-gradient(180deg, var(--container-color) 0%, var(--body-color) 100%);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about__container {
  row-gap: 4rem;
  position: relative;
  z-index: 1;
}

.about__data {
  position: relative;
  text-align: center;
}

.about__data .section__title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about__data .section__title::after {
  margin: 10px auto 0;
}

.about__description {
  margin-bottom: 3rem;
  line-height: 1.8;
  color: var(--text-color);
  font-size: 1.05rem;
  position: relative;
  padding: 1.5rem;
  background: var(--body-color);
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about__bread {
  width: 60px;
  position: absolute;
  bottom: 1rem;
  right: 0;
  opacity: 0.8;
  transition: all 0.4s ease;
}

.about__bread:hover {
  transform: rotate(15deg) scale(1.1);
  opacity: 1;
}

.about__img {
  width: 320px;
  justify-self: center;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__img:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
}

/* About Features - Modern Cards */
.about__features {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  padding: 1rem 1.5rem;
  background: var(--body-color);
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about__feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--title-color), var(--accent-green));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.about__feature:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about__feature:hover::before {
  transform: scaleY(1);
}

.about__feature i {
  color: var(--title-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.about__feature:hover i {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--title-color) 0%, var(--accent-green) 100%);
  color: white;
}

.about__feature span {
  font-weight: 500;
}

/* Mission/Vision Cards */
.about__mission-vision {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.about__mv-card {
  background: var(--body-color);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.about__mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--title-color), var(--accent-green));
}

.about__mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about__mv-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--title-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about__mv-card h3 i {
  color: var(--first-color);
}

.about__mv-card p {
  color: var(--text-color);
  line-height: 1.7;
}

/* Why Choose Us - Reverse Layout */
#why-choose-us {
  background: var(--body-color);
}

#why-choose-us .about__container {
  direction: rtl;
}

#why-choose-us .about__container > * {
  direction: ltr;
}

#why-choose-us .about__data {
  text-align: left;
}

#why-choose-us .section__title {
  text-align: left;
}

#why-choose-us .section__title::after {
  margin: 10px 0 0;
}

#why-choose-us .about__bread {
  right: auto;
  left: 0;
}

/* Featured Products Section */
.new__card {
  background: var(--body-color);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.new__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.new__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--title-color), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.new__card:hover::before {
  transform: scaleX(1);
}

.new__data {
  padding: 1.5rem;
}

.new__title {
  font-size: 1.25rem;
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.new__description {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.new__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.new__card:hover .new__img {
  transform: scale(1.05);
}

.new__button {
  justify-self: center;
  margin-top: 1rem;
}

/* Responsive adjustments */
@media screen and (min-width: 768px) {
  .about__mission-vision {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about__description {
    font-size: 1.125rem;
  }
  
  .about__features {
    gap: 1.25rem;
  }
  
  .about__feature {
    padding: 1.25rem 2rem;
  }
  
  .about__img {
    width: 400px;
  }
  
  .about__bread {
    width: 80px;
  }
}

/*=============== FAVORITES ===============*/
.favorite {
  background: linear-gradient(180deg, var(--body-color) 0%, hsl(140, 35%, 95%) 50%, var(--body-color) 100%);
}

.favorite__container {
  padding-top: 3.5rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem 1.5rem;
}

.favorite__card {
  position: relative;
  background-color: var(--container-color);
  box-shadow: 0 12px 25px hsla(0, 0%, 0%, 0.3);
  padding: 6.5rem 1rem 1.25rem;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  overflow: hidden;
}

.favorite__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-green), var(--first-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.favorite__card:hover::before {
  transform: scaleX(1);
}

.favorite__card:hover {
  border-color: var(--accent-green);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.25);
}

.favorite__img {
  width: 120px;
  position: absolute;
  top: -2rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.favorite__title {
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  color: var(--accent-green);
}

.favorite__subtitle {
  display: block;
  margin-bottom: 0.75rem;
}

.favorite__price {
  font-size: var(--normal-font-size);
  font-family: var(--second-font);
}

.favorite__button {
  padding: 0.25rem;
  font-size: 1.25rem;
  position: absolute;
  bottom: 1.25rem;
  right: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.favorite__button:hover {
  background-color: var(--accent-green);
  color: white;
  transform: scale(1.1);
}

/* Product cards navigate on click; keep the icon decorative */
.favorite__card-link .favorite__button {
  pointer-events: none;
}

/*=============== SCROLL BAR ===============*/
.visit__container {
  position: relative;
  padding-block: 3rem;
}

.visit__bg,
.visit__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.visit__bg {
  object-fit: cover;
  object-position: center;
}

.visit__shadow {
  background: linear-gradient(
    180deg,
    hsl(0, 0%, 100%) 0%,
    hsla(140, 45%, 22%, 0.2) 50%,
    hsl(0, 0%, 100%) 100%
  );
}

.visit__data {
  text-align: center;
}

.visit__description {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

/*=============== FOOTER ===============*/
.footer {
  padding-block: 3rem 2rem;
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-green), var(--first-color));
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.footer::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 195, 74, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/*=============== CONTACT PAGE ===============*/
/* Enhanced Hero Section */
.contact-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 30%);
  pointer-events: none;
}

.contact-hero::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}

/* Decorative shapes */
.contact-hero .home__data {
  position: relative;
  z-index: 1;
}

.contact-hero .home__data::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 4s ease-in-out infinite;
}

/* Contact Hero Title */
.contact-hero__title {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Decorative background elements */
.contact-hero .home__image {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.contact__container {
  display: grid;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

/* Decorative background elements */
.contact__container::before,
.contact__container::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
}

.contact__container::before {
  width: 300px;
  height: 300px;
  background: var(--first-color);
  top: -50px;
  right: -100px;
}

.contact__container::after {
  width: 200px;
  height: 200px;
  background: var(--accent-green);
  bottom: 50px;
  left: -50px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__info .section__title {
  text-align: left;
  position: relative;
}

.contact__info .section__title::after {
  margin: 10px 0 0;
}

.contact__description {
  color: var(--text-color);
  line-height: 1.6;
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.contact__card {
  background: var(--container-color);
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact__card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact__card:hover::before {
  transform: scaleX(1);
}

.contact__card:hover::after {
  opacity: 1;
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border-color: var(--first-color);
}

.contact__card i {
  font-size: 2rem;
  color: var(--first-color);
  margin-bottom: 0.75rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.contact__card:hover i {
  transform: scale(1.1);
  color: var(--accent-green);
}

.contact__card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.contact__card p {
  font-size: 0.875rem;
  color: var(--text-color);
}

.contact__social {
  margin-top: 1rem;
}

.contact__social h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--title-color);
}

.contact__social-links {
  display: flex;
  gap: 1rem;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--container-color);
  color: var(--title-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.contact__social-link:hover {
  background: var(--first-color);
  color: white;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.contact__form-section {
  background: var(--body-color);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid hsla(150, 10%, 24%, 0.08);
  position: relative;
  overflow: hidden;
}

.contact__form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-green));
  border-radius: 1.5rem 1.5rem 0 0;
}

.contact__form-section::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: var(--first-color);
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}

.contact__form-section .section__title {
  margin-bottom: 1.5rem;
  text-align: left;
}

.contact__form-section .section__title::after {
  margin: 10px 0 0;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact__form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--title-color);
}

.contact__form-input {
  padding: 0.875rem 1rem;
  border: 2px solid hsla(150, 10%, 24%, 0.15);
  border-radius: 0.75rem;
  font-size: 1rem;
  color: var(--title-color);
  background: var(--body-color);
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
}

.contact__form-input:focus {
  outline: none;
  border-color: var(--first-color);
  box-shadow: 0 0 0 4px rgba(255, 159, 67, 0.15), 0 4px 15px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.contact__form-input::placeholder {
  color: var(--text-color-light);
  transition: all 0.3s ease;
}

.contact__form-input:focus::placeholder {
  opacity: 0.6;
}

/* Input validation styles */
.contact__form-input:valid:not(:placeholder-shown) {
  border-color: var(--accent-green);
}

.contact__form-input:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #e74c3c;
}

/* Form success message */
.contact__form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--container-color) 0%, #e8f5e9 100%);
  border-radius: 1rem;
  animation: fadeInUp 0.5s ease-out;
}

.contact__form-success.show {
  display: block;
}

.contact__form-success i {
  font-size: 4rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
}

.contact__form-success h3 {
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.contact__form-success p {
  color: var(--text-color);
}

/* Form loading state */
.contact__form-button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.contact__form-button.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
}

.contact__form-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.contact__form-button:hover::before {
  left: 100%;
}

.contact__form-button:hover {
  background: linear-gradient(135deg, var(--first-color-alt) 0%, var(--first-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
}

.contact__form-button:active {
  transform: translateY(-1px);
}

.contact__form-button i {
  transition: transform 0.3s ease;
}

.contact__form-button:hover i {
  transform: translateX(4px) translateY(-2px);
}



/* Map Section */
.map {
  padding-bottom: 4rem;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, var(--body-color) 100%);
}

.map__container .section__title {
  text-align: center;
  margin-bottom: 2rem;
}

.map__wrapper {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
}

.map__wrapper:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.map__wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--first-color);
  border-radius: 1.5rem;
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.map__wrapper:hover::before {
  border-color: var(--accent-green);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.map__iframe {
  display: block;
  transition: transform 0.3s ease;
  filter: grayscale(20%);
}

.map__wrapper:hover .map__iframe {
  transform: scale(1.01);
  filter: grayscale(0%);
}

.map__wrapper:hover .map__iframe {
  transform: scale(1.01);
}

/* CTA Section */
.cta {
  padding: 4rem 0;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--first-color);
  border-radius: 50%;
  opacity: 0.05;
  transform: translateY(-50%);
}

.cta::after {
  content: '';
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 80px;
  height: 80px;
  background: var(--accent-green);
  border-radius: 50%;
  opacity: 0.05;
}

.cta__container {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.cta__container::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: ctaShine 3s infinite linear;
}

.cta__container::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

@keyframes ctaShine {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
}

.cta__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: rgba(255,255,255,0.5);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.cta__description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta__button {
  background: white;
  color: var(--first-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.cta__button:hover::before {
  left: 100%;
}

.cta__button:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta__button:hover {
  background: var(--title-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Form Row */
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media screen and (min-width: 576px) {
  .contact__form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Home Section for Contact Page */
.home__bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.home__bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.home__bg-slide.active {
  opacity: 1;
}

/* Enhanced home section for contact page */
.home .home__container {
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.home .home__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.home .home__title span {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home .button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  color: white;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
}

.home .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 159, 67, 0.4);
}

.home .button i {
  transition: transform 0.3s ease;
}

.home .button:hover i {
  transform: translateX(4px);
}

.home__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsla(150, 10%, 24%, 0.1);
}

.home__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--title-color);
  font-weight: 500;
}

.home__location i {
  color: var(--first-color);
}

.home__social {
  display: flex;
  gap: 0.75rem;
}

.home__social-link {
  font-size: 1.5rem;
  color: var(--title-color);
  transition: all 0.3s ease;
}

.home__social-link:hover {
  color: var(--first-color);
  transform: translateY(-3px);
}

@media screen and (min-width: 768px) {
  .home .home__title {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 992px) {
  .home .home__title {
    font-size: 4.5rem;
  }
}

/* About Page Hero Enhancement */
.about .home {
  background: linear-gradient(135deg, var(--container-color) 0%, var(--body-color) 100%);
  position: relative;
  overflow: hidden;
}

.about .home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 80% 20%, rgba(255, 159, 67, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(139, 195, 74, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

.about .home__title {
  background: linear-gradient(135deg, var(--title-color) 0%, var(--first-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .home__shadow {
  display: none;
}

.about .home__bg-slider {
  display: none;
}

@media screen and (min-width: 992px) {
  .home .home__title {
    font-size: 4.5rem;
  }
}

.home__img-title {
  width: 50px;
  vertical-align: middle;
  margin-left: 8px;
}

.home__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  border: 2px solid var(--first-color);
  border-radius: 50%;
  opacity: 0.2;
}

.home__subcircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  background: var(--first-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media screen and (min-width: 768px) {
  .contact__container {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 3rem;
  }
  
  .contact__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact__info {
    position: sticky;
    top: 100px;
  }
}

@media screen and (min-width: 992px) {
  .contact-hero__title {
    font-size: 3.5rem;
  }
  
  .contact__form-section {
    padding: 3rem;
  }
  
  .contact__container {
    gap: 4rem;
  }
  
  .contact__card {
    padding: 2rem;
  }
  
  .contact__card i {
    font-size: 2.5rem;
  }
}

.footer__container {
  position: relative;
  row-gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__content {
  position: relative;
  z-index: 1;
}

.footer__logo {
  display: inline-block;
  color: var(--first-color);
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  font-weight: 700;
  position: relative;
}

.footer__logo::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

.footer__logo:hover {
  color: var(--first-color-alt);
  transform: scale(1.02);
}

.footer__logo:hover::after {
  width: 100%;
}

.footer__logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 0.5rem;
}

.footer__description {
  color: var(--text-color);
  line-height: 1.6;
  margin-top: 1rem;
  padding-right: 1rem;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1.25rem;
  color: var(--title-color);
  position: relative;
  display: inline-block;
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--title-color);
  border-radius: 2px;
}

.footer__list {
  display: grid;
  row-gap: 0.75rem;
    
}

.footer__link {
  color: var(--text-color);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer__link:hover {
  color: var(--first-color);
  transform: translateX(5px);
}

.footer__info {
  font-style: normal;
}

.footer__social {
  display: flex;
  column-gap: 1rem;
}

.footer__social a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--container-color);
  position: relative;
  overflow: hidden;
}

.footer__social a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer__social a:hover {
  color: white;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 4px 15px rgba(255, 159, 67, 0.3);
}

.footer__social a:hover::before {
  opacity: 1;
}

.footer__social a i {
  position: relative;
  z-index: 1;
}

.footer__img-1,
.footer__img-2 {
  position: absolute;
  opacity: 0.6;
  transition: all 0.4s ease;
}

.footer__img-1 {
  width: 60px;
  top: 2.5rem;
  right: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.footer__img-2 {
  width: 70px;
  top: 20rem;
  left: 9rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.footer__img-1:hover,
.footer__img-2:hover {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
}

.footer__copy {
  display: block;
  margin-top: 6rem;
  text-align: center;
  font-size: var(--small-font-size);
  padding: 1.5rem 0;
  border-top: 1px solid hsla(150, 10%, 24%, 0.1);
  position: relative;
}

.footer__copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--title-color), var(--accent-green));
  border-radius: 2px;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: hsl(140, 25%, 92%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(140, 25%, 78%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(140, 25%, 68%);
}

/*=============== FLOATING CHAT BUTTONS ===============*/
.floating-chat {
  position: fixed;
  bottom: 90px;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 999;
}


.floating-chat-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.floating-chat-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.floating-chat-btn:hover::before {
  transform: scale(1);
}

.floating-chat-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.floating-chat-btn svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}


.floating-chat-btn:hover {
  animation: none;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.floating-chat-btn.whatsapp {
  background: #25d366;
}

.floating-chat-btn.whatsapp:hover {
  background: #1da851;
}

.floating-chat-btn.viber {
  background: #7360f2;
}

.floating-chat-btn.viber:hover {
  background: #5b4dd6;
}

@media screen and (min-width: 1150px) {
  .floating-chat {
    right: 3rem;
    bottom: 100px;
  }
}

/*=============== BREAKPOINTS ===============*/
/* Fixed Header Spacing & Mobile */
@media screen and (max-width: 992px) {
  html, body {
    overflow-x: hidden;
  }
  
  body {
    padding-top: 80px;
  }
  
  .home, .page-header, .hero {
    padding-top: 80px !important;
    margin-top: 0 !important;
  }
  
  .section {
    padding-top: 4rem !important;
  }
  
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* For Small Devices */
@media screen and (max-width: 480px) {
  .container {
    padding-inline: 1rem;
  }
  
  .section {
    padding-block: 3rem 1rem;
  }
  
  .nav__toggle {
    width: 3.25rem !important;
    height: 3.25rem !important;
  }
}


/* For Small Devices */
@media screen and (max-width: 340px) {
  .container {
    padding-inline: 0.75rem;
  }

  .home__title {
    font-size: 2.5rem;
  }
  .home__footer {
    flex-direction: column;
    row-gap: 2rem;
  }

  .new__content {
    grid-template-columns: 200px;
    justify-content: center;
  }
  .new__card {
    flex-direction: column;
    row-gap: 1rem;
    text-align: center;
  }
  .new__card:nth-child(2) img {
    order: initial;
  }

  .favorite__container {
    grid-template-columns: 180px;
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: max-content;
  }
}

@media screen and (min-width: 450px) {
  .footer__content {
    grid-template-columns: repeat(2, max-content);
    gap: 4rem 3rem;
  }
}

/* For Medium Devices */
@media screen and (min-width: 576px) {
  .nav__menu {
    width: 50%;
  }

  .home__container,
  .new__content,
  .about__container,
  .visit__content {
    grid-template-columns: 350px;
    justify-content: center;
  }

  .favorite__container {
    grid-template-columns: repeat(2, 180px);
    justify-content: center;
  }

  .footer__content {
    grid-template-columns: repeat(3, max-content);
  }
  .footer__img-2 {
    top: 16rem;
  }
}

@media screen and (min-width: 768px) {
  .home {
    padding-top: 3rem;
  }
  .home__container {
    grid-template-columns: repeat(2, 350px);
    align-items: center;
  }
  .home__data {
    text-align: initial;
  }
  .home__footer {
    grid-column: 1 / 3;
  }

  .about__container {
    grid-template-columns: repeat(2, 350px);
    align-items: center;
  }
  .about__data {
    order: 1;
  }
  .about__data,
  .about__data .section__title {
    text-align: initial;
  }

  .favorite__container {
    grid-template-columns: repeat(3, 180px);
  }

  .footer__container {
    grid-template-columns: repeat(2, max-content);
    justify-content: space-between;
  }
  .footer__img-1 {
    top: 6rem;
  }
  .footer__img-2 {
    top: 8rem;
  }
}

/* For Large Devices */
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }

  .section {
    padding-block: 7rem 2rem;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
  }
  .nav__toggle,
  .nav__close,
  .nav__img-1,
  .nav__img-2 {
    display: none;
  }
  .nav__menu {
    width: initial;
  }
  .nav__list {
    flex-direction: row;
    column-gap: 4rem;
  }

  /* Dropdown menu positioning for desktop */
  .nav__dropdown-menu {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    text-align: center;
  }

  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown.active .nav__dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }

  .nav__dropdown-link {
    text-align: center;
  }

  .home__container {
    grid-template-columns: 470px 550px;
    column-gap: 3rem;
  }
  .home__title {
    margin-bottom: 2rem;
  }
  .home__bread {
    width: 80px;
    left: 18rem;
  }
  .home__image {
    max-width: initial;
    width: 550px;
  }
  .home__location i {
    font-size: 2rem;
  }
  .home__location span {
    font-size: var(--normal-font-size);
  }
  .home__social {
    column-gap: 1.5rem;
  }

  .new__container {
    padding-top: 4rem;
  }
  .new__content {
    grid-template-columns: repeat(3, 270px);
    column-gap: 5.5rem;
  }
  .new__card {
    flex-direction: column;
    row-gap: 2rem;
    text-align: center;
  }
  .new__title {
    font-size: var(--h1-font-size);
  }
  .new__description {
    font-size: var(--normal-font-size);
    padding-inline: 1rem;
  }
  .new__img {
    width: 250px;
  }

  .about__container {
    grid-template-columns: 450px 430px;
    column-gap: 7rem;
  }
  .about__img {
    width: 450px;
  }
  .about__bread {
    width: 90px;
    bottom: -3rem;
    right: 4rem;
  }

  .favorite__container {
    padding-top: 5.5rem;
    grid-template-columns: repeat(3, 240px);
    gap: 5.5rem 2rem;
  }
  .favorite__card {
    padding: 9.75rem 1.5rem 2rem;
  }
  .favorite__img {
    width: 180px;
    top: -3rem;
  }
  .favorite__price {
    font-size: var(--h3-font-size);
  }
  .favorite__button {
    font-size: 1.5rem;
    bottom: 2rem;
    right: 1.5rem;
  }

  .visit__container {
    padding-block: 4rem;
  }
  .visit__content {
    grid-template-columns: 480px;
  }

  .footer {
    padding-block: 5rem 3rem;
  }
  .footer__logo,
  .footer__title {
    margin-bottom: 1.5em;
  }
  .footer__content {
    column-gap: 4.5rem;
  }
  .footer__social {
    column-gap: 1.5rem;
  }
  .footer__img-1 {
    width: 90px;
    right: initial;
    left: 15rem;
  }
  .footer__img-2 {
    width: 90px;
    left: initial;
    right: 7rem;
  }
  .footer__copy {
    margin-top: 8rem;
  }

  .scrollup {
    right: 3rem;
  }
}

/*=============== STATISTICS SECTION ===============*/
.stats {
  padding-block: 5rem 3rem;
  background: linear-gradient(135deg, var(--title-color) 0%, hsl(150, 30%, 20%) 100%);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 50%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.stats__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.stats__content {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.stats__content:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-green);
}

.stats__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
  transition: all 0.4s ease;
}

.stats__content:hover .stats__icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.stats__number {
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stats__description {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--small-font-size);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*=============== CORE VALUES SECTION ===============*/
.values {
  padding-block: 5rem 3rem;
  background: var(--body-color);
}

.values__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.values__card {
  background: var(--body-color);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.values__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.values__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 195, 74, 0.2);
}

.values__card:hover::before {
  transform: scaleX(1);
}

.values__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--container-color) 0%, hsla(28, 88%, 56%, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--title-color);
  transition: all 0.4s ease;
}

.values__card:hover .values__icon {
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

.values__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.values__description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.7;
}

/*=============== TIMELINE SECTION ===============*/
.timeline {
  padding-block: 5rem 3rem;
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 50%, var(--body-color) 100%);
}

.timeline__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline__line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--first-color), var(--accent-green));
  border-radius: 2px;
}

.timeline__item {
  position: relative;
  width: 50%;
  padding: 1.5rem;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline__item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline__item:nth-child(odd) {
  left: 0;
  padding-right: 3rem;
  text-align: right;
}

.timeline__item:nth-child(even) {
  left: 50%;
  padding-left: 3rem;
  text-align: left;
  transform: translateX(30px);
}

.timeline__item:nth-child(even).visible {
  transform: translateX(0);
}

.timeline__dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--first-color);
  border: 4px solid var(--body-color);
  border-radius: 50%;
  top: 2rem;
  box-shadow: 0 0 0 4px var(--first-color);
  transition: all 0.4s ease;
}

.timeline__item:nth-child(odd) .timeline__dot {
  right: -10px;
}

.timeline__item:nth-child(even) .timeline__dot {
  left: -10px;
}

.timeline__item:hover .timeline__dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 8px rgba(255, 140, 66, 0.2);
}

.timeline__year {
  display: inline-block;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 2rem;
  font-size: var(--small-font-size);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.timeline__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.timeline__description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.7;
}

/*=============== TESTIMONIALS SECTION ===============*/
.testimonials {
  padding-block: 5rem 3rem;
  background: var(--body-color);
  position: relative;
}

.testimonials__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonials__card {
  background: var(--body-color);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.testimonials__card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  font-family: var(--second-font);
  color: var(--first-color);
  opacity: 0.2;
  line-height: 1;
}

.testimonials__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-green);
}

.testimonials__quote {
  color: var(--text-color);
  font-size: var(--normal-font-size);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonials__avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--first-color), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonials__info h4 {
  font-size: var(--normal-font-size);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.testimonials__info span {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

.testimonials__rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.testimonials__rating i {
  color: var(--first-color);
  font-size: 0.875rem;
}

/*=============== TEAM SECTION ===============*/
.team {
  padding-block: 5rem 3rem;
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
}

.team__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.team__card {
  background: var(--body-color);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: center;
}

.team__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team__img-container {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--container-color) 0%, hsla(28, 88%, 56%, 0.1) 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.team__img-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--first-color), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  transition: all 0.4s ease;
}

.team__card:hover .team__img-placeholder {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team__data {
  padding: 1.5rem;
}

.team__name {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.team__role {
  font-size: var(--small-font-size);
  color: var(--first-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team__bio {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team__social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.team__social-link {
  width: 36px;
  height: 36px;
  background: var(--container-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--title-color);
  transition: all 0.3s ease;
}

.team__social-link:hover {
  background: var(--first-color);
  color: white;
  transform: translateY(-3px);
}

/*=============== SECTION DIVIDERS ===============*/
.section-divider {
  width: 100%;
  height: 40px;
  position: relative;
  overflow: hidden;
}

.section-divider--wave {
  background: transparent;
}

.section-divider--wave svg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=============== SERVICES SHOWCASE ===============*/
.services-showcase {
  padding-block: 5rem 3rem;
  background: linear-gradient(180deg, var(--body-color) 0%, var(--container-color) 100%);
}

.services-showcase__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.services-showcase__card {
  background: var(--body-color);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.services-showcase__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services-showcase__image {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(135deg, var(--container-color) 0%, hsla(28, 88%, 56%, 0.1) 100%);
}

.services-showcase__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services-showcase__card:hover .services-showcase__image img {
  transform: scale(1.1);
}

.services-showcase__icon-overlay {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(255, 140, 66, 0.4);
}

.services-showcase__content {
  padding: 1.5rem;
}

.services-showcase__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.services-showcase__description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.services-showcase__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.services-showcase__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--container-color);
  color: var(--text-color);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.services-showcase__tag i {
  color: var(--accent-green);
  font-size: 0.875rem;
}

.services-showcase__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--first-color);
  font-weight: 600;
  font-size: var(--small-font-size);
  transition: all 0.3s ease;
}

.services-showcase__link:hover {
  gap: 0.75rem;
  color: var(--first-color-alt);
}

/*=============== WHY CHOOSE US ===============*/
.why-choose {
  padding-block: 5rem 3rem;
  background: var(--body-color);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, hsla(28, 88%, 56%, 0.05) 100%);
  pointer-events: none;
}

.why-choose__container {
  position: relative;
  z-index: 1;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-choose__card {
  background: var(--body-color);
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.why-choose__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--first-color), var(--accent-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-choose__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(139, 195, 74, 0.2);
}

.why-choose__card:hover::before {
  transform: scaleX(1);
}

.why-choose__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--first-color) 0%, var(--first-color-alt) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  color: white;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.why-choose__card:hover .why-choose__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(255, 140, 66, 0.4);
}

.why-choose__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.why-choose__description {
  color: var(--text-color);
  font-size: var(--small-font-size);
  line-height: 1.7;
}

/*=============== RESPONSIVE STATS ===============*/
@media screen and (min-width: 768px) {
  .stats__container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .values__container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .testimonials__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team__container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .timeline__item {
    padding: 2rem;
  }
  
  .timeline__item:nth-child(odd) {
    padding-right: 4rem;
  }
  
  .timeline__item:nth-child(even) {
    padding-left: 4rem;
  }
  
  .services-showcase__container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (min-width: 1150px) {
  .stats {
    padding-block: 6rem 4rem;
  }
  
  .values,
  .timeline,
  .testimonials,
  .team,
  .services-showcase,
  .why-choose {
    padding-block: 6rem 4rem;
  }
  
  .values__card {
    padding: 2.5rem;
  }
  
  .testimonials__card {
    padding: 2.5rem;
  }
  
  .services-showcase__container {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .why-choose__card {
    padding: 2.5rem;
  }
}

