/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* =========================
   GLOBAL
========================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

section {
  padding: 90px 0;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0f766e;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background: #115e59;
  transform: translateY(-3px);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  padding: 15px 30px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.secondary-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #0f766e;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title h2 {
  margin-top: 12px;
  font-size: 42px;
}

/* =========================
   HEADER
========================= */

.site-header {
  width: 100%;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #e2e8f0;
}

.header-wrapper {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ccfbf1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon i {
  font-size: 24px;
  color: #0f766e;
}

.logo-text h2 {
  font-size: 22px;
  color: #0f172a;
}

.logo-text span {
  color: #64748b;
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #334155;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0f766e;
}

.appointment-btn {
  background: #0f766e;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s ease;
}

.appointment-btn:hover {
  background: #115e59;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero-section {
  padding-top: 70px;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: #ccfbf1;
  color: #0f766e;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content p {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 34px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 40px;
}

.hero-patients {
  display: flex;
  align-items: center;
  gap: 20px;
}

.patient-images {
  display: flex;
}

.patient-images img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-left: -14px;
}

.patient-images img:first-child {
  margin-left: 0;
}

.hero-patients span {
  font-weight: 600;
}

.hero-image {
  position: relative;
}

.hero-image img {
  border-radius: 28px;
}

.experience-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.experience-card h3 {
  font-size: 42px;
  color: #0f766e;
}

.experience-card p {
  color: #64748b;
}

/* =========================
   SERVICES
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #ccfbf1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  color: #0f766e;
  font-size: 30px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card p {
  color: #64748b;
}

/* =========================
   ABOUT
========================= */

.about-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.about-image img {
  border-radius: 30px;
}

.about-content span {
  color: #0f766e;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: 48px;
  margin: 20px 0;
}

.about-content p {
  color: #64748b;
  margin-bottom: 24px;
}

.about-content ul {
  margin-bottom: 34px;
}

.about-content ul li {
  margin-bottom: 14px;
  font-weight: 500;
}

/* =========================
   STATS
========================= */

.stats-section {
  background: #0f766e;
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  text-align: center;
  color: #ffffff;
}

.stat-card h3 {
  font-size: 62px;
  font-weight: 800;
}

.stat-card p {
  margin-top: 10px;
  font-size: 20px;
}

/* =========================
   APPOINTMENT
========================= */

.appointment-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  align-items: center;
}

.appointment-content span {
  color: #0f766e;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

.appointment-content h2 {
  font-size: 48px;
  margin: 20px 0;
}

.appointment-content p {
  color: #64748b;
}

.appointment-form {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid #e2e8f0;
}

.appointment-form input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  margin-bottom: 20px;
  outline: none;
  font-size: 16px;
}

.appointment-form button {
  width: 100%;
  border: none;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  background: #0f172a;
  color: #ffffff;
  padding-top: 80px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-logo-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #164e63;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-icon i {
  color: #67e8f9;
  font-size: 24px;
}

.footer-description {
  color: #94a3b8;
}

.footer-column h4 {
  margin-bottom: 24px;
  font-size: 20px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a,
.footer-contact li {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact li {
  margin-bottom: 16px;
}

.footer-contact i {
  margin-right: 10px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #0f766e;
}

.footer-bottom {
  margin-top: 70px;
  border-top: 1px solid #1e293b;
}

.footer-bottom-wrapper {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.designer-credit {
  color: #67e8f9;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .hero-wrapper,
  .about-wrapper,
  .appointment-wrapper,
  .services-grid,
  .stats-grid,
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .section-title h2,
  .about-content h2,
  .appointment-content h2 {
    font-size: 38px;
  }

  .nav-links {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    gap: 24px;
    padding: 30px 20px;
    display: none;
    border-top: 1px solid #e2e8f0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .appointment-btn {
    display: none;
  }

  .experience-card {
    left: 10px;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 20px 0;
  }
}

@media (max-width: 768px) {

  section {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .section-title h2,
  .about-content h2,
  .appointment-content h2 {
    font-size: 32px;
  }

  .stat-card h3 {
    font-size: 48px;
  }

  .experience-card {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 20px;
  }
}
/* =========================
   PAGE BANNER
========================= */

.page-banner {
  background: linear-gradient(
    135deg,
    #0f766e,
    #115e59
  );

  padding: 120px 0;
  color: #ffffff;
  text-align: center;
}

.page-banner-content span {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.page-banner-content h1 {
  font-size: 58px;
  margin-bottom: 20px;
}

.page-banner-content p {
  max-width: 700px;
  margin: auto;
  color: rgba(255,255,255,0.85);
  font-size: 18px;
}

/* =========================
   EXPERIENCE SECTION
========================= */

.experience-section {
  background: #ffffff;
}
/* =========================
   BLOG
========================= */

.blog-section {
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.06);
}

.blog-content {
  padding: 30px;
}

.blog-category {
  display: inline-block;
  background: #ccfbf1;
  color: #0f766e;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-content h3 {
  font-size: 26px;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-content p {
  color: #64748b;
  margin-bottom: 24px;
}

.blog-meta {
  margin-bottom: 24px;
}

.blog-meta span {
  color: #64748b;
  font-size: 14px;
}

.blog-meta i {
  color: #0f766e;
  margin-right: 8px;
}

/* =========================
   RESPONSIVE BLOG
========================= */

@media (max-width: 992px) {

  .blog-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================
   SINGLE BLOG
========================= */

.single-blog-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.single-blog-image img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 30px;
}

.single-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  color: #64748b;
}

.single-blog-meta i {
  color: #0f766e;
  margin-right: 8px;
}

.single-blog-content h2 {
  font-size: 42px;
  margin-bottom: 24px;
}

.single-blog-content h3 {
  font-size: 28px;
  margin: 30px 0 16px;
}

.single-blog-content p {
  color: #475569;
  margin-bottom: 20px;
}

.single-blog-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.single-blog-content ul li {
  list-style: disc;
  margin-bottom: 10px;
  color: #334155;
}

.single-blog-content blockquote {
  background: #ccfbf1;
  border-left: 5px solid #0f766e;
  padding: 24px;
  border-radius: 16px;
  margin: 30px 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 600;
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.sidebar-search {
  display: flex;
  gap: 10px;
}

.sidebar-search input {
  width: 100%;
  height: 54px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 0 16px;
  outline: none;
}

.sidebar-search button {
  width: 54px;
  border: none;
  background: #0f766e;
  color: #ffffff;
  border-radius: 12px;
  cursor: pointer;
}

.sidebar-links li {
  margin-bottom: 16px;
}

.sidebar-links a {
  color: #334155;
  transition: 0.3s ease;
}

.sidebar-links a:hover {
  color: #0f766e;
}

.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recent-posts li {
  display: flex;
  gap: 14px;
}

.recent-posts img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}

.recent-posts a {
  display: block;
  color: #0f172a;
  font-weight: 600;
  margin-bottom: 8px;
}

.recent-posts span {
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 992px) {

  .single-blog-wrapper {
    grid-template-columns: 1fr;
  }

}