*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Cairo',sans-serif;
  scroll-behavior:smooth;
}

body{
  background:#f5f9ff;
  color:#1e293b;
  overflow-x:hidden;
  line-height:1.8;
}

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

.navbar{
  width:100%;
  position:fixed;
  top:0;
  right:0;
  z-index:1000;
  padding:18px 0;
  background:rgba(255,255,255,0.95);
  backdrop-filter:blur(10px);
}

.navbar.scrolled{
  box-shadow:0 5px 25px rgba(0,0,0,0.08);
  padding:12px 0;
}

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

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

.logo-icon{
  width:65px;
  height:65px;
  border-radius:18px;
  overflow:hidden;
}

.site-logo{
  width:100%;
  height:100%;
  object-fit:cover;
}

.logo-text h2{
  color:#0f172a;
  font-size:22px;
}

.logo-text span{
  color:#64748b;
  font-size:14px;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  text-decoration:none;
  color:#1e293b;
  font-weight:700;
}

.nav-links a:hover{
  color:#0ea5e9;
}

.nav-toggle{
  display:none;
  background:none;
  border:none;
  font-size:25px;
  cursor:pointer;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:120px;
  background:linear-gradient(135deg,#eff6ff,#ffffff);
}

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

.hero-badge,
.section-tag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#dbeafe;
  color:#2563eb;
  padding:10px 18px;
  border-radius:30px;
  margin-bottom:25px;
  font-weight:800;
}

.hero-content h1{
  font-size:58px;
  line-height:1.3;
  margin-bottom:25px;
  color:#0f172a;
}

.hero-content h1 span{
  color:#0ea5e9;
}

.hero-content p{
  font-size:19px;
  color:#475569;
  margin-bottom:35px;
}

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

.btn{
  padding:15px 28px;
  border-radius:15px;
  text-decoration:none;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:none;
  cursor:pointer;
  transition:0.3s;
}

.btn-primary{
  background:linear-gradient(135deg,#0ea5e9,#2563eb);
  color:white;
}

.btn-whatsapp,
.service-btn{
  background:#25D366;
  color:white;
}

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

.hero-image img{
  width:100%;
  border-radius:35px;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
  display:block;
}

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

.section-title{
  font-size:42px;
  color:#0f172a;
  margin-bottom:18px;
}

.section-desc{
  max-width:700px;
  margin:auto;
  color:#64748b;
  font-size:18px;
}

.about-clinic,
.services,
.team,
.contact{
  padding:110px 0;
}

.services,
.contact{
  background:#eff6ff;
}

.about-wrapper,
.contact-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
}

.about-card,
.service-card,
.team-card,
.contact-form,
.contact-item{
  background:white;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.about-card{
  padding:40px;
}

.featured-about{
  background:linear-gradient(135deg,#0ea5e9,#2563eb);
  color:white;
  text-align:center;
}

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

.about-icon{
  width:75px;
  height:75px;
  border-radius:20px;
  background:#eff6ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
  margin-bottom:25px;
}

.about-card p{
  color:#64748b;
}

.featured-about p{
  color:white;
}

.doctor-title{
  display:block;
  margin:10px 0 18px;
  font-weight:800;
}

.doctor-photo-box{
  width:180px;
  height:180px;
  margin:0 auto 25px;
  border-radius:50%;
  overflow:hidden;
  border:6px solid rgba(255,255,255,0.35);
  box-shadow:0 15px 35px rgba(0,0,0,0.25);
  background:white;
}

.doctor-photo-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

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

.service-card{
  padding:30px;
  text-align:center;
  overflow:hidden;
  transition:0.4s;
}

.service-img{
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:22px;
  margin-bottom:25px;
  display:block;
}

.service-icon,
.team-icon{
  width:85px;
  height:85px;
  border-radius:24px;
  background:linear-gradient(135deg,#0ea5e9,#2563eb);
  color:white;
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:34px;
  margin:auto auto 25px;
}

.service-card h3,
.team-card h3{
  margin-bottom:15px;
  font-size:24px;
}

.service-card p{
  color:#64748b;
  margin-bottom:25px;
}

.service-btn{
  display:inline-block;
  padding:13px 24px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
}

.team-card{
  padding:40px 30px;
  text-align:center;
  transition:0.4s;
}

.team-icon{
  border-radius:50%;
}

.team-card span{
  color:#0ea5e9;
  font-weight:800;
}

.contact-info h2{
  font-size:42px;
  margin-bottom:20px;
}

.contact-item{
  display:flex;
  gap:18px;
  margin-top:28px;
  padding:22px;
}

.contact-item i{
  width:55px;
  height:55px;
  background:#dbeafe;
  color:#2563eb;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.contact-form{
  padding:40px;
}

.contact-form h3{
  margin-bottom:30px;
  font-size:30px;
}

.form-group{
  margin-bottom:25px;
}

.form-group label{
  display:block;
  margin-bottom:10px;
  font-weight:800;
}

.input-wrap{
  position:relative;
}

.input-wrap i{
  position:absolute;
  top:18px;
  right:18px;
  color:#64748b;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea{
  width:100%;
  padding:16px 50px 16px 18px;
  border:1px solid #cbd5e1;
  border-radius:16px;
  font-size:16px;
  outline:none;
}

.btn-full{
  width:100%;
  justify-content:center;
}

.map-section{
  margin-top:70px;
}

.map-title{
  font-size:28px;
  margin-bottom:20px;
}

.map-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.map-container{
  position:relative;
  border-radius:25px;
  overflow:hidden;
  cursor:pointer;
}

.map-overlay{
  position:absolute;
  top:25px;
  right:25px;
  background:white;
  padding:15px 20px;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

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

.map-pin i{
  color:#ef4444;
  font-size:25px;
}

.footer{
  background:#0f172a;
  color:white;
  padding-top:70px;
}

.footer-wrapper{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:40px;
  padding-bottom:40px;
}

.footer-logo-box{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.footer-logo-img{
  width:60px;
  height:60px;
  border-radius:16px;
  object-fit:cover;
}

.footer-desc{
  color:#cbd5e1;
  max-width:330px;
  margin-bottom:20px;
}

.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:45px;
  height:45px;
  border-radius:12px;
  background:rgba(255,255,255,0.08);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  text-decoration:none;
}

.footer-social a:hover{
  background:#0ea5e9;
}

.footer-col h4{
  color:white;
  margin-bottom:20px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,0.18);
}

.footer-col a{
  display:block;
  color:#cbd5e1;
  text-decoration:none;
  margin-bottom:10px;
}

.footer-col p{
  color:#cbd5e1;
  margin-bottom:12px;
}

.footer-col i{
  color:#38bdf8;
  margin-left:8px;
}

.copyright{
  border-top:1px solid rgba(255,255,255,0.08);
  text-align:center;
  padding:20px;
  color:#cbd5e1;
}

.whatsapp-float{
  position:fixed;
  bottom:25px;
  left:25px;
  z-index:9999;
  background:#25D366;
  color:white;
  padding:15px 22px;
  border-radius:60px;
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  font-weight:800;
  box-shadow:0 10px 25px rgba(37,211,102,0.35);
  animation:pulse 2s infinite;
}

.whatsapp-float i{
  font-size:28px;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);}
  70%{box-shadow:0 0 0 20px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

@media(max-width:992px){
  .hero-wrapper,
  .about-wrapper,
  .contact-wrapper{
    grid-template-columns:1fr;
  }

  .hero-content{
    text-align:center;
  }

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

@media(max-width:768px){
  .nav-links{
    position:absolute;
    top:100%;
    right:0;
    width:100%;
    background:white;
    flex-direction:column;
    padding:25px;
    display:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
  }

  .nav-links.active{
    display:flex;
  }

  .nav-toggle{
    display:block;
  }

  .hero-content h1{
    font-size:42px;
  }

  .section-title{
    font-size:34px;
  }

  .whatsapp-float span{
    display:none;
  }

  .whatsapp-float{
    width:65px;
    height:65px;
    justify-content:center;
    border-radius:50%;
    padding:0;
  }
}