/* 
  Author: Websites By Frequency
  Date: June 6, 2026
  Website: Lizzy Mae's Country Gardens - Premium Gardening Services Styling
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #f7f9f7;
  color: #1e2824;
  font-family: "Outfit", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn--primary {
  background-color: #c5a059;
  color: #f7f9f7;
}

.btn--primary:hover {
  background-color: #b08d4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 61, 48, 0.08);
}

.btn--outline {
  background-color: transparent;
  color: #0f3d30;
  border: 2px solid #0f3d30;
}

.btn--outline:hover {
  background-color: #0f3d30;
  color: #f7f9f7;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 61, 48, 0.08);
}

.btn--white {
  background-color: #f7f9f7;
  color: #0f3d30;
}

.btn--white:hover {
  background-color: #f7f9f7;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 61, 48, 0.08);
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #0f3d30;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c5a059;
  margin: 1.2rem auto 0 auto;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #5b7e6f;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f3d30;
}

.site-header .logo .logo-icon {
  color: #c5a059;
  font-size: 1.8rem;
}

.site-header .nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.site-header .nav-menu a {
  font-weight: 500;
  color: #1e2824;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.site-header .nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c5a059;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header .nav-menu a:hover {
  color: #0f3d30;
}

.site-header .nav-menu a:hover::after {
  width: 100%;
}

.site-header .nav-menu a.active {
  color: #0f3d30;
  font-weight: 600;
}

.site-header .nav-menu a.active::after {
  width: 100%;
}

.site-header .nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #0f3d30;
  cursor: pointer;
}

@media (max-width: 959.98px) {
  .site-header .nav-menu {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: #f7f9f7;
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 25px rgba(15, 61, 48, 0.08);
    transform: translateY(-150%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
  }

  .site-header .nav-menu.active {
    transform: translateY(0);
    pointer-events: all;
  }

  .site-header .nav-toggle {
    display: block;
  }
}

component-header {
  font-family: "Outfit", sans-serif !important;
  --brand-font: Playfair Display, Georgia, serif;
  --brand-color: #0f3d30;
  --nav-font: Outfit, sans-serif;
  --nav-color: #1e2824;
  --nav-hover-color: #c5a059;
  --toolbar-bg: #f7f9f7;
  --toolbar-color: #0f3d30;
  --active-color: #c5a059;
  --mat-toolbar-container-background-color: #f7f9f7;
  --mat-toolbar-container-text-color: #0f3d30;
  --mdc-typography-body1-font-family: Outfit, sans-serif;
  --mdc-typography-button-font-family: Outfit, sans-serif;
  --mat-toolbar-standard-height: 72px;
  background: #f7f9f7 !important;
  background-image: url('vine_overlay_1782606413476.png') !important;
  background-repeat: repeat !important;
}

@media (min-width: 959.98px) {
  component-header .header-top {
    font-weight: 600 !important;
    letter-spacing: 0.01em !important;
    font-size: 2rem !important;
  }
}

body component-header a[class*=brand],
body component-header .brand,
body component-header [class*=logo],
body component-header h1,
body component-header h2 {
  font-family: "Playfair Display", Georgia, serif !important;
  color: #0f3d30 !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

body component-header a,
body component-header button,
body component-header span[class*=nav] {
  font-family: "Playfair Display", sans-serif !important;
  color: #1e2824 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: color 0.3s ease !important;

}

body component-header a:hover,
body component-header button:hover,
body component-header span[class*=nav]:hover {
  color: #c5a059 !important;
}

body component-header mat-toolbar,
body component-header [class*=toolbar],
body component-header nav {
  background-color: #f7f9f7 !important;
  color: #0f3d30 !important;
  font-family: "Playfair Display" !important;
}

component-header .mobile-menu {
  background-color: #f7f9f7 !important;
}


.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, rgba(15, 61, 48, 0.92) 0%, rgba(15, 61, 48, 0.8) 100%), url("assets/IMG_D8D00FA615FF-1.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #f7f9f7;
  position: relative;
  padding: 4rem 0;
}

.hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #f7f9f7, transparent);
  z-index: 2;
}

.hero .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero .hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 span {
  color: #c5a059;
  font-style: italic;
}

.hero .hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
  font-weight: 300;
}

.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero .hero-content .hero-buttons .btn--outline {
  color: #f7f9f7;
  border-color: #f7f9f7;
}

.hero .hero-content .hero-buttons .btn--outline:hover {
  background-color: #f7f9f7;
  color: #0f3d30;
}

.hero .hero-badge {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 61, 48, 0.12);
  transform: rotate(2deg);
  animation: floating 6s ease-in-out infinite;
}

.hero .hero-badge h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  color: #c5a059;
  margin-bottom: 0.5rem;
}

.hero .hero-badge p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero .hero-badge hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 1.5rem 0;
}

.hero .hero-badge .badge-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero .hero-badge .badge-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.hero .hero-badge .badge-features li i {
  color: #c5a059;
}

@keyframes floating {
  0% {
    transform: translateY(0px) rotate(2deg);
  }

  50% {
    transform: translateY(-10px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(2deg);
  }
}

@media (max-width: 959.98px) {
  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 3rem;
  }

  .hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }

  .hero .hero-badge {
    max-width: 380px;
    margin: 0 auto;
    transform: none;
    animation: none;
  }
}

.services-section {
  background-color: #f7f9f7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: #f7f9f7;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 61, 48, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 61, 48, 0.12);
  border-color: rgba(197, 160, 89, 0.3);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card .service-card-img {
  height: 220px;
  position: relative;
}

.service-card .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card .service-card-img .price-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #0f3d30;
  color: #f7f9f7;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.service-card .service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .service-card-content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: #0f3d30;
  margin-bottom: 0.75rem;
}

.service-card .service-card-content p {
  color: #3f544b;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .service-card-content .service-features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card .service-card-content .service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #1e2824;
}

.service-card .service-card-content .service-features li i {
  color: #c5a059;
  font-size: 0.8rem;
}

.service-card .service-card-content .service-link {
  color: #0f3d30;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.service-card .service-card-content .service-link i {
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card .service-card-content .service-link:hover {
  color: #c5a059;
}

.service-card .service-card-content .service-link:hover i {
  transform: translateX(4px);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images .main-img {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 61, 48, 0.12);
  width: 85%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-images .sub-img {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 15px;
  border: 8px solid #f7f9f7;
  box-shadow: 0 20px 40px rgba(15, 61, 48, 0.12);
}

.about-content .intro {
  font-size: 1.15rem;
  color: #5b7e6f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.about-content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  color: #0f3d30;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #34453e;
}

.about-content .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.about-content .about-stats .stat-item h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  color: #c5a059;
  margin-bottom: 0.25rem;
}

.about-content .about-stats .stat-item p {
  font-size: 0.95rem;
  color: #1e2824;
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 959.98px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
}

.gallery-section {
  background-color: #f7f9f7;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter .filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  background: #f7f9f7;
  border: 1px solid #e1e8e4;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
  background: #0f3d30;
  color: #f7f9f7;
  border-color: #0f3d30;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 48, 0.9) 0%, rgba(15, 61, 48, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item .gallery-overlay h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #f7f9f7;
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item .gallery-overlay p {
  color: #c5a059;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0.1s;
}

.gallery-item:hover {
  box-shadow: 0 20px 40px rgba(15, 61, 48, 0.12);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

#request-form button.submit-button {
  background-color: #c5a059 !important;
  color: #0f3d30 !important;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2em;
}

.request-section {
  background-color: #f7f9f7;
}

.request-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.request-info {
  background: #0f3d30;
  color: #f7f9f7;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 61, 48, 0.12);
  position: sticky;
  top: 120px;
}

.request-info h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #c5a059;
}

.request-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.request-info .info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.request-info .info-list .info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.request-info .info-list .info-item .info-icon {
  color: #c5a059;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.08);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.request-info .info-list .info-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.request-info .info-list .info-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.form-container {
  background: #f7f9f7;
  border: 1px solid rgba(15, 61, 48, 0.05);
  padding: 1.1rem;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(15, 61, 48, 0.08);
}

.form-container h3,
.form-container h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  color: #0f3d30;
  margin-bottom: 2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f3d30;
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
  padding: 0.9rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #e1e8e4;
  background: #f7f9f7;
  color: #1e2824;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
  outline: none;
  border-color: #c5a059;
  box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.quote-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.quote-form .form-group.has-error input,
.quote-form .form-group.has-error select,
.quote-form .form-group.has-error textarea {
  border-color: #d9534f;
  box-shadow: 0 0 0 4px rgba(217, 83, 79, 0.1);
}

.quote-form .form-group.has-error .error-msg {
  color: #d9534f;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 599.98px) {
  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}

.calculator-box {
  background: #f7f9f7;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e1e8e4;
  margin-top: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.calculator-box h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: #0f3d30;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.calculator-box .calc-result {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e1e8e4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calculator-box .calc-result span {
  font-weight: 600;
  font-size: 1.05rem;
}

.calculator-box .calc-result .price {
  font-size: 1.75rem;
  font-family: "Playfair Display", Georgia, serif;
  color: #0f3d30;
  font-weight: 700;
}

@media (max-width: 959.98px) {
  .request-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .request-info {
    position: static;
    padding: 1.1rem;
    order: 2;
  }

  .form-container {
    padding: 1.1rem;
  }
}

.testimonials-section {
  background: linear-gradient(135deg, #0f3d30 0%, #175e4a 100%);
  color: #f7f9f7;
}

.testimonials-section .section-title {
  color: #f7f9f7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(15, 61, 48, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(197, 160, 89, 0.15);
  font-family: serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c5a059;
}

.testimonial-card .client-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
}

.testimonial-card .client-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
}

.site-footer {
  background: #1e2824;
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  margin-top: auto;
  border-top: 4px solid #c5a059;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 959.98px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 599.98px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer .footer-col h4 {
  color: #f7f9f7;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.site-footer .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #c5a059;
}

.site-footer .footer-col p {
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: #f7f9f7;
  margin-bottom: 1rem;
  font-weight: 700;
}

.site-footer .footer-logo i {
  color: #c5a059;
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer .footer-links a {
  font-size: 0.95rem;
}

.site-footer .footer-links a:hover {
  color: #c5a059;
  transform: translateX(3px);
}

.site-footer .social-links {
  display: flex;
  gap: 1rem;
}

.site-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #f7f9f7;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-footer .social-links a:hover {
  background: #c5a059;
  color: #f7f9f7;
  transform: translateY(-3px);
}

.site-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 599.98px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.services-list-section {
  background-color: #f7f9f7;
  padding: 6rem 0;
  border-top: 1px solid rgba(15, 61, 48, 0.05);
  border-bottom: 1px solid rgba(15, 61, 48, 0.05);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #1e2824;
}

.services-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f7f9f7;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(15, 61, 48, 0.05);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-list-item i {
  color: #c5a059;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border-color: rgba(197, 160, 89, 0.3);
}

.services-list-item:hover i {
  transform: scale(1.15);
  color: #b08d4a;
}

.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .service-card:nth-child(1),
.testimonials-grid .testimonial-card:nth-child(1) {
  transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2),
.testimonials-grid .testimonial-card:nth-child(2) {
  transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3),
.testimonials-grid .testimonial-card:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-grid .gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}

.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.1s;
}

.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.15s;
}

.gallery-grid .gallery-item:nth-child(4) {
  transition-delay: 0.2s;
}

.gallery-grid .gallery-item:nth-child(5) {
  transition-delay: 0.25s;
}

.gallery-grid .gallery-item:nth-child(6) {
  transition-delay: 0.3s;
}

/* Request Form Styling */
request-form {
  font-family: Outfit, sans-serif;
  color: #0f3d30;
}

request-form h5,
request-form h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: #0f3d30;
}

request-form input,
request-form textarea,
request-form select {
  font-family: Outfit, sans-serif;
  color: #0f3d30;
  background-color: #f7f9f7;
  border: 1px solid #c5a059;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

request-form input:focus,
request-form textarea:focus,
request-form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px #c5a059;
}

request-form .btn--primary {
  background-color: #c5a059;
  color: #f7f9f7;
}

request-form .btn--primary:hover {
  background-color: #b08d4a;
}

/*# sourceMappingURL=style.css.map */