/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e0ddd8;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: none;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav a {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}

.nav a:hover {
  opacity: 0.6;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  height: 700px;
  background: url("images/hero.png") center top/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
}

.hero-content h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: #fff;
  font-size: 2.8rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}

/* Hero CTA */
.btn-hero {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 36px;
  background: #fff;
  color: #222;
  border-radius: 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}

.btn-hero:hover {
  background: #222;
  color: #fff;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 200;
  transition: transform 0.2s, background 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1ebe5d;
}

/* Services */
.services {
  background: #e8e5e0;
  padding: 80px 0;
}

.services h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 48px;
  font-weight: 600;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 24px 0;
}

.service-card p {
  font-size: 0.93rem;
  color: #555;
  padding: 12px 24px 24px;
  line-height: 1.65;
}

/* About */
.about {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.about h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.about p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  max-width: 720px;
  margin: 0 auto;
}

/* Contact */
.contact {
  background: #e8e5e0;
  padding: 80px 0;
}

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

.contact-info h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
  line-height: 1.65;
}

.contact-info a {
  text-decoration: underline;
}

.contact-info a:hover {
  opacity: 0.7;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 0.95rem;
  border: 1px solid #bbb;
  border-radius: 20px;
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group textarea {
  border-radius: 16px;
  resize: vertical;
}

.form-group select {
  border-radius: 20px;
  appearance: none;
  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='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #666;
}

.btn-send {
  background: #222;
  color: #fff;
  border: none;
  padding: 12px 40px;
  font-size: 0.95rem;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-send:hover {
  background: #444;
}

/* Areas We Serve */
.areas {
  background: #f5f3ef;
  padding: 64px 0;
  text-align: center;
}

.areas h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
}

.areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.areas-list li::before {
  content: "✓ ";
  color: #1a7a3c;
  font-weight: 600;
}

.areas-note {
  margin-top: 28px;
  font-size: 0.95rem;
  color: #444;
}

/* Footer */
.footer {
  background: #222;
  color: #aaa;
  text-align: center;
  padding: 24px 0;
  font-size: 0.85rem;
}

.footer-address {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #777;
}

.footer-address a {
  color: #aaa;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid #e0ddd8;
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    height: 360px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    white-space: normal;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
