/* Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cascadia Mono', monospace;
  background-color: #f6f6f1; /* soft creamy background */
  color: #2f4f2f;
  padding-top: 140px; /* to avoid content being hidden behind fixed nav */
}

/* ========== NAVBAR STYLES ========== */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  background: rgba(205, 233, 208, 0.5); /* creamy skin-green glass effect */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 24px 20px;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

/* Nav Links */
.navbar-item a {
  text-decoration: none;
  color: #2f4f2f;
  font-size: 1rem;
  padding: 16px 4px;
  position: relative;
  transition: color 0.3s ease;
}

/* Smooth Underline Hover */
.navbar-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #2f4f2f;
  transition: width 0.4s ease;
}

.navbar-item a:hover::after {
  width: 100%;
}

/* ========== DROPDOWN ========== */
.dropdown-parent {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  display: none;
  min-width: 200px;
  padding: 10px 0;
  z-index: 1001;
  pointer-events: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown-menu li a {
  color: #2f4f2f;
  text-decoration: none;
  display: block;
  transition: background-color 0.2s ease;
}

.dropdown-menu li a:hover {
  background-color: rgba(205, 233, 208, 0.3);
  border-radius: 6px;
}

/* Show dropdown ONLY on hover */
.dropdown-parent:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* Ensure dropdown is hidden when not hovering */
.dropdown-parent:not(:hover) .dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* ========== CONTAINER ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}



.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #2f4f2f;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #5a7a5a;
  margin-bottom: 40px;
  font-weight: 300;
}

/* ========== CTA BUTTON ========== */
.cta-button {
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Cascadia Mono', monospace;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f4f2f;
  text-align: center;
  margin-bottom: 30px;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.background-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-bottom: 20px;
}

.services-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f4f2f;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #2f4f2f;
  margin-bottom: 15px;
}

.service-card p {
  color: #5a7a5a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: #2f4f2f;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #cde9d0;
  transition: border-color 0.3s ease;
}

.service-link:hover {
  border-bottom-color: #2f4f2f;
}

/* ========== PASSION SECTION ========== */
.passion-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.passion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.passion-image .founder-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.passion-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.passion-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-bottom: 20px;
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
  padding: 100px 0;
  background-color: white;
  text-align: center;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: #2f4f2f;
  margin-bottom: 30px;
  line-height: 1.6;
  position: relative;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: #cde9d0;
  position: absolute;
  top: -20px;
  left: -30px;
}

.testimonial-author {
  display: block;
  font-size: 1.1rem;
  color: #5a7a5a;
  font-weight: 600;
  margin-bottom: 40px;
}

/* ========== SHOP SECTION ========== */
.shop-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.3) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.shop-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.shop-text {
  text-align: left;
}

.shop-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.shop-image .entrance-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.shop-address {
  font-size: 1.3rem;
  color: #2f4f2f;
  font-weight: 600;
  margin-bottom: 15px;
}

.shop-description {
  font-size: 1.1rem;
  color: #5a7a5a;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== EMAIL SECTION ========== */
.email-section {
  padding: 100px 0;
  background-color: white;
  text-align: center;
}

.email-description {
  font-size: 1.2rem;
  color: #5a7a5a;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.email-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  border: 2px solid #cde9d0;
  border-radius: 25px;
  font-size: 1rem;
  font-family: 'Cascadia Mono', monospace;
  outline: none;
  transition: border-color 0.3s ease;
}

.email-form input[type="email"]:focus {
  border-color: #2f4f2f;
}

.email-form .cta-button {
  padding: 15px 25px;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-tagline {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .passion-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .shop-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .shop-text {
    text-align: center;
  }
  
  .shop-text .section-title {
    text-align: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .email-form {
    flex-direction: column;
    align-items: center;
  }
  
  .email-form input[type="email"] {
    min-width: 100%;
  }
}

/* ========== FOOTER ========== */
.footer {
  margin-top: 60px;
  background-color: #cde9d0;
  padding: 40px 20px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 2px solid #2f4f2f1a;
}

.footer h3 {
  margin-bottom: 15px;
  color: #2f4f2f;
}

.footer p {
  margin-bottom: 20px;
  color: #2f4f2f;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2f4f2f;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.3);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: #2f4f2f;
}

.social-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========== ABOUT PAGE STYLES ========== */

/* Page Title */
.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2f4f2f;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #5a7a5a;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}

/* About Section */
.about-section {
  padding: 120px 0 80px;
  background-color: white;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-bottom: 40px;
  text-align: center;
}

.services-list {
  background: rgba(205, 233, 208, 0.2);
  padding: 30px;
  border-radius: 15px;
  margin: 40px 0;
}

.services-list h3 {
  color: #2f4f2f;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.services-list ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.services-list li {
  padding: 8px 0;
  color: #5a7a5a;
  font-size: 1.1rem;
  position: relative;
  padding-left: 25px;
}

.services-list li::before {
  content: "🌱";
  position: absolute;
  left: 0;
  top: 8px;
}

.about-belief {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a7a5a;
  text-align: center;
  margin-top: 40px;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.story-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.story-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(1.2);
}

.story-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  color: white;
}

.story-content .section-title {
  color: white;
  margin-bottom: 30px;
}

.story-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Sustainability Section */
.sustainability-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.sustainability-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.initial-content {
  margin-bottom: 20px;
}

.initial-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-bottom: 20px;
}

.teaser-content {
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.teaser-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-bottom: 20px;
}

.read-more-btn {
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.read-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.team-member {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #cde9d0;
}

.team-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #cde9d0 0%, #a8d5b0 100%);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #cde9d0;
}

.placeholder-icon {
  width: 60px;
  height: 60px;
  color: #2f4f2f;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #2f4f2f;
  margin-bottom: 8px;
}

.pronouns {
  font-size: 0.9rem;
  color: #5a7a5a;
  font-style: italic;
  margin-bottom: 8px;
}

.position {
  font-size: 1.1rem;
  color: #2f4f2f;
  font-weight: 600;
}

/* ========== GARDEN SERVICES PAGE STYLES ========== */

/* Garden Overview Section */
.garden-overview-section {
  padding: 120px 0 80px;
  background-color: white;
}

.garden-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.garden-overview-left {
  padding-right: 40px;
}

.garden-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-top: 30px;
}

.garden-overview-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-item {
  background: rgba(205, 233, 208, 0.1);
  padding: 30px;
  border-radius: 15px;
  border-left: 4px solid #2f4f2f;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #000;
  border-radius: 2px;
}

.service-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2f4f2f;
  margin-bottom: 10px;
}

.service-title {
  font-size: 1.5rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #5a7a5a;
  margin-bottom: 20px;
}

.process-list h5,
.maintenance-includes h5 {
  font-size: 1.1rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-list ul,
.maintenance-includes ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.process-list li,
.maintenance-includes li {
  padding: 8px 0;
  color: #5a7a5a;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.process-list li::before,
.maintenance-includes li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2f4f2f;
  font-weight: bold;
}

/* Garden Images Section */
.garden-images-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.garden-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.garden-image-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.garden-image-item:hover {
  transform: translateY(-5px);
}

.garden-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Book Section */
.book-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.book-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.book-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
}

.book-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.book-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.book-content .cta-button {
  font-size: 1.2rem;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.9);
  color: #2f4f2f;
  border: 2px solid white;
  transition: all 0.3s ease;
}

.book-content .cta-button:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Garden Services */
@media (max-width: 768px) {
  .garden-overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .garden-overview-left {
    padding-right: 0;
  }
  
  .garden-images-grid {
    grid-template-columns: 1fr;
  }
  
  .book-title {
    font-size: 2.5rem;
  }
}

/* ========== INTERIOR PLANT SERVICES PAGE STYLES ========== */

/* Interior Overview Section */
.interior-overview-section {
  padding: 120px 0 80px;
  background-color: white;
}

.interior-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.interior-overview-left {
  padding-right: 40px;
}

.interior-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-top: 30px;
}

.interior-overview-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Interior Images Section */
.interior-images-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.interior-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.interior-image-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.interior-image-item:hover {
  transform: translateY(-5px);
}

.interior-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Responsive Design for Interior Plant Services */
@media (max-width: 768px) {
  .interior-overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .interior-overview-left {
    padding-right: 0;
  }
  
  .interior-images-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== PLANTER SERVICES PAGE STYLES ========== */

/* Planter Overview Section */
.planter-overview-section {
  padding: 120px 0 80px;
  background-color: white;
}

.planter-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.planter-overview-left {
  padding-right: 40px;
}

.planter-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-top: 30px;
}

.planter-overview-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Planter Images Section */
.planter-images-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.planter-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.planter-image-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.planter-image-item:hover {
  transform: translateY(-5px);
}

.planter-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Responsive Design for Planter Services */
@media (max-width: 768px) {
  .planter-overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .planter-overview-left {
    padding-right: 0;
  }
  
  .planter-images-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== HOLIDAY DECOR SERVICES PAGE STYLES ========== */

/* Holiday Overview Section */
.holiday-overview-section {
  padding: 120px 0 80px;
  background-color: white;
}

.holiday-overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.holiday-overview-left {
  padding-right: 40px;
}

.holiday-intro {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5a7a5a;
  margin-top: 30px;
}

.holiday-overview-right {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.holiday-includes h5 {
  font-size: 1.1rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.holiday-includes ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.holiday-includes li {
  padding: 8px 0;
  color: #5a7a5a;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
  line-height: 1.6;
}

.holiday-includes li::before {
  content: "🎄";
  position: absolute;
  left: 0;
  top: 8px;
  color: #2f4f2f;
  font-weight: bold;
}

.holiday-note {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2f4f2f;
  margin-top: 20px;
  padding: 15px;
  background: rgba(205, 233, 208, 0.2);
  border-radius: 10px;
  border-left: 4px solid #2f4f2f;
  font-style: italic;
}

/* Holiday Images Section */
.holiday-images-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.holiday-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.holiday-image-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.holiday-image-item:hover {
  transform: translateY(-5px);
}

.holiday-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Responsive Design for Holiday Decor Services */
@media (max-width: 768px) {
  .holiday-overview-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .holiday-overview-left {
    padding-right: 0;
  }
  
  .holiday-images-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== CONTACT PAGE STYLES ========== */

/* Contact Section */
.contact-section {
  padding: 120px 0 80px;
  background-color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-left {
  padding-right: 40px;
}

.contact-subtitle {
  font-size: 1.3rem;
  color: #5a7a5a;
  margin-bottom: 40px;
  font-weight: 500;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item h3 {
  font-size: 1.2rem;
  color: #2f4f2f;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-item p {
  font-size: 1.1rem;
  color: #5a7a5a;
}

.contact-item a {
  color: #5a7a5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #2f4f2f;
}

/* Contact Form */
.contact-form {
  background: rgba(205, 233, 208, 0.1);
  padding: 40px;
  border-radius: 20px;
  border: 2px solid rgba(205, 233, 208, 0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #2f4f2f;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #cde9d0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Cascadia Mono', monospace;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2f4f2f;
}

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

.submit-btn {
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-left {
    padding-right: 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
}

/* ========== EVENTS PAGE STYLES ========== */

/* Events Section */
.events-section {
  padding: 120px 0 80px;
  background-color: white;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.event-card {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(205, 233, 208, 0.1);
  border: 2px solid rgba(205, 233, 208, 0.3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(47, 79, 47, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47, 79, 47, 0.15);
}

.event-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.event-card:hover .event-img {
  transform: scale(1.05);
}

.event-content {
  padding: 30px;
}

.event-title {
  font-size: 1.8rem;
  color: #2f4f2f;
  margin-bottom: 10px;
  font-weight: 600;
}

.event-details {
  font-size: 1.1rem;
  color: #5a7a5a;
  margin-bottom: 15px;
  font-weight: 500;
}

.event-description {
  font-size: 1rem;
  color: #5a7a5a;
  line-height: 1.6;
  margin-bottom: 25px;
}

.event-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.event-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* ========== EVENT DETAILS PAGE STYLES ========== */

/* Event Details Section */
.event-details-section {
  padding: 120px 0 80px;
  background-color: white;
}

.event-details-content {
  max-width: 800px;
  margin: 0 auto;
}

.event-details-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
}

.event-details-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-details-info {
  padding: 0 20px;
}

.event-details-title {
  font-size: 2.5rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.event-details-date {
  font-size: 1.3rem;
  color: #5a7a5a;
  margin-bottom: 20px;
  font-weight: 500;
}

.event-details-description {
  font-size: 1.1rem;
  color: #5a7a5a;
  line-height: 1.7;
  margin-bottom: 40px;
}

.event-location {
  margin-bottom: 30px;
}

.event-location h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 10px;
  font-weight: 600;
}

.event-location p {
  font-size: 1.1rem;
  color: #5a7a5a;
  line-height: 1.5;
}

.event-map {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(47, 79, 47, 0.1);
}

.event-sharing {
  margin-bottom: 40px;
}

.event-sharing h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 20px;
  font-weight: 600;
}

.share-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.facebook {
  background: #4267b2;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.share-icon {
  width: 20px;
  height: 20px;
}

/* Responsive Design for Events Pages */
@media (max-width: 768px) {
  .event-card {
    margin: 0 20px;
  }
  
  .event-content {
    padding: 25px 20px;
  }
  
  .event-title {
    font-size: 1.5rem;
  }
  
  .event-details-title {
    font-size: 2rem;
  }
  
  .event-details-image {
    height: 300px;
  }
  
  .share-buttons {
    justify-content: center;
  }
  
  .share-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

/* ========== GARDEN SHOP PAGE STYLES ========== */

/* Section 1: Shop Header */
.shop-header-section {
  padding: 120px 0 60px;
  background-color: white;
  text-align: center;
}

.shop-title {
  font-size: 2.5rem;
  color: #2f4f2f;
  margin-bottom: 20px;
  font-weight: 600;
}

.shop-subtitle {
  font-size: 1.3rem;
  color: #5a7a5a;
  margin-bottom: 40px;
  font-weight: 500;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Section 2: Location */
.location-section {
  padding: 80px 0;
  background-color: rgba(205, 233, 208, 0.1);
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-info {
  padding-left: 20px;
}

.location-description {
  font-size: 1.1rem;
  color: #5a7a5a;
  line-height: 1.7;
  margin-bottom: 25px;
}

.location-address {
  font-size: 1.2rem;
  color: #2f4f2f;
  font-weight: 600;
  line-height: 1.5;
}

/* Section 3: Bouquet Bar */
.bouquet-section {
  padding: 80px 0;
  background-color: white;
}

.bouquet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bouquet-info {
  padding-right: 20px;
}

.bouquet-description {
  font-size: 1.1rem;
  color: #5a7a5a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.bouquet-details {
  background: rgba(205, 233, 208, 0.2);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.bouquet-details h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.bouquet-details p {
  font-size: 1rem;
  color: #5a7a5a;
  margin-bottom: 10px;
  line-height: 1.5;
}

.bouquet-note {
  font-size: 0.9rem;
  color: #5a7a5a;
  font-style: italic;
}

.mobile-bouquet {
  margin-top: 30px;
}

.mobile-bouquet h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.mobile-bouquet p {
  font-size: 1rem;
  color: #5a7a5a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bouquet-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.bouquet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section 4: Bath Salt Bar */
.bath-salt-section {
  padding: 80px 0;
  background-color: rgba(205, 233, 208, 0.1);
}

.bath-salt-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bath-salt-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.bath-salt-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bath-salt-info {
  padding-left: 20px;
}

.bath-salt-description {
  font-size: 1.1rem;
  color: #5a7a5a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.coming-soon {
  background: rgba(205, 233, 208, 0.2);
  padding: 25px;
  border-radius: 15px;
}

.coming-soon h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.coming-soon-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.coming-soon-list li {
  font-size: 1rem;
  color: #5a7a5a;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.coming-soon-list li:before {
  content: "•";
  color: #2f4f2f;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Section 5: Shop Events */
.shop-events-section {
  padding: 80px 0;
  background-color: white;
}

.shop-events-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.shop-events-info {
  padding-right: 20px;
}

.events-description {
  font-size: 1.1rem;
  color: #5a7a5a;
  line-height: 1.7;
  margin-bottom: 30px;
}

.events-details {
  background: rgba(205, 233, 208, 0.2);
  padding: 25px;
  border-radius: 15px;
}

.events-details h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.events-details p {
  font-size: 1rem;
  color: #5a7a5a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.shop-events-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}

.shop-events-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation Tabs */
.shop-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(205, 233, 208, 0.3);
  border: 2px solid rgba(205, 233, 208, 0.5);
  color: #5a7a5a;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.tab-btn:hover {
  background: rgba(205, 233, 208, 0.5);
  border-color: #5a7a5a;
}

.tab-btn.active {
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  border-color: #2f4f2f;
}

/* Tab Content */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.event-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  background: rgba(205, 233, 208, 0.1);
  border: 2px solid rgba(205, 233, 208, 0.3);
  border-radius: 15px;
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(47, 79, 47, 0.1);
}

.event-item-image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
}

.event-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-item-title {
  font-size: 1.4rem;
  color: #2f4f2f;
  margin-bottom: 8px;
  font-weight: 600;
}

.event-item-date {
  font-size: 1rem;
  color: #5a7a5a;
  margin-bottom: 12px;
  font-weight: 500;
}

.event-item-description {
  font-size: 0.95rem;
  color: #5a7a5a;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.event-item-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
  align-self: flex-start;
}

.event-item-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.product-item {
  background: rgba(205, 233, 208, 0.1);
  border: 2px solid rgba(205, 233, 208, 0.3);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47, 79, 47, 0.1);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-content {
  padding: 25px;
  text-align: center;
}

.product-content h3 {
  font-size: 1.3rem;
  color: #2f4f2f;
  margin-bottom: 10px;
  font-weight: 600;
}

.product-content p {
  font-size: 1rem;
  color: #5a7a5a;
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.product-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* Services List */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
  margin: 0 auto;
}

.service-item {
  background: rgba(205, 233, 208, 0.1);
  border: 2px solid rgba(205, 233, 208, 0.3);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #000;
  border-radius: 2px;
}

.service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(47, 79, 47, 0.1);
}

.service-item h3 {
  font-size: 1.4rem;
  color: #2f4f2f;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-item p {
  font-size: 1rem;
  color: #5a7a5a;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* Responsive Design for Garden Shop */
@media (max-width: 768px) {
  .shop-title {
    font-size: 2rem;
  }
  
  .shop-subtitle {
    font-size: 1.1rem;
  }
  
  .location-content,
  .bouquet-content,
  .bath-salt-content,
  .shop-events-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .location-info,
  .bouquet-info,
  .bath-salt-info,
  .shop-events-info {
    padding: 0;
    text-align: center;
  }
  
  .location-image,
  .bouquet-image,
  .bath-salt-image,
  .shop-events-image {
    height: 300px;
  }
  
  .bouquet-details,
  .coming-soon,
  .events-details {
    padding: 20px;
  }
  
  .mobile-bouquet {
    margin-top: 20px;
  }
}

/* ========== SERVICES PAGE STYLES ========== */

/* Services Hero Section */
.services-hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.services-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.services-hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1);
}

.services-hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.services-hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero-description {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Overview Section */
.services-overview-section {
  padding: 100px 0;
  background-color: white;
}

.services-overview-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f4f2f;
  text-align: center;
  margin-bottom: 60px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-overview-card {
  background: rgba(205, 233, 208, 0.1);
  border: 2px solid rgba(205, 233, 208, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-overview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #000;
  border-radius: 2px;
}

.service-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(47, 79, 47, 0.15);
}

.service-overview-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.2) 0%, rgba(255, 255, 255, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-overview-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: brightness(0.8) saturate(1.2);
}

.service-overview-content {
  padding: 30px;
  text-align: center;
}

.service-overview-content h3 {
  font-size: 1.2rem;
  color: #5a7a5a;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.4;
}

.service-overview-content h4 {
  font-size: 1.5rem;
  color: #2f4f2f;
  margin-bottom: 20px;
  font-weight: 600;
}

.service-overview-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.service-overview-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(47, 79, 47, 0.3);
}

/* Booking Section */
.booking-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(205, 233, 208, 0.3) 0%, rgba(255, 255, 255, 0.9) 100%);
  text-align: center;
}

.booking-content {
  max-width: 600px;
  margin: 0 auto;
}

.booking-title {
  font-size: 3rem;
  font-weight: 700;
  color: #2f4f2f;
  margin-bottom: 40px;
}

.booking-btn {
  display: inline-block;
  background: linear-gradient(135deg, #2f4f2f 0%, #5a7a5a 100%);
  color: white;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Cascadia Mono', monospace;
}

.booking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(47, 79, 47, 0.3);
}

/* Clients Section */
.clients-section {
  padding: 100px 0;
  background-color: white;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2f4f2f;
  text-align: center;
  margin-bottom: 60px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(205, 233, 208, 0.1);
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(47, 79, 47, 0.1);
}

.client-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: filter 0.3s ease;
}

.client-item:hover .client-logo {
  filter: grayscale(0%) brightness(1);
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .services-hero-description {
    font-size: 1.1rem;
  }
  
  .services-overview-title {
    font-size: 2rem;
  }
  
  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .booking-title {
    font-size: 2.5rem;
  }
  
  .clients-title {
    font-size: 2rem;
  }
  
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .client-logo {
    width: 60px;
    height: 60px;
  }
}
