/* ========================= */
/* style.css */
/* ========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f7f9fc;
  color:#1b2430;
  overflow-x:hidden;
}

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

a{
  text-decoration:none;
}

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

section{
  padding:100px 0;
}

/* ========================= */
/* HEADER */
/* ========================= */

.header{
  position:fixed;
  width:100%;
  top:0;
  z-index:999;

  background:rgba(255,255,255,.85);

  backdrop-filter:blur(14px);

  border-bottom:1px solid rgba(0,0,0,.05);
}

.nav{
  height:85px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  font-size:1.6rem;
  font-weight:800;
  letter-spacing:2px;
}

.logo span{
  color:#3c7cff;
}

.nav-links{
  display:flex;
  gap:35px;
  list-style:none;
}

.nav-links a{
  color:#1b2430;
  transition:.3s;
}

.nav-links a:hover{
  color:#3c7cff;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  min-height:100vh;

  display:flex;
  align-items:center;

  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';

  position:absolute;

  width:600px;
  height:600px;

  background:#3c7cff;

  filter:blur(220px);

  opacity:.08;

  top:-200px;
  right:-100px;
}

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

.hero-tag{
  color:#3c7cff;
  letter-spacing:3px;
  font-weight:700;
}

.hero h1{
  font-size:4.3rem;
  line-height:1.1;
  margin:25px 0;
}

.hero p{
  color:#5d6674;
  line-height:1.9;
  max-width:620px;
  margin-bottom:40px;
}

.hero-image img{
  filter:drop-shadow(
    0 25px 45px rgba(0,0,0,.08)
  );
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-primary,
.btn-secondary{
  padding:16px 30px;

  border-radius:12px;

  font-weight:700;

  transition:.3s;

  display:inline-block;
}

.btn-primary{
  background:#3c7cff;
  color:#fff;
}

.btn-primary:hover{
  transform:translateY(-4px);
}

.btn-secondary{
  border:1px solid #3c7cff;
  color:#3c7cff;
}

.btn-secondary:hover{
  background:#3c7cff;
  color:#fff;
}

/* ========================= */
/* TITLES */
/* ========================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title span{
  color:#3c7cff;
  letter-spacing:3px;
  font-weight:700;
}

.section-title h2{
  font-size:3rem;
  margin-top:15px;
}

/* ========================= */
/* FEATURES */
/* ========================= */

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

.feature-card{
  background:#fff;

  padding:40px 30px;

  border-radius:22px;

  text-align:center;

  box-shadow:
  0 10px 30px rgba(0,0,0,.04);

  transition:.3s;
}

.feature-card:hover{
  transform:translateY(-8px);
}

.feature-card i{
  font-size:2.5rem;
  color:#3c7cff;
  margin-bottom:20px;
}

.feature-card h3{
  margin-bottom:15px;
}

.feature-card p{
  color:#5d6674;
  line-height:1.8;
}

/* ========================= */
/* SPECIALTIES */
/* ========================= */

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

.specialty-card{
  background:#fff;

  padding:40px 30px;

  border-radius:22px;

  box-shadow:
  0 10px 30px rgba(0,0,0,.04);

  transition:.3s;
}

.specialty-card:hover{
  transform:translateY(-8px);
}

.specialty-card i{
  font-size:2.2rem;
  color:#3c7cff;
  margin-bottom:20px;
}

.specialty-card h3{
  margin-bottom:15px;
}

.specialty-card p{
  color:#5d6674;
  line-height:1.8;
}

/* ========================= */
/* TEAM */
/* ========================= */

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

.team-card{
  background:#fff;

  border-radius:24px;

  overflow:hidden;

  box-shadow:
  0 10px 30px rgba(0,0,0,.04);

  transition:.3s;
}

.team-card:hover{
  transform:translateY(-8px);
}

.team-content{
  padding:30px;
  text-align:center;
}

.team-content h3{
  margin-bottom:10px;
}

.team-content span{
  color:#3c7cff;
  font-weight:600;
}

/* ========================= */
/* CTA */
/* ========================= */

.cta{
  background:
  linear-gradient(
    rgba(255,255,255,.92),
    rgba(255,255,255,.92)
  ),
  url('assets/clinic-bg.jpg');

  background-size:cover;
  background-position:center;

  text-align:center;
}

.cta-content span{
  color:#3c7cff;
  letter-spacing:3px;
  font-weight:700;
}

.cta-content h2{
  font-size:3.3rem;
  margin:25px 0;
}

.cta-content p{
  color:#5d6674;
  line-height:1.8;
  max-width:650px;
  margin:auto;
  margin-bottom:40px;
}

/* ========================= */
/* CONTACT */
/* ========================= */

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

.contact-card{
  background:#fff;

  padding:40px 30px;

  border-radius:22px;

  text-align:center;

  box-shadow:
  0 10px 30px rgba(0,0,0,.04);
}

.contact-card i{
  font-size:2rem;
  color:#3c7cff;
  margin-bottom:20px;
}

.contact-card h3{
  margin-bottom:15px;
}

.contact-card p{
  color:#5d6674;
  line-height:1.8;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
  padding:40px 0;
  border-top:1px solid rgba(0,0,0,.06);
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer p{
  color:#5d6674;
  margin-top:10px;
}

.socials{
  display:flex;
  gap:20px;
}

.socials a{
  color:#1b2430;
  font-size:1.4rem;
  transition:.3s;
}

.socials a:hover{
  color:#3c7cff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media(max-width:980px){

  .hero-content{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero p{
    margin:auto;
    margin-bottom:40px;
  }

}

@media(max-width:768px){

  .hero h1{
    font-size:3rem;
  }

  .section-title h2{
    font-size:2.2rem;
  }

  .cta-content h2{
    font-size:2.3rem;
  }

  .nav-links{
    display:none;
  }

}