* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Header */
header {
  background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

nav a:hover {
  opacity: 0.8;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(26, 71, 42, 0.7), rgba(26, 71, 42, 0.7)), url('../images/hero-dental-office.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 150px 20px;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cta-button {
  background: #40c997;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  background: #2f9d78;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Rating Badge */
.rating-badge {
  background: rgba(255, 255, 255, 0.95);
  color: #1a472a;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 2rem;
  display: inline-block;
  font-weight: bold;
}

.rating-badge .stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #f8f9fa;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a472a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

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

.service-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  color: #1a472a;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-content p {
  color: #666;
  line-height: 1.8;
}

/* Before/After */
.before-after {
  padding: 80px 20px;
  background: white;
}

.ba-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ba-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.ba-content h2 {
  color: #1a472a;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ba-content p {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .ba-container {
    grid-template-columns: 1fr;
  }
}

/* Team Section */
.team {
  padding: 80px 20px;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 250px;
  margin: 0 auto 1.5rem;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.team-member h3 {
  color: #1a472a;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  color: #40c997;
  font-weight: bold;
  margin-bottom: 1rem;
}

.team-member .bio {
  color: #666;
  font-size: 0.95rem;
}

/* Reviews Section */
.reviews {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
  color: white;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-header .section-title {
  color: white;
  margin-bottom: 1.5rem;
}

.review-rating-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 1.5rem 2.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.big-stars {
  color: #ffc107;
  font-size: 1.8rem;
  margin-right: 1rem;
}

.rating-text {
  font-size: 1.3rem;
  font-weight: bold;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  background: rgba(255, 255, 255, 0.15);
}

.review-stars {
  color: #ffc107;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.8;
}

.review-author {
  font-weight: bold;
  text-align: right;
}

.reviews-cta {
  text-align: center;
  padding: 2rem;
  background: rgba(64, 201, 151, 0.2);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}

/* Stats */
.stats {
  padding: 60px 20px;
  background: white;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #40c997;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: #666;
  font-size: 1.1rem;
}

/* Location Section */
.location-section {
  padding: 80px 20px;
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
}

.map-container {
  margin-bottom: 3rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
  display: block;
  width: 100%;
}

.location-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 2rem;
}

.info-box {
  background: linear-gradient(135deg, #1a472a 0%, #2d6a4f 100%);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

.info-box h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: #40c997;
}

.info-box p {
  line-height: 1.8;
}

/* Contact CTA */
.contact-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, #40c997 0%, #2f9d78 100%);
  color: white;
  text-align: center;
}

.contact-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.contact-button {
  background: white;
  color: #1a472a;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-button:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background: #1a1a1a;
  color: white;
  padding: 2rem;
  text-align: center;
}

footer p {
  margin: 0.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  nav {
    gap: 1rem;
  }

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