:root {
  --bg: #ffffff;
  --bg-alt: #f1f6f3;
  --accent: #628d6d;
  --accent-light: #e6f0e9;
  --accent-dark: #4a6e54;
  --accent2: #c07040;
  --accent2-light: #faeee5;
  --text: #1a1a1a;
  --text-muted: #5a6b60;
  --border: #d6e5da;
  --radius: 8px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.2;
}

/* TOP BAR */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.top-bar-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}
.top-bar-item svg {
  opacity: 0.85;
  flex-shrink: 0;
}
.top-bar-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.top-bar-item a:hover {
  opacity: 0.8;
}
.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 860px) {
  .top-bar-trust {
    display: none;
  }
}
@media (max-width: 600px) {
  .top-bar-email {
    display: none;
  }
  .top-bar-inner {
    padding: 0 1rem;
    gap: 2.25rem;
    justify-content: center;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 36px;
  width: 100%;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  line-height: 1.2;
}
.nav-logo-main {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.nav-logo-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--text);
}

/* ── nav dropdown ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}
.nav-dropdown:hover > a svg {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  list-style: none;
  min-width: 200px;
  padding: 10px 0 6px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu li a:hover {
  background: var(--accent-light);
  color: var(--accent);
}
.mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: 16px;
  border-left: 2px solid var(--accent-light);
  margin: -0.2rem 0 0.2rem;
}
.mobile-nav-sub a {
  font-size: 0.88rem !important;
  color: var(--text-muted) !important;
  border-bottom: none !important;
  padding: 0.25rem 0 !important;
}
.mobile-nav-sub a:hover {
  color: var(--accent) !important;
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.48rem 1.2rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.01em;
  transition: background 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1rem 2rem 1.5rem;
  gap: 0.75rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover {
  color: var(--accent);
}

/* HERO */
#hero {
  padding-top: 104px;
  background: linear-gradient(
    160deg,
    var(--accent-light) 0%,
    #ffffff 65%
  );
}
.hero-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 5rem 2rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent2-light);
  color: var(--accent2);
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: "●";
  font-size: 0.4rem;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.hero-title span {
  color: var(--accent2);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.15s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.hero-image {
  display: block;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}
/* SECTION COMMONS */
section {
  padding: 5.5rem 0;
}
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.8rem;
  letter-spacing: -0.025em;
}
.section-subtitle {
  font-size: 0.975rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ABOUT */
#about {
  background: #628d6d;
}
#about .section-label {
  color: var(--accent2-light);
}
#about .section-title {
  color: #fff;
}
#about .about-text {
  color: rgba(255, 255, 255, 0.8);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.about-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 1rem;
}
.about-text:first-of-type {
  margin-top: 1.25rem;
}

@media (max-width: 760px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image {
    max-width: 280px;
  }
}

/* SERVICES */
#services {
  background: var(--bg-alt);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: 10px;
  padding: 2.25rem 2rem;
  text-align: center;
  transition:
    transform 0.22s,
    box-shadow 0.22s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(98, 141, 109, 0.15);
  border-top-color: var(--accent-dark);
}
.service-icon {
  width: 62px;
  height: 62px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--accent);
  transition: background 0.22s;
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #fff;
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-family: "Inter", sans-serif;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* WHY US */
#why-us {
  background: var(--accent);
}
#why-us .section-label {
  color: var(--accent2-light);
}
#why-us .section-title {
  color: #fff;
}
#why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
#why-us .why-point-text h3 {
  color: #fff;
}
#why-us .why-point-text p {
  color: rgba(255, 255, 255, 0.75);
}
#why-us .why-point-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.why-point {
  display: flex;
  gap: 1rem;
}
.why-point-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.why-point-text h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-family: "Inter", sans-serif;
}
.why-point-text p {
  font-size: 0.855rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* GALLERY */
#gallery {
  background: var(--bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-item {
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}
.gallery-item:hover img {
  opacity: 0.85;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.88);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  padding: 0;
  outline: none;
}
.lightbox-close:hover {
  opacity: 1;
}

/* TESTIMONIALS */
#testimonials {
  background: var(--accent);
}
#testimonials .section-label {
  color: var(--accent2-light);
}
#testimonials .section-title {
  color: #fff;
}
#testimonials .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
#testimonials .reviews-loading {
  color: rgba(255, 255, 255, 0.7);
}
#testimonials .rev-spinner {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
}
#testimonials .reviews-summary-inner {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}
#testimonials .rev-score {
  color: #fff;
}
#testimonials .rev-count,
#testimonials .rev-google-logo {
  color: rgba(255, 255, 255, 0.7);
}
#testimonials .carousel-btn {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
#testimonials .carousel-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}
#testimonials .reviews-dots button {
  background: rgba(255, 255, 255, 0.3);
}
#testimonials .reviews-dots button.active {
  background: #fff;
}
#testimonials .reviews-error {
  color: rgba(255, 255, 255, 0.8);
}
#testimonials .reviews-error a {
  color: #fff;
}

/* AREAS */
#areas {
  background: var(--bg);
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.areas-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}
.areas-list li svg {
  color: var(--accent);
  flex-shrink: 0;
}
.areas-map {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

@media (max-width: 900px) {
  .areas-grid {
    grid-template-columns: 1fr;
  }
  .areas-map {
    height: 320px;
  }
}

/* FAQ */
#faq {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q:hover {
  color: var(--accent);
}
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.25s;
}
.faq-item.open .faq-q svg {
  transform: rotate(180deg);
}
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CONTACT */
#contact {
  background: var(--bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.contact-item-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.1rem;
}
.contact-item-text a,
.contact-item-text span {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-text a:hover {
  color: var(--accent);
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
.contact-form > p {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  background: var(--bg-alt);
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.25rem;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(98, 141, 109, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

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

.form-submit {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.3rem;
  transition:
    background 0.2s,
    transform 0.15s;
}
.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success svg {
  color: #16a34a;
  margin-bottom: 1rem;
}
.form-success h3 {
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* BRANDS BANNER */
.brands-banner {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.brands-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.brands-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  margin: 0;
}
.brands-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.brands-logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s, filter 0.2s;
}
.brands-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}
@media (max-width: 600px) {
  .brands-banner-inner { gap: 16px; }
  .brands-logos { gap: 12px; justify-content: center; }
  .brands-logos img {
    height: 36px;
    flex: 0 0 calc(33.333% - 8px);
    object-fit: contain;
  }
}

/* FOOTER */
footer {
  background: #1f2937;
  color: #d1d5db;
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.65rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.7;
  max-width: 260px;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
.footer-links h4 {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 0.9rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
}
.footer-divider {
  border: none;
  border-top: 1px solid #374151;
  margin-bottom: 1.5rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: #6b7280;
}

/* FLOAT CALL */
.float-call {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(98, 141, 109, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.float-call:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(98, 141, 109, 0.5);
}

/* SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* GOOGLE REVIEWS */
.reviews-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.rev-spinner {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid var(--border);
  border-top-color: var(--accent);
  animation: rev-spin 0.75s linear infinite;
}
@keyframes rev-spin {
  to {
    transform: rotate(360deg);
  }
}

.reviews-summary {
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}
.reviews-summary-inner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.rev-score {
  font-family: "Playfair Display", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.rev-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  display: block;
}
.rev-count {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.rev-google-logo {
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--text-muted);
}

.reviews-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.review-slide {
  flex: 0 0 100%;
  display: flex;
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 2rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  pointer-events: none;
}
.review-card-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}
.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
  overflow: hidden;
}
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-author {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.3;
}
.review-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.875rem;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.review-google-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.review-google-link:hover {
  color: var(--accent);
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(255, 255, 255, 0.5);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.reviews-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s,
    transform 0.25s;
}
.reviews-dots button.active {
  background: #fff;
  transform: scale(1.35);
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 220px;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media (max-width: 600px) {
  .carousel-btn {
    display: none;
  }
  .review-card {
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .review-card::before {
    font-size: 3.5rem;
    top: 0.75rem;
    right: 1rem;
  }
  .review-text {
    -webkit-line-clamp: 6;
  }
}

.reviews-error {
  text-align: center;
  padding: 2rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.reviews-error a {
  color: var(--accent);
}

.reviews-config-notice {
  background: #fefce8;
  border: 1px solid #fde047;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: #713f12;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}
.reviews-config-notice code {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.85em;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }
  .hero-image {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .why-image {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  nav {
    top: 36px;
  }
}
@media (max-width: 640px) {
  .hero-inner {
    padding: 4rem 1.5rem 3.5rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}
