/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');
@import url('https://unpkg.com/remixicon@3.5.0/fonts/remixicon.css');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;

  /*========== Colors ==========*/
  /* Color mode HSL(hue, saturation, lightness) */
  --primary-color: hsl(142, 69%, 25%); /* Forest Green */
  --primary-color-alt: hsl(142, 69%, 20%);
  --secondary-color: hsl(45, 100%, 85%); /* Soft Gold */
  --accent-color: hsl(25, 83%, 53%); /* Warm Orange */
  --title-color: hsl(142, 12%, 15%);
  --text-color: hsl(142, 4%, 35%);
  --text-color-light: hsl(142, 4%, 55%);
  --body-color: hsl(0, 0%, 100%);
  --container-color: hsl(0, 0%, 100%);
  --white-color: hsl(0, 0%, 100%);
  --black-color: hsl(0, 0%, 0%);
  --shadow-color: hsla(142, 12%, 15%, 0.15);
  --border-color: hsl(142, 12%, 90%);

  /*========== Font and typography ==========*/
  --body-font: 'Inter', sans-serif;
  --title-font: 'Playfair Display', serif;

  --biggest-font-size: 3.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;

  /*========== Transitions ==========*/
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* Responsive typography */
@media screen and (max-width: 1150px) {
  :root {
    --biggest-font-size: 2.75rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3 {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 5rem 3rem;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__subtitle {
  display: block;
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: var(--h2-font-size);
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: var(--font-medium);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--small-font-size);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  color: var(--white-color);
  box-shadow: 0 8px 32px hsla(142, 69%, 25%, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px hsla(142, 69%, 25%, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn--secondary:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

/*=============== PRELOADER ===============*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  animation: hidePreloader 0.8s ease-in-out forwards;
}

@keyframes hidePreloader {
  0%, 60% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.leaf-loader {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.leaf {
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50% 0;
  animation: leafFloat 1.5s ease-in-out infinite;
}

.leaf:nth-child(2) {
  animation-delay: 0.2s;
}

.leaf:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes leafFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(180deg); }
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #083400f0;
  z-index: var(--z-fixed);
  transition: var(--transition);
}

.header.scroll-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px var(--shadow-color);
}

.header.scroll-header .nav__logo img {
  content: url('../../data/Logo/Logo-Black Original.png');
}

.header.scroll-header .nav__link,
.header.scroll-header .nav__toggle span {
  color: var(--title-color);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;
  width: auto;
}

.nav__list {
  display: flex;
  gap: 2rem;
}

.nav__link {
  color: var(--white-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
  border: none;
  background: transparent;
  z-index: 1001;
  position: relative;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav__toggle span {
  width: 25px;
  height: 3px;
  background: var(--white-color);
  transition: var(--transition);
  border-radius: 2px;
  display: block;
}

.header.scroll-header .nav__toggle span {
  background: var(--title-color);
}

/* Hamburger animation for CSS-only solution */
.mobile-menu-checkbox:checked ~ .nav__toggle span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-checkbox:checked ~ .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-checkbox:checked ~ .nav__toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* CSS-only mobile menu solution */
.mobile-menu-checkbox {
  display: none;
}

/* Make sure toggle is visible on mobile */
@media screen and (max-width: 768px) {
  .nav__toggle {
    display: flex !important;
  }
}

.nav__close {
  display: none;
}

/*=============== HERO ===============*/
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: -1;
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 600px;
  color: var(--white-color);
  position: relative;
  z-index: 2;
  padding: 2rem;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-family: var(--title-font);
  margin-bottom: 1.5rem;
  color: var(--white-color);
  line-height: 1.1;

  font-weight: var(--font-bold);
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease forwards;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero__title-line:nth-child(2) {
  animation-delay: 0.2s;
}

.hero__description {
  font-size: var(--h3-font-size);
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.4s forwards;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.4);
  font-weight: var(--font-medium);
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-color);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
}

.hero__scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-color);
  font-size: var(--small-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero__scroll-arrow {
  width: 1px;
  height: 30px;
  background: var(--white-color);
  position: relative;
  animation: scrollArrow 2s ease-in-out infinite;
}

.hero__scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--white-color);
  border-bottom: 1px solid var(--white-color);
  transform: rotate(45deg);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/*=============== ABOUT PREVIEW ===============*/
.about-preview {
  background: var(--body-color);
}

.about-preview__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__content {
  padding-right: 2rem;
}

.about-preview__description {
  margin-bottom: 2rem;
  font-size: var(--h3-font-size);
  line-height: 1.6;
}

.about-preview__features {
  margin-bottom: 2.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature__content h3 {
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.about-preview__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.about-preview__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: var(--transition);
}

.about-preview__image:hover img {
  transform: scale(1.05);
}

/*=============== SERVICES PREVIEW ===============*/
.services-preview {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.service-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white-color);
  font-size: 2rem;
}

.service-card__title {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.service-card__description {
  color: var(--text-color-light);
  line-height: 1.6;
}

.services-preview__cta {
  text-align: center;
}

/*=============== GALLERY PREVIEW ===============*/
.gallery-preview {
  background: var(--body-color);
}

.gallery-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--white-color);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-item__overlay {
  transform: translateY(0);
}

.gallery-item__overlay h3 {
  color: var(--white-color);
  margin-bottom: 0.5rem;
}

.gallery-preview__cta {
  text-align: center;
}

/*=============== CTA SECTION ===============*/
.cta {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  color: var(--white-color);
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.cta__title {
  font-size: var(--h1-font-size);
  color: var(--white-color);
  margin-bottom: 1rem;
}

.cta__description {
  font-size: var(--h3-font-size);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/*=============== FOOTER ===============*/
.footer {
  background: var(--title-color);
  color: var(--white-color);
  padding-top: 4rem;
}

.footer__container {
  margin-bottom: 3rem;
}

.footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.footer__logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer__description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
}

.footer__title {
  margin-bottom: 1.5rem;
  color: var(--white-color);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer__contact-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.footer__contact-item a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer__contact-item a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
}

.footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-link {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__bottom-link:hover {
  color: var(--primary-color);
}

/*=============== RESPONSIVE ===============*/
@media screen and (max-width: 1150px) {
  .container {
    padding-inline: 1rem;
  }

  .section {
    padding-block: 4rem 2rem;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .about-preview__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-preview__content {
    padding-right: 0;
    text-align: center;
  }

  .about-preview__image {
    order: -1;
  }
}

@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white-color);
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -2px 0 20px var(--shadow-color);
    z-index: 1000;
    overflow-y: auto;
  }

  /* CSS-only menu toggle */
  .mobile-menu-checkbox:checked ~ .nav__menu {
    right: 0;
  }

  /* Legacy JavaScript support */
  .nav__menu.show-menu {
    right: 0 !important;
    transform: translateX(0) !important;
  }

  .nav__list {
    flex-direction: column;
    gap: 2rem;
  }

  .nav__link {
    color: var(--title-color);
    font-size: var(--h3-font-size);
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--title-color);
    cursor: pointer;
  }

  .nav__toggle {
    display: flex !important;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-preview__grid {
    grid-template-columns: 1fr;
  }

  .gallery-preview__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    height: 80vh;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__description {
    font-size: var(--normal-font-size);
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--smaller-font-size);
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .gallery-preview__grid {
    grid-template-columns: 1fr;
  }
}

/*=============== SCROLL ANIMATIONS ===============*/
.fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.animate {
  opacity: 1;
}

.slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.slide-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.slide-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.scale-up.animate {
  opacity: 1;
  transform: scale(1);
}

/*=============== UTILITIES ===============*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-none { display: none; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.cursor-pointer { cursor: pointer; }

.transition { transition: var(--transition); }
.transition-fast { transition: var(--transition-fast); }/*===
============ ABOUT PAGE STYLES ===============*/
.about-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.about-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.about-hero__container {
  position: relative;
  z-index: 1;
}

.about-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.about-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.about-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.about-content {
  background: var(--body-color);
}

.about-content__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content__description {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.about-content__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.about-content__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.about-content__image:hover img {
  transform: scale(1.05);
}

/*=============== MISSION VISION VALUES ===============*/
.mvv-section {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.mvv-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white-color);
  font-size: 2rem;
}

.mvv-card__title {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.mvv-card__description {
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== RESPONSIBILITY SECTION ===============*/
.responsibility {
  background: var(--body-color);
}

.responsibility__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.responsibility__description {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.responsibility__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.responsibility__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
  border-radius: 10px;
  transition: var(--transition);
}

.responsibility__feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px var(--shadow-color);
}

.responsibility__feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
}

.responsibility__feature span {
  font-weight: var(--font-medium);
  color: var(--title-color);
}

.responsibility__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.responsibility__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.responsibility__image:hover img {
  transform: scale(1.05);
}

/*=============== CLIENTS SECTION ===============*/
.clients {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.clients__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.client-card {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: var(--transition);
  min-height: 120px;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.client-card img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: var(--transition);
}

.client-card:hover img {
  filter: grayscale(0%);
}

.clients__text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.clients__text p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: var(--normal-font-size);
}

/*=============== ABOUT PAGE RESPONSIVE ===============*/
@media screen and (max-width: 1150px) {
  .about-content__container,
  .responsibility__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content__image,
  .responsibility__image {
    order: -1;
  }

  .responsibility__features {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .about-hero {
    height: 50vh;
  }

  .about-hero__title {
    font-size: var(--h2-font-size);
  }

  .about-hero__description {
    font-size: var(--normal-font-size);
  }

  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .clients__grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .client-card {
    padding: 1.5rem;
    min-height: 100px;
  }

  .client-card img {
    max-height: 60px;
  }
}

@media screen and (max-width: 480px) {
  .about-hero {
    height: 40vh;
  }

  .mvv-card,
  .client-card {
    padding: 1.5rem;
  }

  .responsibility__features {
    gap: 0.75rem;
  }

  .responsibility__feature {
    padding: 0.75rem;
  }
}/
*=============== SERVICES PAGE STYLES ===============*/
.services-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.services-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.services-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.services-hero__container {
  position: relative;
  z-index: 1;
}

.services-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.services-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.services-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.services-grid {
  background: var(--body-color);
}

.services__container {
  display: grid;
  gap: 3rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) .service-detail-card__content {
  direction: ltr;
}

.service-detail-card__image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.service-detail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-detail-card:hover .service-detail-card__image img {
  transform: scale(1.1);
}

.service-detail-card__content {
  padding: 2.5rem;
}

.service-detail-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-card__title {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.service-detail-card__description {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.service-detail-card__features {
  list-style: none;
}

.service-detail-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.service-detail-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.additional-services {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.additional-service {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: var(--transition);
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.additional-service i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-service h3 {
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.additional-service p {
  color: var(--text-color-light);
  font-size: var(--small-font-size);
}

/*=============== GALLERY PAGE STYLES ===============*/
.gallery-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.gallery-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.gallery-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.gallery-hero__container {
  position: relative;
  z-index: 1;
}

.gallery-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.gallery-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.gallery-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.gallery-filter {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
  padding: 2rem 0;
}

.gallery-filter__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 25px;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition);
  font-size: var(--small-font-size);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.gallery-main {
  background: var(--body-color);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery__item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__content {
  color: var(--white-color);
}

.gallery__content h3 {
  color: var(--white-color);
  margin-bottom: 0.5rem;
  font-size: var(--h3-font-size);
}

.gallery__content p {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.gallery__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-color);
  border-radius: 15px;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-medium);
}

/* Gallery Filter Animation */
.gallery__item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}

.gallery__item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/*=============== SERVICES & GALLERY RESPONSIVE ===============*/
@media screen and (max-width: 1150px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-detail-card:nth-child(even) {
    direction: ltr;
  }

  .service-detail-card__image {
    height: 250px;
  }

  .service-detail-card__content {
    padding: 2rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .services-hero,
  .gallery-hero {
    height: 50vh;
  }

  .services-hero__title,
  .gallery-hero__title {
    font-size: var(--h2-font-size);
  }

  .services-hero__description,
  .gallery-hero__description {
    font-size: var(--normal-font-size);
  }

  .service-detail-card__content {
    padding: 1.5rem;
  }

  .additional-services__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .additional-service {
    padding: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .gallery-filter__buttons {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: var(--smaller-font-size);
  }
}

@media screen and (max-width: 480px) {
  .services-hero,
  .gallery-hero {
    height: 40vh;
  }

  .service-detail-card__content {
    padding: 1rem;
  }

  .additional-service {
    padding: 1rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__overlay {
    padding: 1.5rem;
  }
}/*=
============== SERVICES PAGE STYLES ===============*/
.services-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.services-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.services-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.services-hero__container {
  position: relative;
  z-index: 1;
}

.services-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.services-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.services-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.services-grid {
  background: var(--body-color);
}

.services__container {
  display: grid;
  gap: 3rem;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
}

.service-detail-card:nth-child(even) {
  direction: rtl;
}

.service-detail-card:nth-child(even) .service-detail-card__content {
  direction: ltr;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.service-detail-card__image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.service-detail-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-detail-card:hover .service-detail-card__image img {
  transform: scale(1.1);
}

.service-detail-card__content {
  padding: 2.5rem;
}

.service-detail-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-card__title {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.service-detail-card__description {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.service-detail-card__features {
  list-style: none;
}

.service-detail-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.service-detail-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.additional-services {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.additional-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.additional-service {
  background: var(--white-color);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: var(--transition);
}

.additional-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.additional-service i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.additional-service h3 {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.additional-service p {
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== GALLERY PAGE STYLES ===============*/
.gallery-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.gallery-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.gallery-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.gallery-hero__container {
  position: relative;
  z-index: 1;
}

.gallery-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.gallery-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.gallery-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.gallery-filter {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
  padding: 2rem 0;
}

.gallery-filter__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  font-weight: var(--font-medium);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: var(--small-font-size);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px hsla(142, 69%, 25%, 0.3);
}

.gallery-main {
  background: var(--body-color);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery__item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--transition);
}

.gallery__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px var(--shadow-color);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: var(--transition);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__content {
  padding: 2rem;
  color: var(--white-color);
}

.gallery__content h3 {
  color: var(--white-color);
  margin-bottom: 0.5rem;
  font-size: var(--h3-font-size);
}

.gallery__content p {
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.gallery__category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--primary-color);
  border-radius: 15px;
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gallery Filter Animation */
.gallery__item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s ease;
}

.gallery__item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/*=============== RESPONSIVE STYLES FOR SERVICES & GALLERY ===============*/
@media screen and (max-width: 1150px) {
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-detail-card:nth-child(even) {
    direction: ltr;
  }

  .service-detail-card__image {
    order: -1;
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .services-hero,
  .gallery-hero {
    height: 50vh;
  }

  .services-hero__title,
  .gallery-hero__title {
    font-size: var(--h2-font-size);
  }

  .services-hero__description,
  .gallery-hero__description {
    font-size: var(--normal-font-size);
  }

  .service-detail-card__content {
    padding: 2rem;
  }

  .additional-services__grid {
    grid-template-columns: 1fr;
  }

  .gallery-filter__buttons {
    justify-content: center;
  }

  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: var(--smaller-font-size);
  }

  .gallery__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .services-hero,
  .gallery-hero {
    height: 40vh;
  }

  .service-detail-card__content {
    padding: 1.5rem;
  }

  .additional-service {
    padding: 1.5rem;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .gallery__content {
    padding: 1.5rem;
  }
}/*==
============= BONSAI PAGE STYLES ===============*/
.bonsai-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.bonsai-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.bonsai-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonsai-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.bonsai-hero__container {
  position: relative;
  z-index: 1;
}

.bonsai-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.bonsai-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.bonsai-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.bonsai-intro {
  background: var(--body-color);
}

.bonsai-intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bonsai-intro__description {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-color);
}

.bonsai-intro__features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.bonsai-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.bonsai-feature__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.bonsai-feature__content h3 {
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.bonsai-intro__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.bonsai-intro__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.bonsai-intro__image:hover img {
  transform: scale(1.05);
}

.bonsai-specialization {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.specialization__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.specialization-card {
  background: var(--white-color);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
}

.specialization-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.specialization-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white-color);
  font-size: 2rem;
}

.specialization-card__title {
  margin-bottom: 1.5rem;
  color: var(--title-color);
}

.specialization-card__description {
  color: var(--text-color);
  line-height: 1.6;
}

.bonsai-species {
  background: var(--body-color);
}

.species__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.species-card {
  background: var(--white-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
}

.species-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.species-card__image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.species-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.species-card:hover .species-card__image img {
  transform: scale(1.1);
}

.species-card__content {
  padding: 2rem;
}

.species-card__content h3 {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.species-card__content > p {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.species-card__features {
  list-style: none;
}

.species-card__features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.species-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: var(--font-bold);
}

.bonsai-care {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.bonsai-care__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.bonsai-care__description {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-color);
}

.care-services {
  display: grid;
  gap: 1.5rem;
}

.care-service {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white-color);
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: var(--transition);
}

.care-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.care-service i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.care-service h4 {
  margin-bottom: 0.5rem;
  color: var(--title-color);
}

.care-service p {
  color: var(--text-color);
  line-height: 1.6;
}

.bonsai-care__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.bonsai-care__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.bonsai-care__image:hover img {
  transform: scale(1.05);
}

.bonsai-benefits {
  background: var(--body-color);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px var(--shadow-color);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--shadow-color);
}

.benefit-card__icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white-color);
  font-size: 1.5rem;
}

.benefit-card h3 {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.benefit-card p {
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== CONTACT PAGE STYLES ===============*/
.contact-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.contact-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: -1;
}

.contact-hero__container {
  position: relative;
  z-index: 1;
}

.contact-hero__content {
  max-width: 600px;
  color: var(--white-color);
  text-align: center;
  margin: 0 auto;
}

.contact-hero__title {
  font-size: var(--h1-font-size);
  font-family: var(--title-font);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.contact-hero__description {
  font-size: var(--h3-font-size);
  opacity: 0.9;
}

.contact-info {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px var(--shadow-color);
}

.contact-card__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white-color);
  font-size: 2rem;
}

.contact-card__title {
  margin-bottom: 1rem;
  color: var(--title-color);
}

.contact-card__description {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  line-height: 1.6;
}

.contact-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: var(--font-medium);
  transition: var(--transition);
}

.contact-card__link:hover {
  color: var(--primary-color-alt);
  transform: translateX(5px);
}

.contact-form-section {
  background: var(--body-color);
}

.contact-form__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-form__description {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: var(--text-color);
}

.contact-form__benefits {
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-item i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.benefit-item span {
  color: var(--text-color);
}

.contact-form__form {
  background: var(--white-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  margin-bottom: 0.5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.form-input,
.form-select,
.form-textarea {
  padding: 1rem;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: var(--transition);
  background: var(--white-color);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px hsla(142, 69%, 25%, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  color: var(--text-color);
}

.form-checkbox input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
}

.form-checkbox input[type="checkbox"]:checked + .checkmark {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.form-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 1rem;
}

.map-section {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px var(--shadow-color);
}

.map-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-color-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  text-align: center;
}

.map-placeholder__content i {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.map-placeholder__content h3 {
  color: var(--white-color);
  margin-bottom: 1rem;
}

.map-placeholder__content p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.faq-section {
  background: var(--body-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white-color);
  border-radius: 15px;
  margin-bottom: 1rem;
  box-shadow: 0 5px 20px var(--shadow-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: linear-gradient(135deg, #f8fffe, #f0f9f7);
}

.faq-question h3 {
  color: var(--title-color);
  margin: 0;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
}

/*=============== RESPONSIVE STYLES FOR BONSAI & CONTACT ===============*/
@media screen and (max-width: 1150px) {
  .bonsai-intro__container,
  .bonsai-care__container,
  .contact-form__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .bonsai-intro__image,
  .bonsai-care__image {
    order: -1;
  }

  .specialization__grid {
    grid-template-columns: 1fr;
  }

  .species__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .bonsai-hero,
  .contact-hero {
    height: 50vh;
  }

  .bonsai-hero__title,
  .contact-hero__title {
    font-size: var(--h2-font-size);
  }

  .bonsai-hero__description,
  .contact-hero__description {
    font-size: var(--normal-font-size);
  }

  .specialization-card {
    padding: 2rem 1.5rem;
  }

  .species__grid {
    grid-template-columns: 1fr;
  }

  .benefits__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-info__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form__form {
    padding: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .bonsai-hero,
  .contact-hero {
    height: 40vh;
  }

  .specialization-card,
  .contact-card {
    padding: 1.5rem;
  }

  .species-card__content,
  .benefit-card {
    padding: 1.5rem;
  }

  .contact-form__form {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1.5rem;
  }

  .faq-answer {
    padding: 0 1.5rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.5rem 1rem;
  }
}