* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6b8e7f;
  --primary-dark: #556f63;
  --secondary: #c9ada7;
  --accent: #9a8c98;
  --background: #fafafa;
  --text: #2d2d2d;
  --text-light: #666;
  --border: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(0, 0, 0, 0.12);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.utility-bar {
  background: var(--primary);
  color: white;
  padding: 8px 0;
  font-size: 14px;
  text-align: center;
}

header {
  background: white;
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 12px var(--shadow-hover);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.logo-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-name img {
  border-radius: 50%;
  object-fit: cover;
}

.business-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
}

nav {
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--primary);
}

.header-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-outline {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}
.btn-secondary {
background: var(--secondary);
color: var(--text);
}
.btn-secondary:hover {
background: var(--accent);
transform: translateY(-2px);
}
.btn-outline {
border: 2px solid var(--primary);
color: var(--primary);
background: transparent;
}
.btn-outline:hover {
background: var(--primary);
color: white;
}
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
padding: 60px 20px;
max-width: 1200px;
margin: 0 auto;
}
.hero-content h1 {
font-size: 42px;
color: var(--primary);
margin-bottom: 20px;
line-height: 1.2;
}
.hero-content p {
font-size: 20px;
color: var(--text-light);
margin-bottom: 30px;
}
.hero-cta {
display: flex;
gap: 15px;
flex-wrap: wrap;
}
.hero-image img {
width: 100%;
height: auto;
border-radius: 16px;
box-shadow: 0 8px 24px var(--shadow);
}
.trust-section {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
padding: 40px 20px;
}
.trust-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
text-align: center;
}
.trust-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.trust-item svg {
opacity: 0.9;
}
.rating-display {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
}
.stars {
display: flex;
gap: 4px;
}
.star {
font-size: 24px;
color: #ffd700;
}
.rating-text {
font-size: 16px;
}
section {
padding: 80px 20px;
}
h2 {
font-size: 36px;
color: var(--primary);
margin-bottom: 20px;
text-align: center;
}
.section-intro {
text-align: center;
max-width: 800px;
margin: 0 auto 50px;
font-size: 18px;
color: var(--text-light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-top: 50px;
}
.service-card {
background: white;
padding: 40px 30px;
border-radius: 16px;
box-shadow: 0 4px 12px var(--shadow);
transition: transform 0.3s, box-shadow 0.3s;
text-align: center;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 24px var(--shadow-hover);
}
.service-card svg {
color: var(--primary);
margin-bottom: 20px;
}
.service-card h3 {
font-size: 22px;
color: var(--primary);
margin-bottom: 15px;
}
.service-card p {
color: var(--text-light);
}
.booking-note {
text-align: center;
margin-top: 50px;
padding: 30px;
background: linear-gradient(135deg, rgba(107, 142, 127, 0.1) 0%, rgba(201, 173, 167, 0.1) 100%);
border-radius: 16px;
}
.booking-note p {
margin-bottom: 20px;
font-size: 18px;
}
.gallery-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 40px;
}
.gallery-grid img {
width: 100%;
height: 300px;
object-fit: cover;
border-radius: 12px;
box-shadow: 0 4px 12px var(--shadow);
transition: transform 0.3s;
}
.gallery-grid img:hover {
transform: scale(1.05);
}
.about-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 40px;
}
.about-text p {
margin-bottom: 20px;
font-size: 17px;
line-height: 1.8;
}
.about-map iframe {
border-radius: 12px;
box-shadow: 0 4px 12px var(--shadow);
}
.reviews-section {
background: linear-gradient(135deg, rgba(107, 142, 127, 0.05) 0%, rgba(201, 173, 167, 0.05) 100%);
}
.reviews-summary {
text-align: center;
margin-bottom: 30px;
}
.reviews-summary .stars {
justify-content: center;
margin-bottom: 10px;
}
.reviews-cta {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
margin-top: 40px;
}
.faq-item {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 2px 8px var(--shadow);
}
.faq-item h3 {
font-size: 18px;
color: var(--primary);
margin-bottom: 15px;
text-align: left;
}
.faq-item p {
color: var(--text-light);
line-height: 1.7;
}
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
margin-top: 40px;
}
.contact-info h3 {
font-size: 24px;
color: var(--primary);
margin-bottom: 25px;
text-align: left;
}
.contact-item {
display: flex;
align-items: flex-start;
gap: 15px;
margin-bottom: 20px;
}
.contact-item svg {
color: var(--primary);
flex-shrink: 0;
margin-top: 2px;
}
.contact-cta {
background: white;
padding: 40px;
border-radius: 16px;
box-shadow: 0 4px 12px var(--shadow);
}
.contact-cta h3 {
font-size: 24px;
color: var(--primary);
margin-bottom: 15px;
text-align: left;
}
.contact-cta p {
color: var(--text-light);
margin-bottom: 30px;
}
.cta-buttons {
display: flex;
flex-direction: column;
gap: 15px;
}
footer {
background: var(--primary);
color: white;
padding: 50px 20px 20px;
}
.footer-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
margin-bottom: 30px;
}
.footer-col h4 {
font-size: 18px;
margin-bottom: 15px;
}
.footer-col a {
display: block;
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
margin-bottom: 10px;
transition: color 0.3s;
}
.footer-col a:hover {
color: white;
}
.social-links {
display: flex;
gap: 15px;
}
.social-links a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: background 0.3s;
}
.social-links a:hover {
background: rgba(255, 255, 255, 0.2);
}
.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
color: rgba(255, 255, 255, 0.7);
}
.mobile-bottom-bar {
display: none;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: white;
box-shadow: 0 -4px 12px var(--shadow);
padding: 12px;
z-index: 999;
gap: 10px;
}
.mobile-cta-btn {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 5px;
padding: 12px;
background: var(--primary);
color: white;
text-decoration: none;
border-radius: 8px;
font-size: 13px;
font-weight: 500;
transition: background 0.3s;
}
.mobile-cta-btn:hover {
background: var(--primary-dark);
}
.back-to-top {
position: fixed;
bottom: 80px;
right: 20px;
width: 50px;
height: 50px;
background: var(--primary);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px var(--shadow);
opacity: 0;
visibility: hidden;
transition: all 0.3s;
z-index: 998;
}
.back-to-top.visible {
opacity: 1;
visibility: visible;
}
.back-to-top:hover {
background: var(--primary-dark);
transform: translateY(-4px);
}
@media (max-width: 768px) {
nav {
display: none;
}
.header-cta {
width: 100%;
justify-content: center;
}
.hero {
grid-template-columns: 1fr;
padding: 40px 20px;
}
.hero-content h1 {
font-size: 32px;
}
.hero-content p {
font-size: 18px;
}
.about-content,
.contact-grid {
grid-template-columns: 1fr;
}
.mobile-bottom-bar {
display: flex;
}
.back-to-top {
bottom: 90px;
}
section {
padding: 50px 20px;
}
h2 {
font-size: 28px;
}
}
@media (prefers-reduced-motion: reduce) {

{
animation: none !important;
transition: none !important;
}
}

a:focus,
button:focus {
outline: 2px solid var(--primary);
outline-offset: 2px;
}