:root {
  --primary: #006D77;
  --dark: #3A2F1F;
  --light: #F5F0E8;
  --accent: #F4A261;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

* { box-sizing: border-box; }
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--dark);
  background: var(--light);
  margin: 0;
}
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.navbar {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
  transition: all 0.3s ease;
}
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(58,47,31,0.55), rgba(58,47,31,0.45));
}
.hero-content { position: relative; z-index: 2; color: white; text-shadow: 0 4px 20px rgba(0,0,0,0.5); }
.btn-primary {
  background: var(--primary);
  border: none;
  padding: 14px 32px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,109,119,0.35);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,109,119,0.45);
}
.service-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  height: 100%;
}
.service-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}
.service-card img { transition: transform 0.6s ease; }
.service-card:hover img { transform: scale(1.1); }
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--primary);
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.card-hover:hover { box-shadow: 0 25px 50px rgba(0,0,0,0.15) !important; }
footer { background: var(--dark); color: #ddd; }
.social-icons a {
  color: #ddd;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: var(--primary);
  transform: scale(1.2);
}
@media (max-width: 768px) {
  .hero { min-height: 85vh; }
}