body {
  font-family: -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav a.cta {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

nav a.cta:hover {
  background: #111;
  color: #fff;
}

/* Hero Section */
#hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image img.overlay {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-text {
  position: relative;
  z-index: 10;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* Sections */
section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  scroll-margin-top: 120px;
  padding: 5rem 2rem;
  text-align: center;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* Services Cards */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

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

.service-card h3 {
  margin: 1rem 0 0.5rem;
}

.service-card p {
  margin: 0 1rem 1rem;
}

/* Contact Form */
form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: 0 auto;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

form button.cta {
  align-self: center;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  border: none;
  background: #111;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button.cta:hover {
  background: #333;
}

/* Calendly */
.calendly-inline-widget {
  min-width: 320px;
  height: 650px;
  margin: 0 auto;
}

/* Responsive */
@media(max-width: 768px){
  .services-container {
    flex-direction: column;
    align-items: center;
  }
}
