:root {
  /* Brand Colors - Earthy Luxury Theme */
  --primary-black: #0F2415; /* Deeper, richer Earthy Forest Green */
  --secondary-charcoal: #152619;
  --accent-gold: #C5A040; /* Subtle Bronze/Gold */
  --accent-gold-hover: #b08d35;
  --bg-white: #ffffff;
  --bg-light-gray: #F8F9F8; /* Very soft earthy cream */
  --text-light: #ffffff; 
  --text-dark: #333333; 
  --overlay-dark: rgba(15, 36, 21, 0.7); /* Deeper earthy green overlay */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Layout */
  --container-width: 1200px;
  --section-padding: 120px 20px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-black);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* Reusable Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.btn-primary {
  background-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px); /* Gentle elegant scale */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background-color: transparent;
  color: var(--bg-white) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
}

/* Minimal Elegant Animations */
.reveal-element {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.stagger-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stagger-child.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-weight: 600;
  display: inline-block;
  position: relative;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: var(--accent-gold);
  top: 50%;
  margin-left: 15px;
}

/* --- Navigation / Header --- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.5s ease;
  padding: 25px 0;
}

header.scrolled {
  background-color: rgba(15, 36, 21, 0.98); /* Deeper earthy dark green */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; 
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.35rem; /* Reduced to prevent colliding with Services */
  color: var(--text-light) !important; 
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex: 0 0 auto; /* Natural width so it doesn't get squished or overlap */
}

.logo img {
  height: 50px;
  width: auto;
  /* Removed invert filter to keep original brand color */
}

.logo span {
  color: var(--accent-gold);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  flex: 1; /* Take up the remaining middle space safely */
  justify-content: center;
}

.nav-links a {
  color: var(--text-light) !important;
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold) !important;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light) !important;
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  flex: 0 0 auto; /* Natural width */
}

.contact-phone i {
  color: var(--accent-gold);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  color: var(--text-light) !important;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 15px;
  margin-right: -15px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('images/new-patio-4.jpg.jpg'); /* Wide gazebo shot */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 60px 0; /* Clear header */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  /* Darken the left side more so text pops, lighter on right for the form */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

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

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-text .text-accent {
  color: var(--accent-gold);
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-badges {
  display: flex;
  gap: 25px;
  margin-top: 25px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--bg-white);
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.hero-badge i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

/* Glassmorphism Form Box */
.hero-form-box {
  background: rgba(15, 23, 42, 0.5); /* deep navy/black glass */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.hero-form-box h3 {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero-form-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.hero-form .form-group {
  margin-bottom: 15px;
}

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

.hero-form label {
  display: block;
  color: var(--bg-white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--bg-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

.hero-form input::placeholder,
.hero-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.hero-form select option {
  background: var(--primary-black);
  color: var(--bg-white);
}

.btn-block {
  width: 100%;
  display: block;
  margin-top: 15px;
  padding: 14px;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 3.2rem;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-form .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .contact-phone {
    display: none;
  }
  .logo {
    font-size: 1.1rem;
  }
  .logo img {
    height: 35px;
  }
}

/* --- Global Spacing --- */
.section-padding {
  padding: var(--section-padding);
}
.section-bg-light {
  background-color: var(--bg-light-gray);
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--accent-gold);
}

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

.service-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 36, 21, 0.15); /* Subtle brand color overlay for consistency */
  transition: background 0.4s ease;
}

.service-card:hover .service-img::after {
  background: rgba(15, 36, 21, 0.05); /* Lightens on hover */
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.service-content {
  padding: 35px 30px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
}

/* --- Portfolio Section --- */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #e0e0e0;
  color: var(--text-dark);
  padding: 10px 28px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-black);
  color: var(--bg-white);
  border-color: var(--primary-black);
}

.portfolio-item.hide-category,
.portfolio-item.hide-limit {
  display: none !important;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.portfolio-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(21, 38, 25, 0.85) 0%, rgba(21, 38, 25, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.5s ease;
  padding: 30px;
}

.portfolio-item:hover img {
  transform: scale(1.05); /* Gentle zoom */
}

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

.portfolio-title {
  color: var(--bg-white);
  font-size: 1.5rem;
  margin-bottom: 5px;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-weight: 500;
}

.portfolio-desc {
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transform: translateY(15px);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.1s;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-desc {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* --- About Section --- */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 550px;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  font-size: 2.6rem;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.about-list {
  margin-bottom: 40px;
}

.about-list li {
  margin-bottom: 15px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
}

.about-list i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.stats-container {
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid #eaeaea;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary-black);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
}

/* --- Testimonials Section --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 50px 40px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.4s ease;
  border: 1px solid #f2f2f2;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 25px;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1rem;
  color: #555;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--primary-black);
}

.client-project {
  color: var(--text-dark);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Process Section --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

@media (min-width: 992px) {
  .process-grid::before {
    content: '';
    position: absolute;
    top: 50px; 
    left: 15%;
    right: 15%;
    height: 2px;
    background: #eaeaea;
    z-index: 0;
  }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-icon {
  width: 100px;
  height: 100px;
  background-color: var(--bg-white);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--primary-black);
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.process-step:hover .process-icon {
  background-color: var(--accent-gold);
  color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(197, 160, 64, 0.3);
}

.step-number {
  position: absolute;
  top: -5px;
  right: calc(50% - 55px);
  background: var(--primary-black);
  color: var(--bg-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  border: 4px solid var(--bg-white);
  transition: all 0.4s ease;
}

.process-step:hover .step-number {
  background: var(--accent-gold);
}

.process-step h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-black);
}

.process-step p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Service Area --- */
.service-area {
  background: var(--primary-black);
  color: var(--bg-white);
}

.service-area .section-title {
  color: var(--bg-white);
}

.service-area p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.service-area-map {
  position: relative;
  width: 100%;
  padding-top: 75%; /* Aspect ratio for map */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

.map-wrapper {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  /* Custom filter to make it earthy, vintage, and premium */
  filter: grayscale(80%) sepia(20%) hue-rotate(70deg) contrast(110%) brightness(90%);
  transition: filter 0.4s ease;
}

/* On hover, reveal the normal map colors slightly more for usability */
.map-wrapper:hover iframe {
  filter: grayscale(30%) sepia(10%) hue-rotate(70deg) contrast(100%) brightness(95%);
}

@media (max-width: 992px) {
  .service-area-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.cities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.city-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 25px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--bg-white);
  transition: all 0.3s ease;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.city-badge:hover {
  background: var(--accent-gold);
  color: #ffffff;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

/* --- Contact Section --- */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.contact-info-block {
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 30px;
}

.contact-info-item i {
  font-size: 1.6rem;
  color: var(--accent-gold);
  margin-top: 5px;
}

.contact-info-item p {
  margin-bottom: 5px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: #777;
}

.contact-info-item a {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--primary-black);
}

.contact-info-item a:hover {
  color: var(--accent-gold);
}

.contact-form {
  background: var(--bg-white);
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  border: 1px solid #f5f5f5;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  color: var(--primary-black);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--text-dark);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 2px rgba(197, 160, 64, 0.1);
}

/* Style the select dropdown */
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23C5A040%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
}

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

.form-submit {
  width: 100%;
  margin-top: 15px;
  padding: 16px;
}

/* --- Footer --- */
footer {
  background: var(--primary-black);
  color: var(--bg-white);
  padding: 80px 0 40px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

.footer-links a:hover {
  color: var(--accent-gold);
}

.copyright {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.5);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--bg-white);
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  /* Removed invert filter to keep original brand color */
}

.footer-logo span { color: var(--accent-gold); }

@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  .contact-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-links {
    flex-wrap: wrap;
  }
}

/* --- Gallery Modal & Utilities --- */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 38, 25, 0.95); /* Earthy green modal bg */
  backdrop-filter: blur(5px);
  overflow-y: auto;
  padding: 60px 20px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.gallery-modal-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.gallery-modal-header h2 {
  color: var(--accent-gold);
  margin-bottom: 0;
  font-size: 2.2rem;
}

.gallery-modal-close {
  color: var(--bg-white);
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
}

.gallery-modal-close:hover {
  color: var(--accent-gold);
}

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-modal-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.4s ease;
}

.gallery-modal-grid img:hover {
  transform: scale(1.02);
}

/* --- Quick Wins (CRO & Trust) --- */

/* Trust Banner */
.trust-banner {
  background-color: var(--secondary-charcoal);
  color: var(--bg-white);
  padding: 15px 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-gold);
}

.trust-banner span {
  display: inline-block;
  margin: 0 20px;
}

.trust-banner i {
  color: var(--accent-gold);
  margin-right: 8px;
}

@media (max-width: 768px) {
  .trust-banner span {
    display: block;
    margin: 10px 0;
  }
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-light-gray);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion {
  background-color: #ffffff;
  color: var(--primary-black);
  cursor: pointer;
  padding: 18px 25px;
  width: 100%;
  border: 1px solid #eaeaea;
  border-left: 4px solid transparent;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 10px;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.accordion:hover, .accordion.active {
  background-color: #fcfcfc;
  border-left: 4px solid var(--accent-gold);
}

.accordion:after {
  content: '\002B';
  color: var(--accent-gold);
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 1.5rem;
  line-height: 1;
}

.accordion.active:after {
  content: "\2212";
}

.panel {
  padding: 0 25px;
  background-color: transparent;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  margin-bottom: 15px;
}

.panel p {
  padding: 15px 0 20px 0;
  color: #555;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Sticky Mobile CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-gold);
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: var(--font-body);
  z-index: 9999;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.mobile-sticky-cta i {
  margin-right: 10px;
}

@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
  
  /* Add padding to body so footer isn't hidden behind sticky button */
  body {
    padding-bottom: 60px;
  }
}
