:root {
  /* SHADES */
  --primary__dark-5: #243e1a;
  --primary__dark-10: #1b2f13;
  --primary__dark-15: #0d170a;

  /* PRIMARY */
  --primary__color: #2d4e20;

  /* TINTS */
  --primary__light-5: #57714d;
  --primary__light-10: #96a790;
  --primary__light-15: #c0cabc;

  /* GRAYS */
  --primary__gray: #555;
  --dark__gray: #292929;
  --light__gray: #c4c4c4;

  /* PURE BLACK */
  --pure__black: #000;

  /* PURE WHITE */
  --pure__white: #fff;

  /*/////////////////// 

--- 01 TYPOGRAPHY SYSTEM
- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

===============================================

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
//////////////////////// */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark__gray);
  overflow-x: hidden;
}

html.no-scroll {
  overflow: hidden;
}

/* 
////////////////////////////
    GENERAL STYLES
///////////////////////////
 */
.primary__heading {
  font-family: "lora", serif;
  font-size: 5.2rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--primary__dark-10);
  letter-spacing: 1px;
  margin-bottom: 3.2rem;
  text-transform: uppercase;
}

.secondary__heading {
  font-family: "lora", serif;
  font-size: 3.6rem;
  font-weight: 500;
  text-transform: uppercase;
  word-spacing: 4px;
  letter-spacing: 1px;
  color: var(--primary__dark-10);
  font-weight: 600;
  margin-bottom: 3.2rem;
}

.subheading {
  font-size: 3rem;
  color: var(--primary__dark-15);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 0;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.section {
  padding: 9.6rem 3.2rem;
}

.btn:link,
.btn:visited {
  text-decoration: none;
  padding: 1.6rem 4.8rem;
  background-color: var(--primary__light-5);
  margin-right: 1.6rem;
  display: inline-block;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--primary__dark-15);
  /* outline: 3px solid var(--primary__light-5); */
  outline-offset: 5px;
  transition: all 0.4s;
  border: 3px solid transparent;
}

.btn:hover,
.btn:active {
  background-color: transparent;
  border: 3px solid var(--primary__light-5);
}

*:focus {
  outline: 0.3rem solid var(--primary__light-5);
}

.social__icon {
  height: 4rem;
  width: 4rem;
}

/* 
////////////////////////////
    HEADER SECTION
///////////////////////////
 */

.header {
  background: linear-gradient(135deg, var(--primary__light-15), #f8f9fa);
  padding: 0 3.2rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(45, 78, 32, 0.1);
  height: 9rem;
  overflow: visible;
}

.main__header {
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 4.8rem;
  height: 9rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: height 0.3s ease;
}

.main__nav {
  justify-self: flex-start;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.4rem;
  margin: 0;
  padding: 0;
}

.nav__link:link,
.nav__link:visited {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--primary__dark-10);
  padding: 1.2rem 1.6rem;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0.8rem;
  left: 1.6rem;
  right: 1.6rem;
  height: 2px;
  background-color: var(--primary__color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav__link:hover,
.nav__link:active,
.nav__link.active {
  color: var(--primary__color);
  transform: translateY(-2px);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.logo__box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  transition: transform 0.3s ease;
}

.logo__img {
  height: 7rem;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.social__links-box {
  justify-self: flex-end;
  align-self: center;
}

.social__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary__color);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social__link:hover {
  background: var(--primary__color);
  color: white;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social__icon {
  height: 2rem;
  width: 2rem;
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.nav__btn-small {
  display: none;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1001;
}

.small__screen-navIcon {
  height: 4.8rem;
  width: 4.8rem;
  color: var(--primary__dark-10);
  transition: all 0.3s ease;
}

.small__screen-navIcon[name="close-outline"] {
  display: none;
}

/* Sticky Header */
.sticky__header .header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 8rem;
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.sticky__header .main__header {
  height: 8rem;
}

.sticky__header .logo__img {
  height: 6.5rem;
}

/* Header on Scroll */
.header.scrolled {
  height: 8rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled .main__header {
  height: 8rem;
}

.header.scrolled .logo__img {
  height: 6.5rem;
}

/* 
////////////////////////////
    HERO SECTION
///////////////////////////
 */

.hero__section {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--primary__light-15) 100%);
  padding: 14rem 0 8rem;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.hero__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d4e20' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 0;
}

/* Add margin to the first section to prevent content from being hidden behind fixed header */
section:first-of-type {
  padding-top: 14rem;
}

.hero {
  max-width: 136rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6.4rem;
  padding: 0 4.8rem;
  position: relative;
  z-index: 1;
}

.hero__contents {
  animation: fadeInUp 1s ease-out;
}

.hero__label {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary__dark-10);
  display: inline-block;
  margin-bottom: 1.6rem;
  letter-spacing: 1.5px;
  position: relative;
  padding-left: 2.4rem;
}

.hero__label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 0.3rem;
  background-color: var(--primary__color);
  border-radius: 3px;
}

.primary__heading {
  font-family: "lora", serif;
  font-size: 5.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary__dark-10);
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
  text-transform: uppercase;
  position: relative;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__text {
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 4.8rem;
  color: var(--primary__dark-5);
  position: relative;
  animation: fadeInUp 1s ease-out 0.4s both;
  max-width: 90%;
}

.hero__cta {
  display: flex;
  gap: 2.4rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn--hero {
  padding: 1.6rem 4.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  box-shadow: 0 4px 15px rgba(45, 78, 32, 0.2);
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary__color), var(--primary__dark-5));
  color: white;
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 78, 32, 0.3);
  background: linear-gradient(135deg, var(--primary__dark-5), var(--primary__dark-10));
}

.hero__image-container {
  position: relative;
  animation: fadeIn 1s ease-out 0.4s both;
  perspective: 1000px;
}

.hero__image {
  background-image: url("./images/hero/hero-background.png");
  background-position: center;
  background-size: cover;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.hero__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(45, 78, 32, 0.1), transparent);
  z-index: 2;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateZ(20px);
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero__image-container:hover .hero__img {
  transform: translateZ(30px) scale(1.05);
}

.hero__img-small {
  display: none;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Adjust padding for mobile */
@media (max-width: 768px) {
  .hero__section,
  section:first-of-type {
    padding-top: 12rem;
    padding-bottom: 6.4rem;
  }
  
  .hero {
    grid-template-columns: 1fr;
    gap: 4.8rem;
    padding: 0 2.4rem;
  }
  
  .primary__heading {
    font-size: 4.2rem;
  }
  
  .hero__text {
    font-size: 1.8rem;
    max-width: 100%;
  }
  
  .hero__cta {
    flex-direction: column;
    gap: 1.6rem;
  }
  
  .btn--hero {
    width: 100%;
    text-align: center;
  }
}

/* 
////////////////////////////
    STATISTICS SECTION
///////////////////////////
 */

.statics {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.statics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d4e20' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

.all__statics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 3.2rem;
  position: relative;
  z-index: 1;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2.4rem;
}

.single__static {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 4rem 2.4rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(45, 78, 32, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.single__static::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary__color), var(--primary__light-5));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.single__static:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.single__static:hover::before {
  transform: scaleX(1);
}

.static__design {
  display: block;
  font-family: 'Lora', serif;
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--primary__color);
  margin-bottom: 1.2rem;
  line-height: 1.2;
  position: relative;
  transition: all 0.4s ease;
}

.single__static:hover .static__design {
  color: var(--primary__dark-10);
  transform: scale(1.05);
}

.single__static p {
  font-size: 1.8rem;
  color: var(--dark__gray);
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive styles */
@media (max-width: 59em) {
  .all__statics {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.4rem;
  }
  
  .single__static {
    padding: 3.2rem 2rem;
  }
  
  .static__design {
    font-size: 3.6rem;
  }
}

@media (max-width: 34em) {
  .all__statics {
    grid-template-columns: 1fr;
    max-width: 40rem;
    margin: 0 auto;
  }
  
  .single__static {
    padding: 2.8rem 1.6rem;
  }
  
  .static__design {
    font-size: 3.2rem;
  }
}

/* 
////////////////////////////
    ABOUT SECTION
///////////////////////////
 */

.about {
  background-color: var(--primary__light-10);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232d4e20' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 1;
}

.about__container {
  display: grid;
  grid-template-columns: 6fr 4fr;
  align-items: center;
  column-gap: 6.4rem;
  position: relative;
  z-index: 2;
  padding: 4.8rem 3.2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about__container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about__content {
  padding: 3.2rem 0;
}

.about__image {
  background-image: linear-gradient(
      145deg,
      rgba(95, 121, 85, 0.4),
      rgba(95, 121, 85, 0.4)
    ),
    url("../images/about/about.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.about__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 50%, rgba(255,255,255,0.03) 100%);
  z-index: 1;
}

.about__container:hover .about__image {
  transform: perspective(1000px) rotateY(0);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about__heading {
  margin-bottom: 2.4rem;
  position: relative;
  display: inline-block;
}

.about__heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary__color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.about__container:hover .about__heading::after {
  width: 120px;
}

.about__text {
  font-size: 1.8rem;
  color: var(--dark__gray);
  line-height: 1.8;
  margin-bottom: 3.2rem;
  position: relative;
  padding-left: 2rem;
  border-left: 3px solid var(--primary__light-15);
}

.btn__about:link,
.btn__about:visited {
  padding: 1.4rem 3.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary__color), var(--primary__dark-5));
  color: white;
  border: none;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  box-shadow: 0 4px 15px rgba(45, 78, 32, 0.3);
}

.btn__about:hover,
.btn__about:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 78, 32, 0.4);
  background: linear-gradient(135deg, var(--primary__dark-5), var(--primary__dark-10));
  color: white;
  border: none;
}

.btn__about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary__dark-5), var(--primary__color));
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn__about:hover::after {
  opacity: 1;
}

/* 
////////////////////////////
    REVIEWS SECTION
///////////////////////////
 */

.reviews__titles {
  text-align: center;
}

.reviews__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4.8rem;
  max-width: 136rem;
  margin-top: 6.2rem;
  background-color: var(--primary__light-15);
  padding: 3.2rem;
  margin: 0 auto;
}

.review__text {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.reviewer__name {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: "lora", serif;
  letter-spacing: 1px;
}

.reviewer__img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  margin-bottom: 1.8rem;
}

/* 
////////////////////////////
FEATURES SECTION
///////////////////////////
*/

.features {
  background-color: var(--primary__light-15);
  padding: 9.6rem 3.2rem;
}

.section-description {
  font-size: 1.8rem;
  color: var(--primary__dark-5);
  max-width: 80rem;
  margin: 0 auto 6.4rem;
  text-align: center;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3.2rem;
  margin-top: 4.8rem;
}

.feature-card {
  background: var(--pure__white);
  border-radius: 12px;
  padding: 4.8rem 3.2rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary__light-5);
}

.feature-icon {
  width: 8rem;
  height: 8rem;
  background: linear-gradient(
    135deg,
    var(--primary__light-5),
    var(--primary__dark-5)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.4rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(
    135deg,
    var(--primary__dark-5),
    var(--primary__light-5)
  );
  transform: scale(1.05);
}

.feature-icon ion-icon {
  font-size: 3.6rem;
  color: var(--pure__white);
}

.feature-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: var(--primary__dark-10);
  font-family: "Lora", serif;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
  color: var(--primary__color);
}

.feature-description {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--primary__gray);
  margin-bottom: 0;
  flex-grow: 1;
}

/* Responsive adjustments */
@media (max-width: 75em) {
  .features-grid {
    gap: 2.4rem;
  }

  .feature-card {
    padding: 3.6rem 2.4rem;
  }
}

@media (max-width: 59em) {
  .features {
    padding: 8rem 2.4rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 34em) {
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-card {
    max-width: 35rem;
    margin: 0 auto;
  }
}

/* 
////////////////////////////
GALLERY SECTION
///////////////////////////
*/

.gallery {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 9.6rem 0;
  position: relative;
  overflow: hidden;
}

.gallery::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d4e20' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
  z-index: 0;
}

.gallery__container {
  margin-bottom: 6.4rem;
  padding: 0 4.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.gallery__container h2 {
  margin-bottom: 1.6rem;
  position: relative;
  display: inline-block;
}

.gallery__container h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary__color), var(--primary__light-5));
  border-radius: 3px;
}

.gallery__text {
  font-size: 2rem;
  line-height: 1.6;
  color: var(--primary__dark-15);
  max-width: 80rem;
  margin: 0 auto;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2.4rem;
  padding: 0 4.8rem;
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  aspect-ratio: 1;
  background: #fff;
  transform: translateZ(0);
  will-change: transform;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(45, 78, 32, 0.1), transparent);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.gallery-item:hover::before {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 75em) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 59em) {
  .gallery {
    padding: 8rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 3.2rem;
    gap: 2rem;
  }
  
  .gallery__text {
    font-size: 1.8rem;
    padding: 0 2.4rem;
  }
}

@media (max-width: 34em) {
  .gallery {
    padding: 6.4rem 0;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 40rem;
    margin: 0 auto;
    padding: 0 2.4rem;
    gap: 1.6rem;
  }
  
  .gallery__container {
    margin-bottom: 4.8rem;
    padding: 0 2.4rem;
  }
  
  .gallery__text {
    font-size: 1.6rem;
  }
}

/* 
////////////////////////////
    CONTACT SECTION
///////////////////////////
*/

.contact {
  padding: 9.6rem 0;
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.contact__header {
  text-align: center;
  margin-bottom: 6.4rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.contact__subtext {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #555;
  margin-top: 1.6rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  margin-bottom: 6.4rem;
}

.contact__info {
  background: #fff;
  border-radius: 12px;
  padding: 4.8rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  height: 100%;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  transition: all 0.3s ease;
}

.contact__info-item:hover {
  transform: translateX(5px);
}

.contact__icon {
  width: 5.2rem;
  height: 5.2rem;
  background: linear-gradient(135deg, rgba(57, 130, 42, 0.1), rgba(57, 130, 42, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary__color);
  font-size: 2.4rem;
  transition: all 0.3s ease;
}

.contact__info-item:hover .contact__icon {
  background: var(--primary__color);
  color: #fff;
  transform: scale(1.1);
}

.contact__info-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.8rem;
}

.contact__info-text,
.contact__info-link {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #555;
  transition: all 0.3s ease;
}

.contact__info-link {
  display: block;
  text-decoration: none;
  color: var(--primary__color);
}

.contact__info-link:hover {
  color: var(--primary__dark-1);
  text-decoration: underline;
}

.contact__map {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 50rem;
  border: none;
  display: block;
}

.contact__social {
  text-align: center;
  padding-top: 4.8rem;
  border-top: 1px solid #eee;
}

.contact__social-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 2.4rem;
}

.contact__social-links {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  flex-wrap: wrap;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #fff;
  color: var(--primary__color);
  font-size: 2.4rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact__social-link:hover {
  background: var(--primary__color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(57, 130, 42, 0.3);
}

/* Responsive styles for contact section */
@media (max-width: 75em) {
  .contact {
    padding: 8rem 0;
  }
  
  .contact__grid {
    gap: 3.2rem;
  }
  
  .contact__info {
    padding: 3.2rem;
  }
}

@media (max-width: 59em) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
  
  .contact__map iframe {
    min-height: 40rem;
  }
}

@media (max-width: 34em) {
  .contact {
    padding: 6.4rem 0;
  }
  
  .contact__header {
    margin-bottom: 4.8rem;
  }
  
  .contact__subtext {
    font-size: 1.6rem;
  }
  
  .contact__info {
    padding: 2.4rem;
    gap: 2.4rem;
  }
  
  .contact__icon {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2rem;
  }
  
  .contact__info-title {
    font-size: 1.6rem;
  }
  
  .contact__info-text,
  .contact__info-link {
    font-size: 1.4rem;
  }
  
  .contact__map iframe {
    min-height: 35rem;
  }
  
  .contact__social-title {
    font-size: 1.8rem;
  }
  
  .contact__social-link {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2rem;
  }
}

/* 
////////////////////////////
    FOOTER SECTION
///////////////////////////
*/

.footer__section {
  padding: 9.6rem 4.8rem 4.8rem;
  background: linear-gradient(135deg, var(--primary__dark-15) 0%, #0a1209 100%);
  color: var(--primary__light-5);
  position: relative;
  overflow: hidden;
}

.footer__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d4e20' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 0;
}

.footer__container {
  display: grid;
  max-width: 140rem;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4.8rem;
  position: relative;
  z-index: 1;
}

.footer__heading {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3.2rem;
  position: relative;
  color: #fff;
  padding-bottom: 1rem;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary__color), var(--primary__light-5));
  border-radius: 3px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.footer__list li {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer__list li::before {
  content: '→';
  margin-right: 1rem;
  color: var(--primary__color);
  opacity: 0;
  transform: translateX(-1rem);
  transition: all 0.3s ease;
}

.footer__list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__contact:link,
.footer__contact:visited {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 1.6rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.6;
  position: relative;
}

.footer__contact:hover,
.footer__contact:active {
  color: #fff;
  transform: translateX(0.8rem);
}

.footer__social-links {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.footer__social-links li a {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-links li a:hover {
  background: var(--primary__color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer__social-links .social__icon {
  font-size: 2rem;
  color: #fff;
}

.footer__logo {
  margin-bottom: 3.2rem;
}

.footer__logo .logo__img {
  height: 8rem;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer__logo:hover .logo__img {
  transform: scale(1.05);
}

.separation__container {
  max-width: 140rem;
  margin: 6.4rem auto 0;
  padding-top: 4.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.separation {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0 auto;
}

.copyright__text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 2.4rem 0;
  line-height: 1.6;
}

.separation__container p:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer__developer:link,
.footer__developer:visited {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0 0.4rem;
}

.footer__developer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary__color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer__developer:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__developer:hover {
  color: #fff;
}

/* Responsive styles */
@media (max-width: 59em) {
  .footer__section {
    padding: 8rem 3.2rem 4rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4.8rem;
    column-gap: 3.2rem;
  }
}

@media (max-width: 34em) {
  .footer__section {
    padding: 6.4rem 2.4rem 3.2rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }

  .footer__heading {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }

  .footer__contact {
    font-size: 1.5rem;
  }

  .separation__container {
    margin-top: 4.8rem;
    padding-top: 3.2rem;
  }

  .copyright__text {
    font-size: 1.3rem;
    margin: 1.6rem 0;
  }

  .separation__container p:last-child {
    font-size: 1.3rem;
  }
}

/* 
////////////////////////////
    REVIEWS SECTION
///////////////////////////
*/
.reviews {
  padding: 9.6rem 0;
  background: linear-gradient(135deg, #f9f9f9, #f0f7f0);
  position: relative;
  overflow: hidden;
}

.reviews__titles {
  text-align: center;
  margin-bottom: 6.4rem;
  position: relative;
  z-index: 1;
}

.reviews__container {
  max-width: 140rem;
  margin: 0 auto;
  padding: 6.2rem 3.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3.2rem;
  position: relative;
  z-index: 1;
}

.single__review {
  background: #fff;
  border-radius: 16px;
  padding: 4rem 3.2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.single__review::before {
  content: '"\201D';
  position: absolute;
  top: 2rem;
  right: 3rem;
  font-size: 10rem;
  font-family: serif;
  color: var(--primary__color);
  opacity: 0.1;
  line-height: 1;
  transform: rotate(15deg);
  z-index: 0;
}

.single__review:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.reviewer__img {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.4rem;
  display: block;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.single__review:hover .reviewer__img {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.review__text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2.4rem;
  position: relative;
  z-index: 1;
  font-style: italic;
  padding-left: 1.5rem;
  border-left: 3px solid var(--primary__color);
}

.reviewer__name {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary__dark-5);
  margin-top: 1.2rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.reviewer__name:first-of-type {
  color: var(--primary__color);
  font-weight: 700;
  margin-top: 0;
}

/* Decorative elements */
.reviews::after {
  content: '';
  position: absolute;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, var(--primary__color) 0%, transparent 70%);
  opacity: 0.05;
  border-radius: 50%;
  top: -15rem;
  right: -15rem;
  z-index: 0;
}

/* Responsive styles */
@media (max-width: 75em) {
  .reviews {
    padding: 8rem 0;
  }
  
  .reviews__container {
    padding: 4.2rem 4.8rem;
    gap: 2.4rem;
  }
  
  .single__review {
    padding: 3.2rem 2.4rem;
  }
}

@media (max-width: 59em) {
  .reviews__container {
    grid-template-columns: repeat(2, 1fr);
    padding: 3.2rem 3.2rem;
  }
  
  .single__review {
    padding: 2.8rem 2.4rem;
  }
  
  .review__text {
    font-size: 1.5rem;
  }
  
  .reviewer__img {
    width: 6.5rem;
    height: 6.5rem;
  }
}

@media (max-width: 44em) {
  .reviews {
    padding: 6.4rem 0;
  }
  
  .reviews__titles {
    margin-bottom: 4.8rem;
  }
  
  .reviews__container {
    grid-template-columns: 1fr;
    max-width: 60rem;
    padding: 3.2rem 2.4rem;
  }
  
  .single__review {
    padding: 3.2rem;
  }
  
  .review__text {
    font-size: 1.6rem;
  }
  
  .reviewer__img {
    width: 7rem;
    height: 7rem;
  }
}

@media (max-width: 34em) {
  .reviews {
    padding: 5.6rem 0;
  }
  
  .reviews__titles {
    margin-bottom: 3.2rem;
  }
  
  .reviews__container {
    padding: 3.2rem 1.6rem;
  }
  
  .single__review {
    padding: 2.4rem 2rem;
  }
  
  .review__text {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  
  .reviewer__name {
    font-size: 1.4rem;
  }
  
  .reviewer__img {
    width: 6rem;
    height: 6rem;
    margin-bottom: 2rem;
  }
}

/* Animation for reviews */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single__review {
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
}

.single__review:nth-child(1) { animation-delay: 0.1s; }
.single__review:nth-child(2) { animation-delay: 0.2s; }
.single__review:nth-child(3) { animation-delay: 0.3s; }
.single__review:nth-child(4) { animation-delay: 0.4s; }

/* ///////////////////// */
/* Base & Typography */

.gallery-section {
  padding: 8rem 2rem;
  background: linear-gradient(135deg, #f9f9f9, #eaf1f8);
}

.gallery-container {
  max-width: 136rem;
  margin: 0 auto;
}

.gallery-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 6rem;
  color: #2d3a4b;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--primary__light-10);
}

/* Image Card */
.gallery-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Hover Animation */
.gallery-item:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Aspect Ratio Classes */
.ratio-1-1 {
  aspect-ratio: 1 / 1;
}

/* Responsive Optimization */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  }

  .gallery-title {
    font-size: 2.2rem;
  }
}

/* 
////////////////////////////
    CONTACT SECTION
///////////////////////////
*/
.contact {
  background-color: #f9f9f9;
  padding: 9.6rem 0;
  color: var(--primary__light-5);
  position: relative;
  overflow: hidden;
}

.footer__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232d4e20' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.8;
  z-index: 0;
}

.footer__container {
  display: grid;
  max-width: 140rem;
  margin: 0 auto;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 4.8rem;
  position: relative;
  z-index: 1;
}

.footer__heading {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3.2rem;
  position: relative;
  color: #fff;
  padding-bottom: 1rem;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--primary__color), var(--primary__light-5));
  border-radius: 3px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
}

.footer__list li {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer__list li::before {
  content: '→';
  margin-right: 1rem;
  color: var(--primary__color);
  opacity: 0;
  transform: translateX(-1rem);
  transition: all 0.3s ease;
}

.footer__list li:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__contact:link,
.footer__contact:visited {
  text-decoration: none;
  color: #e6e6e6;
  font-size: 1.6rem;
  font-weight: 400;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.6;
  position: relative;
}

.footer__contact:hover,
.footer__contact:active {
  color: #fff;
  transform: translateX(0.8rem);
}

.footer__social-links {
  display: flex;
  gap: 1.6rem;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

.footer__social-links li a {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__social-links li a:hover {
  background: var(--primary__color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer__social-links .social__icon {
  font-size: 2rem;
  color: #fff;
}

.footer__logo {
  margin-bottom: 3.2rem;
}

.footer__logo .logo__img {
  height: 8rem;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer__logo:hover .logo__img {
  transform: scale(1.05);
}

.separation__container {
  max-width: 140rem;
  margin: 6.4rem auto 0;
  padding-top: 4.8rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.separation {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 0 auto;
}

.copyright__text {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 2.4rem 0;
  line-height: 1.6;
}

.separation__container p:last-child {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  line-height: 1.6;
}

.footer__developer:link,
.footer__developer:visited {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0 0.4rem;
}

.footer__developer::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary__color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.footer__developer:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__developer:hover {
  color: #fff;
}

/* Responsive styles */
@media (max-width: 59em) {
  .footer__section {
    padding: 8rem 3.2rem 4rem;
  }

  .footer__container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4.8rem;
    column-gap: 3.2rem;
  }
}

@media (max-width: 34em) {
  .footer__section {
    padding: 6.4rem 2.4rem 3.2rem;
  }

  .footer__container {
    grid-template-columns: 1fr;
    gap: 4.8rem;
  }

  .footer__heading {
    font-size: 1.8rem;
    margin-bottom: 2.4rem;
  }

  .footer__contact {
    font-size: 1.5rem;
  }

  .separation__container {
    margin-top: 4.8rem;
    padding-top: 3.2rem;
  }

  .copyright__text {
    font-size: 1.3rem;
    margin: 1.6rem 0;
  }

  .separation__container p:last-child {
    font-size: 1.3rem;
  }
}