@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0D9488; /* A professional Teal/Ocean Green for The Dentists */
  --primary-hover: #0F766E;
  --secondary: #134E4A;
  --accent: #F0FDFA;
  --text-main: #334155;
  --text-light: #64748B;
  --bg-color: #F8FAFC;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 16px 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-en {
  font-size: 22px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.logo-hi {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text-main);
  position: relative;
}

nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 180px 0 120px;
  background: radial-gradient(circle at top right, var(--accent), var(--white));
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-text {
  flex: 1.2;
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--accent);
}

.hero h1 {
  font-size: 64px;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--primary);
  position: relative;
}

.hero p {
  font-size: 19px;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 30px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}

.stars {
  color: #FBBF24;
}

.hero-image {
  flex: 1;
  position: relative;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  object-fit: cover;
  height: 550px;
  width: 100%;
}

.floating-card {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Section Common */
.section {
  padding: 120px 0;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 42px;
  margin-bottom: 24px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-text p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--secondary);
}

.feature-item i {
  color: var(--primary);
  font-size: 14px;
}

/* Services */
.services {
  background-color: var(--white);
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

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

.service-card {
  padding: 50px 40px;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  transform: translateY(-10px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 30px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: var(--text-light);
}

/* Clinical Gallery / Facility */
.facility {
  background: var(--secondary);
  color: var(--white);
}

.facility .section-title {
  color: var(--white);
}

.facility-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.facility-text p {
  color: #CCF2F4;
  font-size: 18px;
  margin-bottom: 30px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
}

.contact-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-link i {
  width: 45px;
  height: 45px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact-link p {
  color: var(--text-light);
  font-size: 15px;
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 450px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  padding: 80px 0 40px;
  background: #022C22;
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #94A3B8;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hero-content, .about-grid, .facility-content, .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .about-img-stack { order: -1; }
}

@media (max-width: 768px) {
  nav, .nav-actions .btn-outline { display: none; }
  .mobile-menu-btn { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
}
