*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

a{
  text-decoration:none;
  color:inherit;
}

.container{
  width:min(1200px, calc(100% - 32px));
  margin:auto;
}

/* Top Bar */
.top-bar{
  background:#052e2b;
  color:#e2e8f0;
  font-size:14px;
  padding:10px 0;
}

.top-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
}

.top-left{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
}

/* Header */
.header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid #e2e8f0;
}

.navbar{
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-icon{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#0f766e,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
}

.logo-text h2{
  font-size:22px;
  font-weight:800;
}

.logo-text p{
  font-size:12px;
  color:#64748b;
  margin-top:2px;
}

.nav-links{
  display:flex;
  gap:28px;
}

.nav-links a{
  font-weight:600;
  color:#334155;
  position:relative;
  padding:4px 0;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#0f766e;
  transition:.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
  width:100%;
}

.nav-buttons{
  display:flex;
  gap:12px;
}

.btn{
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  transition:.3s;
}

.btn-outline{
  border:1px solid #cbd5e1;
  background:#fff;
  color:#0f766e;
}



.btn-primary{
  background:linear-gradient(135deg,#0f766e,#115e59);
  color:#fff;
  box-shadow:0 10px 20px rgba(15,118,110,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.menu-btn{
  display:none;
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 992px){

  .nav-links,
  .nav-buttons{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .nav-links.show{
    position:absolute;
    top:84px;
    left:16px;
    right:16px;
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:20px;
    padding:20px;
    display:flex;
    flex-direction:column;
    gap:16px;
    box-shadow:0 20px 40px rgba(15,23,42,.12);
  }
}

@media (max-width: 640px){

  .top-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .top-left{
    flex-direction:column;
    gap:6px;
  }

  .logo-text h2{
    font-size:18px;
  }

  .logo-text p{
    font-size:11px;
  }
}


/* Hero Section */
.hero{
  padding:80px 0;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.hero-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:50px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#ecfeff;
  color:#0f766e;
  border:1px solid #ccfbf1;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:24px;
}

.hero-content h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  margin-bottom:20px;
  letter-spacing:-2px;
}

.hero-content h1 span{
  color:#0f766e;
}

.hero-content p{
  font-size:18px;
  color:#64748b;
  max-width:560px;
  margin-bottom:28px;
}

.hero-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 24px;
  margin-bottom:34px;
  color:#334155;
  font-weight:600;
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.hero-reviews{
  display:flex;
  align-items:center;
  gap:16px;
}

.avatars{
  display:flex;
}

.avatars span{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#fff;
  border:3px solid #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:-10px;
  box-shadow:0 6px 18px rgba(15,23,42,.12);
}

.avatars span:first-child{
  margin-left:0;
}

.hero-reviews p{
  margin:0;
  font-size:14px;
}

/* Right Side */
.hero-right{
  position:relative;
}

.hero-image{
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.hero-image img{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

.appointment-card{
  position:absolute;
  right:-20px;
  bottom:30px;
  width:320px;
  background:#fff;
  border-radius:24px;
  padding:24px;
  box-shadow:0 30px 60px rgba(15,23,42,.18);
  border:1px solid #e2e8f0;
}

.appointment-card h3{
  font-size:22px;
  margin-bottom:6px;
}

.appointment-card p{
  color:#64748b;
  margin-bottom:20px;
}

.appointment-card form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.appointment-card input{
  width:100%;
  padding:14px 16px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  font-size:15px;
  outline:none;
  transition:.3s;
}

.appointment-card input:focus{
  border-color:#0f766e;
  box-shadow:0 0 0 4px rgba(15,118,110,.12);
}

.btn-full{
  width:100%;
  justify-content:center;
  border:none;
  cursor:pointer;
}

/* Responsive */
@media (max-width: 1100px){

  .hero-wrapper{
    grid-template-columns:1fr;
  }

  .hero-content{
    text-align:center;
  }

  .hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-features{
    max-width:560px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;
  }

  .hero-buttons,
  .hero-reviews{
    justify-content:center;
  }

  .hero-right{
    max-width:720px;
    margin:auto;
  }

  .appointment-card{
    right:20px;
  }
}

@media (max-width: 640px){

  .hero{
    padding:56px 0;
  }

  .hero-content h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .hero-content p{
    font-size:16px;
  }

  .hero-features{
    grid-template-columns:1fr;
  }

  .hero-image img{
    height:460px;
  }

  .appointment-card{
    position:relative;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:20px;
  }
}

/* Services Section */
.services{
  padding:90px 0;
  background:#ffffff;
}

.section-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 56px;
}

.section-badge{
  display:inline-block;
  background:#ecfeff;
  color:#0f766e;
  border:1px solid #ccfbf1;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:18px;
}

.section-header h2{
  font-size:44px;
  font-weight:800;
  margin-bottom:16px;
  letter-spacing:-1px;
}

.section-header p{
  color:#64748b;
  font-size:18px;
  line-height:1.7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
}

.service-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  padding:34px 28px;
  text-align:center;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.service-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,#0f766e,#2563eb);
  transform:scaleX(0);
  transform-origin:left;
  transition:.35s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(15,23,42,.12);
  border-color:#ccfbf1;
}

.service-card:hover::before{
  transform:scaleX(1);
}

.service-icon{
  width:84px;
  height:84px;
  margin:0 auto 22px;
  border-radius:24px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:36px;
  transition:.35s ease;
}

.service-card:hover .service-icon{
  transform:scale(1.08) rotate(4deg);
}

.service-card h3{
  font-size:24px;
  font-weight:700;
  margin-bottom:14px;
  color:#0f172a;
}

.service-card p{
  color:#64748b;
  line-height:1.7;
  font-size:16px;
}

/* Responsive */
@media (max-width: 992px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px){

  .services{
    padding:64px 0;
  }

  .section-header h2{
    font-size:34px;
  }

  .section-header p{
    font-size:16px;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .service-card{
    padding:28px 22px;
  }

  .service-icon{
    width:72px;
    height:72px;
    font-size:30px;
  }
}


/* Statistics Section */
.stats-section{
  padding:80px 0;
  background:linear-gradient(135deg,#0f172a 0%,#111827 100%);
  position:relative;
  overflow:hidden;
}

.stats-section::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  background:rgba(15,118,110,.18);
  border-radius:50%;
  top:-120px;
  left:-120px;
}

.stats-section::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  background:rgba(37,99,235,.16);
  border-radius:50%;
  bottom:-100px;
  right:-100px;
}

.stats-wrapper{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.stat-card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  padding:34px 24px;
  text-align:center;
  backdrop-filter:blur(10px);
  transition:.35s ease;
}

.stat-card:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.22);
}

.stat-icon{
  width:78px;
  height:78px;
  margin:0 auto 22px;
  border-radius:22px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  color:#fff;
  box-shadow:0 18px 36px rgba(20,184,166,.28);
}

.stat-card h3{
  font-size:52px;
  font-weight:800;
  color:#fff;
  line-height:1;
  margin-bottom:10px;
  letter-spacing:-2px;
}

.stat-card span{
  color:#cbd5e1;
  font-size:17px;
  font-weight:600;
}

/* Responsive */
@media (max-width: 992px){
  .stats-wrapper{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 640px){

  .stats-section{
    padding:64px 0;
  }

  .stats-wrapper{
    grid-template-columns:1fr;
  }

  .stat-card h3{
    font-size:44px;
  }

  .stat-icon{
    width:70px;
    height:70px;
    font-size:30px;
  }
}


/* About Section */
.about-section{
  padding:100px 0;
  background:#f8fafc;
}

.about-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* Image Area */
.about-image-area{
  position:relative;
}

.about-image{
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.14);
}

.about-image img{
  width:100%;
  height:620px;
  object-fit:cover;
  display:block;
}

.experience-badge{
  position:absolute;
  left:-20px;
  bottom:30px;
  background:#fff;
  border-radius:24px;
  padding:22px 26px;
  box-shadow:0 20px 40px rgba(15,23,42,.16);
  border:1px solid #e2e8f0;
}

.experience-badge strong{
  display:block;
  font-size:28px;
  font-weight:800;
  color:#0f766e;
  margin-bottom:4px;
}

.experience-badge span{
  color:#64748b;
  font-size:14px;
  font-weight:600;
}

/* Content */
.about-content h2{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 22px;
  letter-spacing:-1px;
}

.about-text{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  margin-bottom:32px;
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:22px;
  margin-bottom:36px;
}

.about-feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:22px;
  transition:.3s ease;
}

.about-feature:hover{
  transform:translateX(6px);
  box-shadow:0 16px 32px rgba(15,23,42,.08);
  border-color:#ccfbf1;
}

.feature-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
}

.about-feature h4{
  font-size:20px;
  font-weight:700;
  margin-bottom:6px;
  color:#0f172a;
}

.about-feature p{
  color:#64748b;
  line-height:1.6;
}

.about-cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 1100px){

  .about-wrapper{
    grid-template-columns:1fr;
  }

  .about-image-area{
    max-width:720px;
    margin:auto;
  }

  .about-content{
    text-align:center;
  }

  .about-features{
    text-align:left;
  }

  .about-cta{
    justify-content:center;
  }
}

@media (max-width: 640px){

  .about-section{
    padding:72px 0;
  }

  .about-content h2{
    font-size:36px;
  }

  .about-text{
    font-size:16px;
  }

  .about-image img{
    height:460px;
  }

  .experience-badge{
    left:16px;
    right:16px;
    bottom:16px;
    text-align:center;
  }

  .about-feature{
    padding:18px;
  }
}

/* Testimonials Section */
.testimonials-section{
  padding:100px 0;
  background:#ffffff;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-bottom:52px;
}

.testimonial-card{
  position:relative;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:32px;
  padding:34px 30px;
  transition:.35s ease;
  overflow:hidden;
}

.testimonial-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,rgba(15,118,110,.03),rgba(37,99,235,.03));
  opacity:0;
  transition:.35s ease;
}

.testimonial-card:hover{
  transform:translateY(-10px);
  box-shadow:0 25px 50px rgba(15,23,42,.12);
  border-color:#ccfbf1;
}

.testimonial-card:hover::before{
  opacity:1;
}

.testimonial-card > *{
  position:relative;
  z-index:2;
}

.testimonial-card.featured{
  background:linear-gradient(135deg,#0f766e,#2563eb);
  color:#fff;
  border:none;
  transform:scale(1.03);
  box-shadow:0 30px 60px rgba(37,99,235,.28);
}

.quote{
  position:absolute;
  top:22px;
  right:22px;
  font-size:44px;
  opacity:.22;
}

.stars{
  color:#f59e0b;
  font-size:20px;
  letter-spacing:2px;
  margin-bottom:22px;
}

.featured .stars{
  color:#fde68a;
}

.review{
  font-size:17px;
  line-height:1.9;
  color:#475569;
  margin-bottom:28px;
}

.featured .review{
  color:rgba(255,255,255,.92);
}

.reviewer{
  display:flex;
  align-items:center;
  gap:14px;
}

.reviewer-avatar{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  flex-shrink:0;
}

.featured .reviewer-avatar{
  background:rgba(255,255,255,.18);
}

.reviewer h4{
  font-size:18px;
  font-weight:700;
  margin-bottom:4px;
}

.reviewer span{
  color:#64748b;
  font-size:14px;
  font-weight:600;
}

.featured .reviewer span{
  color:rgba(255,255,255,.78);
}

/* Summary */
.testimonial-summary{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:32px;
  padding:34px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.summary-item{
  text-align:center;
}

.summary-item h3{
  font-size:42px;
  font-weight:800;
  color:#0f766e;
  margin-bottom:8px;
  letter-spacing:-1px;
}

.summary-item p{
  color:#64748b;
  font-weight:600;
}

/* Responsive */
@media (max-width: 1100px){

  .testimonials-grid{
    grid-template-columns:1fr;
    max-width:720px;
    margin:0 auto 44px;
  }

  .testimonial-card.featured{
    transform:none;
  }
}

@media (max-width: 640px){

  .testimonials-section{
    padding:72px 0;
  }

  .testimonial-card{
    padding:28px 22px;
  }

  .review{
    font-size:16px;
  }

  .testimonial-summary{
    grid-template-columns:1fr;
    padding:28px 22px;
  }

  .summary-item h3{
    font-size:34px;
  }
}


/* CTA / Newsletter Section */
.cta-section{
  padding:100px 0;
  background:#f8fafc;
}

.cta-wrapper{
  position:relative;
  overflow:hidden;
  background:linear-gradient(135deg,#0f172a 0%,#111827 50%,#0f766e 100%);
  border-radius:40px;
  padding:70px;
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:48px;
  align-items:center;
  box-shadow:0 40px 80px rgba(15,23,42,.18);
}

.cta-shape{
  position:absolute;
  border-radius:50%;
  filter:blur(2px);
}

.cta-shape-1{
  width:260px;
  height:260px;
  background:rgba(37,99,235,.18);
  top:-80px;
  right:-60px;
}

.cta-shape-2{
  width:180px;
  height:180px;
  background:rgba(20,184,166,.18);
  bottom:-60px;
  left:-40px;
}

.cta-content,
.cta-contact{
  position:relative;
  z-index:2;
}

.cta-badge{
  display:inline-block;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  padding:10px 18px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:22px;
}

.cta-content h2{
  font-size:48px;
  line-height:1.1;
  font-weight:800;
  color:#fff;
  margin-bottom:20px;
  letter-spacing:-1px;
}

.cta-content p{
  color:#cbd5e1;
  font-size:18px;
  line-height:1.8;
  margin-bottom:30px;
  max-width:620px;
}

/* Newsletter Form */
.newsletter-form{
  display:flex;
  gap:14px;
  margin-bottom:22px;
}

.newsletter-form input{
  flex:1;
  min-width:0;
  padding:16px 18px;
  border:none;
  border-radius:18px;
  background:#fff;
  font-size:16px;
  outline:none;
}

.newsletter-form button{
  padding:16px 24px;
  border:none;
  border-radius:18px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
  box-shadow:0 14px 28px rgba(37,99,235,.25);
}

.newsletter-form button:hover{
  transform:translateY(-2px);
}

.cta-features{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  color:#e2e8f0;
  font-weight:600;
}

/* Contact Card */
.contact-card{
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  border-radius:32px;
  padding:34px;
  text-align:center;
  backdrop-filter:blur(10px);
}

.contact-icon-large{
  width:88px;
  height:88px;
  margin:0 auto 22px;
  border-radius:26px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:40px;
  color:#fff;
  box-shadow:0 18px 36px rgba(20,184,166,.28);
}

.contact-card h3{
  font-size:28px;
  font-weight:800;
  color:#fff;
  margin-bottom:14px;
}

.contact-card p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:24px;
}

.phone-number{
  display:block;
  font-size:30px;
  font-weight:800;
  color:#fff;
  margin-bottom:24px;
  letter-spacing:-1px;
}

.btn-light{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  /* width:100%; */
  padding:16px 20px;
  border-radius:18px;
  background:#fff;
  color:#0f172a;
  font-weight:700;
  transition:.3s ease;
}

.btn-light:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(255,255,255,.18);
}

/* Responsive */
@media (max-width: 1100px){

  .cta-wrapper{
    grid-template-columns:1fr;
    padding:56px;
  }

  .cta-content{
    text-align:center;
  }

  .cta-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .cta-features{
    justify-content:center;
  }
}

@media (max-width: 640px){

  .cta-section{
    padding:72px 0;
  }

  .cta-wrapper{
    padding:36px 24px;
    border-radius:32px;
  }

  .cta-content h2{
    font-size:36px;
  }

  .cta-content p{
    font-size:16px;
  }

  .newsletter-form{
    flex-direction:column;
  }

  .newsletter-form button{
    width:100%;
  }

  .phone-number{
    font-size:24px;
  }

  .contact-card{
    padding:28px 22px;
  }
}

/* Footer */
.footer{
  background:#0b1120;
  color:#cbd5e1;
  position:relative;
  overflow:hidden;
}

.footer::before{
  content:"";
  position:absolute;
  width:320px;
  height:320px;
  background:rgba(15,118,110,.12);
  border-radius:50%;
  top:-120px;
  right:-100px;
}

.footer-top{
  position:relative;
  z-index:2;
  padding:80px 0 56px;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
}

/* Brand */
.footer-logo{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:22px;
}

.footer-logo-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:#fff;
}

.footer-logo h3{
  font-size:24px;
  font-weight:800;
  color:#fff;
  margin-bottom:4px;
}

.footer-logo p{
  color:#94a3b8;
  font-size:14px;
}

.footer-about{
  color:#94a3b8;
  line-height:1.8;
  margin-bottom:28px;
  max-width:320px;
}

/* Socials */
.footer-socials{
  display:flex;
  gap:12px;
}

.footer-socials a{
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  transition:.3s ease;
}

.footer-socials a:hover{
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  transform:translateY(-3px);
}

/* Columns */
.footer-column h4{
  color:#fff;
  font-size:18px;
  margin-bottom:22px;
  font-weight:700;
}

.footer-column a{
  display:block;
  color:#94a3b8;
  margin-bottom:14px;
  transition:.3s ease;
}

.footer-column a:hover{
  color:#fff;
  transform:translateX(4px);
}

/* Contact */
.footer-contact{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:18px;
}

.footer-contact span{
  width:36px;
  height:36px;
  border-radius:12px;
  background:rgba(20,184,166,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.footer-contact p{
  color:#94a3b8;
  line-height:1.6;
}

/* Divider */
.footer-divider{
  height:1px;
  background:rgba(148,163,184,.16);
}

/* Bottom */
.footer-bottom{
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
  color:#94a3b8;
  font-size:15px;
}

.footer-bottom-links{
  display:flex;
  gap:20px;
}

.footer-bottom-links a{
  color:#cbd5e1;
}

.footer-bottom strong{
  color:#fff;
}

/* Responsive */
@media (max-width: 1100px){
  .footer-top{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 640px){

  .footer-top{
    grid-template-columns:1fr;
    padding:64px 0 40px;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }

  .footer-bottom-links{
    justify-content:center;
  }

  .footer-about{
    max-width:100%;
  }
}

.logo-icon i,
.footer-logo-icon i,
.service-icon i,
.stat-icon i,
.feature-icon i,
.contact-icon-large i{
  font-size:inherit;
}

.hero-features i,
.cta-features i{
  color:#14b8a6;
  margin-right:8px;
}

.stars i{
  color:#f59e0b;
}

.footer-socials i{
  font-size:18px;
}

.top-bar i{
  margin-right:6px;
  color:#5eead4;
}

.menu-btn{
 
  width:46px;
  height:46px;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s ease;
}

.menu-btn i{
  font-size:20px;
  color:#0f172a;
  transition:.3s ease;
}

.menu-btn:hover{
  border-color:#0f766e;
  transform:translateY(-1px);
}

.menu-btn:hover i{
  color:#0f766e;
}



/*about page styles*/

/* About Hero */
.about-hero{
  padding:90px 0 70px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  overflow:hidden;
}

.about-hero-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.about-hero-content h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  margin:22px 0;
  color:#0f172a;
}

.about-hero-content h1 span{
  color:#0f766e;
  display:block;
}

.about-hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  max-width:560px;
  margin-bottom:32px;
}

.about-hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.about-hero-buttons .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.about-hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:18px 24px;
  color:#334155;
  font-weight:600;
}

.about-hero-features i{
  color:#14b8a6;
  margin-right:8px;
}

/* Image */
.about-hero-image{
  position:relative;
}

.image-card{
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.image-card img{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

/* Floating Cards */
.floating-card{
  position:absolute;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:22px;
  padding:18px 20px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
  min-width:240px;
}

.floating-card i{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#0f766e;
  font-size:22px;
  flex-shrink:0;
}

.floating-card strong{
  display:block;
  color:#0f172a;
  font-size:18px;
  margin-bottom:2px;
}

.floating-card span{
  color:#64748b;
  font-size:14px;
}

.floating-card-1{
  left:-20px;
  bottom:34px;
}

.floating-card-2{
  right:-20px;
  top:34px;
}

/* Responsive */
@media (max-width: 1100px){

  .about-hero-wrapper{
    grid-template-columns:1fr;
  }

  .about-hero-content{
    text-align:center;
  }

  .about-hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .about-hero-buttons,
  .about-hero-features{
    justify-content:center;
  }

  .about-hero-image{
    max-width:720px;
    margin:auto;
  }
}

@media (max-width: 640px){

  .about-hero{
    padding:64px 0 48px;
  }

  .about-hero-content h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .about-hero-content p{
    font-size:16px;
  }

  .image-card img{
    height:460px;
  }

  .floating-card{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .about-hero-features{
    flex-direction:column;
    align-items:flex-start;
    text-align:left;
  }
}

/* Story Section */
.story-section{
  padding:100px 0;
  background:#ffffff;
}

.story-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
  margin-bottom:72px;
}

/* Image */
.story-image-area{
  position:relative;
}

.story-image{
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.14);
}

.story-image img{
  width:100%;
  height:620px;
  object-fit:cover;
  display:block;
}

.story-badge{
  position:absolute;
  right:-20px;
  bottom:28px;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.story-badge i{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.story-badge strong{
  display:block;
  color:#0f172a;
  margin-bottom:2px;
}

.story-badge span{
  color:#64748b;
  font-size:14px;
}

/* Content */
.story-content h2{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 22px;
  letter-spacing:-1px;
  color:#0f172a;
}

.story-content p{
  color:#64748b;
  line-height:1.8;
  font-size:17px;
  margin-bottom:18px;
}

/* Timeline */
.story-timeline{
  margin-top:28px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.timeline-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  position:relative;
}

.timeline-item:not(:last-child)::after{
  content:"";
  position:absolute;
  left:11px;
  top:34px;
  width:2px;
  height:48px;
  background:#dbeafe;
}

.timeline-dot{
  width:24px;
  height:24px;
  border-radius:50%;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  box-shadow:0 0 0 6px #ecfeff;
  flex-shrink:0;
}

.timeline-item h4{
  font-size:20px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}

.timeline-item p{
  margin:0;
  font-size:15px;
}

/* Mission Grid */
.mission-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.mission-card{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:32px;
  padding:34px 30px;
  text-align:center;
  transition:.35s ease;
}

.mission-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(15,23,42,.10);
  border-color:#ccfbf1;
}

.mission-card.featured{
  background:linear-gradient(135deg,#0f766e,#2563eb);
  color:#fff;
  border:none;
  box-shadow:0 30px 60px rgba(37,99,235,.22);
}

.mission-icon{
  width:84px;
  height:84px;
  margin:0 auto 24px;
  border-radius:24px;
  background:#fff;
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  box-shadow:0 14px 28px rgba(15,23,42,.08);
}

.mission-card.featured .mission-icon{
  background:rgba(255,255,255,.16);
  color:#fff;
  box-shadow:none;
}

.mission-card h3{
  font-size:26px;
  font-weight:800;
  margin-bottom:14px;
}

.mission-card p{
  line-height:1.8;
  color:#64748b;
}

.mission-card.featured p{
  color:rgba(255,255,255,.88);
}

/* Responsive */
@media (max-width:1100px){

  .story-wrapper{
    grid-template-columns:1fr;
  }

  .story-image-area{
    max-width:720px;
    margin:auto;
  }

  .mission-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){

  .story-section{
    padding:72px 0;
  }

  .story-content h2{
    font-size:36px;
  }

  .story-content p{
    font-size:16px;
  }

  .story-image img{
    height:460px;
  }

  .story-badge{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .mission-card{
    padding:28px 22px;
  }
}

/* Doctor Section */
.doctor-section{
  padding:100px 0;
  background:#f8fafc;
}

.doctor-wrapper{
  display:grid;
  grid-template-columns:380px 1fr;
  gap:48px;
  align-items:start;
}

/* Doctor Card */
.doctor-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(15,23,42,.08);
  position:sticky;
  top:110px;
}

.doctor-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.doctor-info{
  padding:28px;
  text-align:center;
}

.doctor-info h3{
  font-size:28px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:6px;
}

.doctor-info span{
  color:#0f766e;
  font-weight:600;
}

.doctor-socials{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:24px;
}

.doctor-socials a{
  width:44px;
  height:44px;
  border-radius:14px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#334155;
  transition:.3s ease;
}

.doctor-socials a:hover{
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  transform:translateY(-3px);
}

/* Details */
.doctor-details{
  display:flex;
  flex-direction:column;
  gap:32px;
}

.doctor-intro{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:32px;
  padding:36px;
}

.doctor-intro h3{
  font-size:34px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:18px;
  color:#0f172a;
}

.doctor-intro p{
  color:#64748b;
  line-height:1.8;
  font-size:17px;
  margin-bottom:16px;
}

.doctor-intro p:last-child{
  margin-bottom:0;
}

/* Qualification Grid */
.qualification-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.qualification-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  padding:26px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  transition:.3s ease;
}

.qualification-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 36px rgba(15,23,42,.08);
  border-color:#ccfbf1;
}

.qualification-card i{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.qualification-card h4{
  font-size:18px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}

.qualification-card p{
  color:#64748b;
  font-size:15px;
}

/* Stats */
.doctor-stats{
  background:linear-gradient(135deg,#0f766e,#2563eb);
  border-radius:32px;
  padding:32px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  color:#fff;
  text-align:center;
  box-shadow:0 24px 48px rgba(37,99,235,.22);
}

.doctor-stat strong{
  display:block;
  font-size:40px;
  font-weight:800;
  line-height:1;
  margin-bottom:8px;
}

.doctor-stat span{
  font-size:14px;
  color:rgba(255,255,255,.85);
  font-weight:600;
}

/* Actions */
.doctor-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.doctor-actions .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Responsive */
@media (max-width:1100px){

  .doctor-wrapper{
    grid-template-columns:1fr;
  }

  .doctor-card{
    position:relative;
    top:auto;
    max-width:520px;
    margin:0 auto;
  }
}

@media (max-width:640px){

  .doctor-section{
    padding:72px 0;
  }

  .doctor-intro{
    padding:28px 22px;
  }

  .doctor-intro h3{
    font-size:28px;
  }

  .doctor-intro p{
    font-size:16px;
  }

  .qualification-grid{
    grid-template-columns:1fr;
  }

  .doctor-stats{
    grid-template-columns:1fr;
    gap:24px;
  }

  .doctor-actions{
    flex-direction:column;
  }

  .doctor-actions .btn{
    width:100%;
    justify-content:center;
  }
}


/* Facility Section */
.facility-section{
  padding:100px 0;
  background:#ffffff;
}

.facility-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  grid-template-rows:260px 260px;
  gap:24px;
}

.facility-item{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(15,23,42,.10);
}

.facility-item.large{
  grid-row:1 / span 2;
}

.facility-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.facility-item:hover img{
  transform:scale(1.06);
}

/* Choose Section */
.choose-section{
  padding:100px 0;
  background:#f8fafc;
}

.choose-wrapper{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:48px;
  align-items:center;
}

.choose-content h2{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 20px;
  color:#0f172a;
}

.choose-content p{
  color:#64748b;
  font-size:17px;
  line-height:1.8;
  margin-bottom:30px;
}

.choose-list{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.choose-item{
  display:flex;
  gap:18px;
  align-items:flex-start;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:22px;
  transition:.3s ease;
}

.choose-item:hover{
  transform:translateX(6px);
  box-shadow:0 16px 32px rgba(15,23,42,.08);
  border-color:#ccfbf1;
}

.choose-item i{
  width:58px;
  height:58px;
  border-radius:18px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.choose-item h4{
  font-size:20px;
  font-weight:700;
  margin-bottom:6px;
  color:#0f172a;
}

.choose-item p{
  margin:0;
  font-size:15px;
}

/* Emergency Card */
.choose-card{
  background:linear-gradient(135deg,#0f172a,#111827,#0f766e);
  color:#fff;
  border-radius:36px;
  padding:40px 34px;
  text-align:center;
  box-shadow:0 32px 64px rgba(15,23,42,.18);
}

.choose-icon{
  width:92px;
  height:92px;
  margin:0 auto 24px;
  border-radius:28px;
  background:rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
}

.choose-card h3{
  font-size:32px;
  font-weight:800;
  margin-bottom:14px;
}

.choose-card p{
  color:#cbd5e1;
  line-height:1.8;
  margin-bottom:26px;
}

.emergency-number{
  display:block;
  font-size:34px;
  font-weight:800;
  color:#fff;
  margin-bottom:24px;
  letter-spacing:-1px;
}

.choose-card .btn-light{
  width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

/* Responsive */
@media (max-width:1100px){

  .facility-grid{
    grid-template-columns:1fr;
    grid-template-rows:auto;
  }

  .facility-item.large{
    grid-row:auto;
  }

  .facility-item{
    height:260px;
  }

  .choose-wrapper{
    grid-template-columns:1fr;
  }
}

@media (max-width:640px){

  .facility-section,
  .choose-section{
    padding:72px 0;
  }

  .choose-content h2{
    font-size:36px;
  }

  .choose-content p{
    font-size:16px;
  }

  .choose-card{
    padding:32px 24px;
  }

  .emergency-number{
    font-size:28px;
  }
}

/*services*/

/* Services Hero */
.services-hero{
  padding:90px 0 70px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.services-hero-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.services-hero-content h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  margin:22px 0;
  color:#0f172a;
}

.services-hero-content h1 span{
  color:#0f766e;
  display:block;
}

.services-hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  max-width:560px;
  margin-bottom:32px;
}

.services-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.services-hero-actions .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Highlights */
.services-hero-highlights{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}

.services-hero-highlights div{
  min-width:110px;
}

.services-hero-highlights strong{
  display:block;
  font-size:34px;
  font-weight:800;
  color:#0f172a;
  line-height:1;
  margin-bottom:6px;
}

.services-hero-highlights span{
  color:#64748b;
  font-weight:600;
}

/* Image */
.services-hero-image{
  position:relative;
}

.hero-main-image{
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.hero-main-image img{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

.hero-floating-service{
  position:absolute;
  right:-20px;
  bottom:36px;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.hero-floating-service i{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.hero-floating-service strong{
  display:block;
  color:#0f172a;
  margin-bottom:2px;
}

.hero-floating-service span{
  color:#64748b;
  font-size:14px;
}

/* Categories */
.service-categories{
  padding:90px 0;
  background:#ffffff;
}

.category-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.category-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:32px;
  padding:34px 28px;
  text-align:center;
  transition:.35s ease;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
}

.category-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(15,23,42,.10);
  border-color:#ccfbf1;
}

.category-card i{
  width:84px;
  height:84px;
  margin:0 auto 22px;
  border-radius:24px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:34px;
  transition:.35s ease;
}

.category-card:hover i{
  transform:scale(1.08) rotate(4deg);
}

.category-card h3{
  font-size:24px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:10px;
}

.category-card p{
  color:#64748b;
  line-height:1.7;
}

/* Responsive */
@media (max-width:1100px){

  .services-hero-wrapper{
    grid-template-columns:1fr;
  }

  .services-hero-content{
    text-align:center;
  }

  .services-hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .services-hero-actions,
  .services-hero-highlights{
    justify-content:center;
  }

  .services-hero-image{
    max-width:720px;
    margin:auto;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){

  .services-hero{
    padding:64px 0 48px;
  }

  .services-hero-content h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .services-hero-content p{
    font-size:16px;
  }

  .hero-main-image img{
    height:460px;
  }

  .hero-floating-service{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .services-hero-highlights{
    gap:22px;
  }

  .category-grid{
    grid-template-columns:1fr;
  }
}

/* Detailed Services */
.detailed-services{
  padding:100px 0;
  background:#f8fafc;
}

.service-detail-list{
  display:flex;
  flex-direction:column;
  gap:36px;
}

.service-detail-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:36px;
  overflow:hidden;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:0;
  box-shadow:0 16px 36px rgba(15,23,42,.06);
  transition:.35s ease;
}

.service-detail-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 52px rgba(15,23,42,.10);
}

.service-detail-card.reverse{
  grid-template-columns:1fr 420px;
}

.service-detail-card.reverse .service-detail-image{
  order:2;
}

.service-detail-image img{
  width:100%;
  height:100%;
  min-height:320px;
  object-fit:cover;
  display:block;
}

.service-detail-content{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.service-detail-icon{
  width:76px;
  height:76px;
  border-radius:24px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:24px;
}

.service-detail-content h3{
  font-size:34px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:16px;
}

.service-detail-content p{
  color:#64748b;
  line-height:1.8;
  font-size:17px;
  margin-bottom:24px;
}

.service-feature-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-bottom:30px;
}

.service-feature-list li{
  display:flex;
  align-items:center;
  gap:12px;
  color:#334155;
  font-weight:600;
}

.service-feature-list i{
  width:24px;
  height:24px;
  border-radius:50%;
  background:#ecfeff;
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.service-detail-actions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.service-price{
  color:#0f766e;
  font-weight:800;
  font-size:18px;
}

/* Responsive */
@media (max-width:1100px){

  .service-detail-card,
  .service-detail-card.reverse{
    grid-template-columns:1fr;
  }

  .service-detail-card.reverse .service-detail-image{
    order:0;
  }
}

@media (max-width:640px){

  .detailed-services{
    padding:72px 0;
  }

  .service-detail-content{
    padding:28px 22px;
  }

  .service-detail-content h3{
    font-size:28px;
  }

  .service-detail-content p{
    font-size:16px;
  }

  .service-detail-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .service-detail-actions .btn{
    width:100%;
    justify-content:center;
  }

  .service-price{
    text-align:center;
  }
}

/* Emergency Banner */
.emergency-banner{
  padding:80px 0;
  background:linear-gradient(135deg,#991b1b,#dc2626);
  color:#fff;
}

.emergency-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
}

.emergency-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:18px;
}

.emergency-content h2{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin-bottom:16px;
}

.emergency-content p{
  color:#fee2e2;
  max-width:640px;
  line-height:1.8;
  font-size:17px;
}

.emergency-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-light{
  background:#fff;
  color:#991b1b;
  border:1px solid #fff;
}

.btn-outline-light{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.5);
}

.btn-light,
.btn-outline-light{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  border-radius:16px;
  font-weight:700;
}

/* FAQ */
.faq-section{
  padding:100px 0;
  background:#ffffff;
}

.faq-wrapper{
  display:grid;
  grid-template-columns:360px 1fr;
  gap:48px;
  align-items:start;
}

.faq-intro h2{
  font-size:42px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 18px;
}

.faq-intro p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:28px;
}

.faq-contact-card{
  display:flex;
  gap:16px;
  align-items:flex-start;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:22px;
}

.faq-contact-card i{
  width:52px;
  height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.faq-contact-card strong{
  display:block;
  color:#0f172a;
  margin-bottom:4px;
}

.faq-contact-card span{
  color:#64748b;
  font-size:14px;
}

/* Accordion */
.faq-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.faq-item{
  border:1px solid #e2e8f0;
  border-radius:24px;
  overflow:hidden;
  background:#fff;
  transition:.3s ease;
}

.faq-item.active{
  border-color:#ccfbf1;
  box-shadow:0 16px 32px rgba(15,23,42,.06);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:24px 26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  text-align:left;
  font-size:18px;
  font-weight:700;
  color:#0f172a;
}

.faq-question i{
  color:#0f766e;
  transition:.3s ease;
}

.faq-item.active .faq-question i{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-item.active .faq-answer{
  max-height:200px;
}

.faq-answer p{
  padding:0 26px 24px;
  color:#64748b;
  line-height:1.8;
}

/* Final CTA */
.services-final-cta{
  padding:90px 0;
  background:#f8fafc;
}

.final-cta-wrapper{
  background:linear-gradient(135deg,#0f172a,#111827,#0f766e);
  border-radius:36px;
  padding:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  color:#fff;
}

.final-cta-content h2{
  font-size:44px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 14px;
}

.final-cta-content p{
  color:#cbd5e1;
  max-width:560px;
  line-height:1.8;
}

.final-cta-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.final-cta-actions .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Responsive */
@media (max-width:1100px){

  .faq-wrapper{
    grid-template-columns:1fr;
  }

  .final-cta-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .final-cta-actions{
    justify-content:center;
  }
}

@media (max-width:640px){

  .emergency-content h2,
  .faq-intro h2,
  .final-cta-content h2{
    font-size:34px;
  }

  .emergency-content p,
  .faq-intro p,
  .final-cta-content p{
    font-size:16px;
  }

  .faq-question{
    padding:20px;
    font-size:17px;
  }

  .faq-answer p{
    padding:0 20px 20px;
  }

  .final-cta-wrapper{
    padding:36px 24px;
  }

  .final-cta-actions{
    flex-direction:column;
    width:100%;
  }

  .final-cta-actions .btn{
    width:100%;
    justify-content:center;
  }
}

/* cases */

/* Cases Hero */
.cases-hero{
  padding:90px 0 70px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.cases-hero-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.cases-hero-content h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  margin:22px 0;
  color:#0f172a;
}

.cases-hero-content h1 span{
  color:#0f766e;
  display:block;
}

.cases-hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  max-width:560px;
  margin-bottom:32px;
}

.cases-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.cases-hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.cases-hero-tags span{
  padding:10px 16px;
  border-radius:999px;
  background:#ffffff;
  border:1px solid #e2e8f0;
  color:#334155;
  font-weight:600;
  box-shadow:0 4px 12px rgba(15,23,42,.04);
}

/* Image */
.cases-hero-image{
  position:relative;
}

.cases-main-image{
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.cases-main-image img{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

.cases-floating-card{
  position:absolute;
  left:-20px;
  bottom:34px;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.cases-floating-card i{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.cases-floating-card strong{
  display:block;
  color:#0f172a;
  margin-bottom:2px;
}

.cases-floating-card span{
  color:#64748b;
  font-size:14px;
}

/* Stats */
.case-stats{
  padding:36px 0 90px;
  background:#ffffff;
}

.case-stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.case-stat-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  padding:32px 24px;
  text-align:center;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
  transition:.3s ease;
}

.case-stat-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 44px rgba(15,23,42,.10);
}

.case-stat-card i{
  width:72px;
  height:72px;
  margin:0 auto 20px;
  border-radius:22px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.case-stat-card h3{
  font-size:36px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:8px;
}

.case-stat-card p{
  color:#64748b;
  font-weight:600;
}

/* Featured Case */
.featured-case{
  padding:100px 0;
  background:#f8fafc;
}

.featured-case-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 20px 44px rgba(15,23,42,.08);
}

.case-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
}

.case-image{
  position:relative;
}

.case-image span{
  position:absolute;
  top:18px;
  left:18px;
  background:rgba(15,23,42,.82);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}

.case-image.after span{
  background:#0f766e;
}

.case-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.case-details{
  padding:38px;
}

.case-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:18px;
}

.case-meta span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#334155;
  font-weight:600;
  font-size:14px;
}

.case-details h3{
  font-size:36px;
  font-weight:800;
  line-height:1.15;
  margin-bottom:16px;
  color:#0f172a;
}

.case-details p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:28px;
}

.case-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-bottom:28px;
}

.case-point{
  background:#f8fafc;
  border:1px solid #e2e8f0;
  border-radius:22px;
  padding:18px;
}

.case-point strong{
  display:block;
  color:#0f172a;
  margin-bottom:6px;
}

.case-point span{
  color:#64748b;
  font-size:14px;
}

.case-note{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:#ecfeff;
  border:1px solid #ccfbf1;
  color:#115e59;
  border-radius:18px;
  padding:18px;
  line-height:1.7;
}

.case-note i{
  margin-top:2px;
}

/* Responsive */
@media (max-width:1100px){

  .cases-hero-wrapper{
    grid-template-columns:1fr;
  }

  .cases-hero-content{
    text-align:center;
  }

  .cases-hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .cases-hero-actions,
  .cases-hero-tags{
    justify-content:center;
  }

  .cases-hero-image{
    max-width:720px;
    margin:auto;
  }

  .case-stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){

  .cases-hero{
    padding:64px 0 48px;
  }

  .cases-hero-content h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .cases-hero-content p{
    font-size:16px;
  }

  .cases-main-image img{
    height:460px;
  }

  .cases-floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .case-stats-grid{
    grid-template-columns:1fr;
  }

  .case-gallery{
    grid-template-columns:1fr;
  }

  .case-image img{
    height:240px;
  }

  .case-details{
    padding:28px 22px;
  }

  .case-details h3{
    font-size:28px;
  }

  .case-points{
    grid-template-columns:1fr;
  }
}


/* Case Archive */
.case-archive{
  padding:100px 0;
  background:#ffffff;
}

/* Filter */
.case-filter{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-bottom:42px;
}

.filter-btn{
  border:none;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#334155;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.filter-btn:hover,
.filter-btn.active{
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  border-color:transparent;
}

/* Grid */
.case-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.case-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
  transition:.35s ease;
}

.case-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(15,23,42,.10);
}

.case-card-image{
  position:relative;
}

.case-card-image img{
  width:100%;
  height:230px;
  object-fit:cover;
  display:block;
}

.case-badge{
  position:absolute;
  top:16px;
  left:16px;
  padding:8px 14px;
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.case-badge.dermatology{ background:#0f766e; }
.case-badge.emergency{ background:#dc2626; }
.case-badge.surgery{ background:#2563eb; }
.case-badge.vaccination{ background:#7c3aed; }
.case-badge.nutrition{ background:#ea580c; }

.case-card-content{
  padding:24px;
}

.case-card-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#64748b;
  font-size:14px;
  margin-bottom:14px;
}

.case-card-meta span{
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.case-card h3{
  font-size:22px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:12px;
  line-height:1.3;
}

.case-card p{
  color:#64748b;
  line-height:1.7;
  margin-bottom:22px;
}

.case-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#0f766e;
  font-weight:700;
  transition:.3s ease;
}

.case-link:hover{
  gap:14px;
}

/* Load More */
.load-more-wrapper{
  text-align:center;
  margin-top:42px;
}

.load-more-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Responsive */
@media (max-width:1100px){

  .case-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){

  .case-archive{
    padding:72px 0;
  }

  .case-grid{
    grid-template-columns:1fr;
  }

  .case-card-image img{
    height:220px;
  }

  .case-card-content{
    padding:22px 20px;
  }

  .case-card h3{
    font-size:20px;
  }
}

.case-card{
  transition:transform .35s ease, box-shadow .35s ease, opacity .25s ease;
}

/* Recovery Section */
.recovery-section{
  padding:100px 0;
  background:#f8fafc;
}

.recovery-wrapper{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:48px;
  align-items:start;
}

.recovery-content h2{
  font-size:48px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 20px;
  color:#0f172a;
}

.recovery-content p{
  color:#64748b;
  line-height:1.8;
  font-size:17px;
  margin-bottom:28px;
}

/* Timeline */
.timeline-modern{
  display:flex;
  flex-direction:column;
  gap:26px;
}

.timeline-step{
  display:flex;
  gap:18px;
  align-items:flex-start;
  position:relative;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:26px;
  padding:22px;
  transition:.3s ease;
}

.timeline-step:hover{
  transform:translateX(6px);
  box-shadow:0 16px 32px rgba(15,23,42,.08);
  border-color:#ccfbf1;
}

.timeline-step:not(:last-child)::after{
  content:"";
  position:absolute;
  left:38px;
  top:74px;
  width:2px;
  height:36px;
  background:#dbeafe;
}

.timeline-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  flex-shrink:0;
}

.timeline-step h4{
  font-size:20px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:6px;
}

.timeline-step p{
  margin:0;
  font-size:15px;
}

/* Recovery Card */
.recovery-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(15,23,42,.08);
  position:sticky;
  top:110px;
}

.recovery-card-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.recovery-card-content{
  padding:28px;
}

.recovery-card-content h3{
  font-size:28px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:14px;
}

.recovery-card-content p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:22px;
}

.recovery-points{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:24px;
}

.recovery-points div{
  display:flex;
  align-items:center;
  gap:10px;
  color:#334155;
  font-weight:600;
}

.recovery-points i{
  color:#0f766e;
}

/* Disclaimer */
.case-disclaimer{
  padding:40px 0 0;
  background:#f8fafc;
}

.disclaimer-box{
  background:#fff7ed;
  border:1px solid #fed7aa;
  border-radius:24px;
  padding:24px;
  display:flex;
  gap:16px;
  align-items:flex-start;
}

.disclaimer-box i{
  width:52px;
  height:52px;
  border-radius:16px;
  background:#ffedd5;
  color:#ea580c;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  flex-shrink:0;
}

.disclaimer-box h3{
  color:#9a3412;
  margin-bottom:6px;
}

.disclaimer-box p{
  color:#7c2d12;
  line-height:1.7;
}

/* Final CTA */
.cases-final-cta{
  padding:90px 0;
  background:#f8fafc;
}

.cases-cta-wrapper{
  background:linear-gradient(135deg,#0f172a,#111827,#0f766e);
  border-radius:36px;
  padding:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  color:#fff;
}

.cases-cta-content h2{
  font-size:44px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 14px;
}

.cases-cta-content p{
  color:#cbd5e1;
  max-width:560px;
  line-height:1.8;
}

.cases-cta-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.cases-cta-actions .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Responsive */
@media (max-width:1100px){

  .recovery-wrapper{
    grid-template-columns:1fr;
  }

  .recovery-card{
    position:relative;
    top:auto;
    max-width:560px;
    margin:0 auto;
  }

  .cases-cta-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .cases-cta-actions{
    justify-content:center;
  }
}

@media (max-width:640px){

  .recovery-section{
    padding:72px 0;
  }

  .recovery-content h2,
  .cases-cta-content h2{
    font-size:36px;
  }

  .recovery-content p,
  .cases-cta-content p{
    font-size:16px;
  }

  .timeline-step{
    padding:18px;
  }

  .timeline-step h4{
    font-size:18px;
  }

  .timeline-step:not(:last-child)::after{
    left:31px;
  }

  .disclaimer-box{
    flex-direction:column;
  }

  .cases-cta-wrapper{
    padding:36px 24px;
  }

  .cases-cta-actions{
    flex-direction:column;
    width:100%;
  }

  .cases-cta-actions .btn{
    width:100%;
    justify-content:center;
  }
}

/*blog*/

/* Blog Hero */
.blog-hero{
  padding:90px 0 70px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.blog-hero-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.blog-hero-content h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  margin:22px 0;
  color:#0f172a;
}

.blog-hero-content h1 span{
  color:#0f766e;
  display:block;
}

.blog-hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  max-width:560px;
  margin-bottom:32px;
}

/* Search */
.blog-search{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:20px;
  padding:16px 18px;
  box-shadow:0 10px 24px rgba(15,23,42,.05);
  margin-bottom:30px;
}

.blog-search i{
  color:#64748b;
}

.blog-search input{
  border:none;
  outline:none;
  flex:1;
  font-size:16px;
  background:transparent;
}

/* Stats */
.blog-hero-stats{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}

.blog-hero-stats strong{
  display:block;
  font-size:34px;
  font-weight:800;
  color:#0f172a;
  line-height:1;
  margin-bottom:6px;
}

.blog-hero-stats span{
  color:#64748b;
  font-weight:600;
}

/* Image */
.blog-hero-image{
  position:relative;
}

.blog-main-image{
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.blog-main-image img{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

.blog-floating-card{
  position:absolute;
  right:-20px;
  bottom:34px;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.blog-floating-card i{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

.blog-floating-card strong{
  display:block;
  color:#0f172a;
  margin-bottom:2px;
}

.blog-floating-card span{
  color:#64748b;
  font-size:14px;
}

/* Featured Article */
.featured-article{
  padding:90px 0;
  background:#ffffff;
}

.featured-article-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:36px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  box-shadow:0 20px 44px rgba(15,23,42,.08);
}

.featured-article-image img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
}

.featured-article-content{
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.article-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  color:#64748b;
  font-size:14px;
  margin-bottom:18px;
}

.article-category{
  padding:8px 14px;
  border-radius:999px;
  color:#fff;
  font-weight:700;
}

.article-category.vaccination{
  background:#7c3aed;
}

.featured-article-content h2{
  font-size:40px;
  line-height:1.15;
  font-weight:800;
  color:#0f172a;
  margin-bottom:18px;
}

.featured-article-content p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:28px;
}

/* Author */
.article-author{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:28px;
}

.article-author img{
  width:56px;
  height:56px;
  border-radius:50%;
  object-fit:cover;
}

.article-author strong{
  display:block;
  color:#0f172a;
}

.article-author span{
  color:#64748b;
  font-size:14px;
}

/* Categories */
.blog-categories{
  padding:0 0 40px;
  background:#ffffff;
}

.category-filter{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.category-btn{
  border:none;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#334155;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:.3s ease;
}

.category-btn:hover,
.category-btn.active{
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  border-color:transparent;
}

/* Responsive */
@media (max-width:1100px){

  .blog-hero-wrapper,
  .featured-article-card{
    grid-template-columns:1fr;
  }

  .blog-hero-content{
    text-align:center;
  }

  .blog-hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .blog-hero-stats{
    justify-content:center;
  }

  .blog-hero-image{
    max-width:720px;
    margin:auto;
  }
}

@media (max-width:640px){

  .blog-hero{
    padding:64px 0 48px;
  }

  .blog-hero-content h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .blog-hero-content p{
    font-size:16px;
  }

  .blog-main-image img{
    height:460px;
  }

  .blog-floating-card{
    position:relative;
    right:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .featured-article-content{
    padding:28px 22px;
  }

  .featured-article-content h2{
    font-size:30px;
  }
}


/* Blog Layout */
.blog-content-section{
  padding:40px 0 100px;
  background:#ffffff;
}

.blog-layout{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:36px;
  align-items:start;
}

/* Grid */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:28px;
}

.blog-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
  transition:.35s ease;
}

.blog-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(15,23,42,.10);
}

.blog-card-image{
  position:relative;
}

.blog-card-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.blog-badge{
  position:absolute;
  top:16px;
  left:16px;
  padding:8px 14px;
  border-radius:999px;
  color:#fff;
  font-size:13px;
  font-weight:700;
}

.blog-badge.vaccination{ background:#7c3aed; }
.blog-badge.nutrition{ background:#ea580c; }
.blog-badge.dermatology{ background:#0f766e; }
.blog-badge.emergency{ background:#dc2626; }

.blog-card-content{
  padding:24px;
}

.blog-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#64748b;
  font-size:14px;
  margin-bottom:14px;
}

.blog-card h3{
  font-size:24px;
  font-weight:800;
  line-height:1.3;
  color:#0f172a;
  margin-bottom:12px;
}

.blog-card p{
  color:#64748b;
  line-height:1.7;
  margin-bottom:22px;
}

.blog-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#0f766e;
  font-weight:700;
  transition:.3s ease;
}

.blog-link:hover{
  gap:14px;
}

/* Sidebar */
.blog-sidebar{
  display:flex;
  flex-direction:column;
  gap:24px;
  position:sticky;
  top:110px;
}

.sidebar-widget{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  padding:26px;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
}

.sidebar-widget h3{
  font-size:22px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:18px;
}

/* Newsletter */
.newsletter-widget{
  background:linear-gradient(135deg,#0f172a,#111827,#0f766e);
  color:#fff;
  border:none;
}

.newsletter-icon{
  width:72px;
  height:72px;
  border-radius:22px;
  background:rgba(255,255,255,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  margin-bottom:22px;
}

.newsletter-widget h3{
  color:#fff;
}

.newsletter-widget p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:20px;
}

.sidebar-newsletter{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.sidebar-newsletter input{
  padding:14px 16px;
  border:none;
  border-radius:16px;
  background:#fff;
  font-size:15px;
  outline:none;
}

.sidebar-newsletter button{
  padding:14px 16px;
  border:none;
  border-radius:16px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

/* Popular Posts */
.popular-post{
  display:flex;
  gap:14px;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid #f1f5f9;
}

.popular-post:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.popular-post img{
  width:76px;
  height:76px;
  border-radius:18px;
  object-fit:cover;
}

.popular-post strong{
  display:block;
  color:#0f172a;
  line-height:1.4;
  margin-bottom:4px;
}

.popular-post span{
  color:#64748b;
  font-size:13px;
}

/* Tags */
.tag-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.tag-cloud a{
  padding:10px 14px;
  border-radius:999px;
  background:#f8fafc;
  border:1px solid #e2e8f0;
  color:#334155;
  font-weight:600;
  font-size:14px;
  transition:.3s ease;
}

.tag-cloud a:hover{
  background:#0f766e;
  color:#fff;
  border-color:#0f766e;
}

/* Pagination */
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-top:42px;
  flex-wrap:wrap;
}

.page-btn{
  min-width:44px;
  height:44px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid #e2e8f0;
  background:#fff;
  color:#334155;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.3s ease;
}

.page-btn:hover,
.page-btn.active{
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  border-color:transparent;
}

.page-btn.next{
  gap:8px;
}

/* Responsive */
@media (max-width:1100px){

  .blog-layout{
    grid-template-columns:1fr;
  }

  .blog-sidebar{
    position:relative;
    top:auto;
  }
}

@media (max-width:640px){

  .blog-content-section{
    padding:32px 0 72px;
  }

  .blog-grid{
    grid-template-columns:1fr;
  }

  .blog-card-content{
    padding:22px 20px;
  }

  .blog-card h3{
    font-size:22px;
  }

  .sidebar-widget{
    padding:22px;
  }
}


/* Author Box */
.blog-author-section{
  padding:80px 0;
  background:#f8fafc;
}

.author-box{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:36px;
  padding:42px;
  display:grid;
  grid-template-columns:180px 1fr;
  gap:36px;
  align-items:center;
  box-shadow:0 20px 44px rgba(15,23,42,.08);
}

.author-image img{
  width:180px;
  height:180px;
  border-radius:32px;
  object-fit:cover;
}

.author-content h2{
  font-size:40px;
  font-weight:800;
  color:#0f172a;
  margin:18px 0 16px;
}

.author-content p{
  color:#64748b;
  line-height:1.8;
  margin-bottom:28px;
}

.author-stats{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
}

.author-stats strong{
  display:block;
  font-size:30px;
  font-weight:800;
  color:#0f172a;
}

.author-stats span{
  color:#64748b;
  font-weight:600;
}

/* Related Articles */
.related-articles{
  padding:100px 0;
  background:#ffffff;
}

.related-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.related-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
  transition:.35s ease;
}

.related-card:hover{
  transform:translateY(-10px);
  box-shadow:0 24px 48px rgba(15,23,42,.10);
}

.related-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.related-content{
  padding:24px;
}

.related-content span{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:#ecfeff;
  color:#0f766e;
  font-weight:700;
  font-size:13px;
  margin-bottom:16px;
}

.related-content h3{
  font-size:24px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:16px;
}

.related-content a{
  color:#0f766e;
  font-weight:700;
}

/* Newsletter Banner */
.newsletter-banner{
  padding:90px 0;
  background:#f8fafc;
}

.newsletter-banner-wrapper{
  background:linear-gradient(135deg,#0f172a,#111827,#0f766e);
  border-radius:36px;
  padding:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  color:#fff;
}

.newsletter-banner-content h2{
  font-size:44px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 14px;
}

.newsletter-banner-content p{
  color:#cbd5e1;
  max-width:560px;
  line-height:1.8;
}

.newsletter-banner-form{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  width:min(100%,460px);
}

.newsletter-banner-form input{
  flex:1 1 240px;
  min-width:0;
  padding:16px 18px;
  border:none;
  border-radius:18px;
  font-size:16px;
  outline:none;
}

.newsletter-banner-form button{
  padding:16px 22px;
  border:none;
  border-radius:18px;
  background:#fff;
  color:#0f172a;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
}

/* Final CTA */
.blog-final-cta{
  padding:90px 0;
  background:#ffffff;
}

.blog-cta-wrapper{
  background:linear-gradient(135deg,#0f172a,#111827,#0f766e);
  border-radius:36px;
  padding:56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
  flex-wrap:wrap;
  color:#fff;
}

.blog-cta-content h2{
  font-size:44px;
  font-weight:800;
  line-height:1.1;
  margin:18px 0 14px;
}

.blog-cta-content p{
  color:#cbd5e1;
  max-width:560px;
  line-height:1.8;
}

.blog-cta-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.blog-cta-actions .btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

/* Responsive */
@media (max-width:1100px){

  .author-box{
    grid-template-columns:1fr;
    text-align:center;
  }

  .author-image{
    justify-self:center;
  }

  .author-stats{
    justify-content:center;
  }

  .related-grid{
    grid-template-columns:1fr;
  }

  .newsletter-banner-wrapper,
  .blog-cta-wrapper{
    flex-direction:column;
    text-align:center;
  }

  .newsletter-banner-form,
  .blog-cta-actions{
    justify-content:center;
  }
}

@media (max-width:640px){

  .blog-author-section,
  .related-articles,
  .newsletter-banner,
  .blog-final-cta{
    padding:72px 0;
  }

  .author-box{
    padding:28px 22px;
  }

  .author-content h2,
  .newsletter-banner-content h2,
  .blog-cta-content h2{
    font-size:34px;
  }

  .newsletter-banner-wrapper,
  .blog-cta-wrapper{
    padding:36px 24px;
  }

  .newsletter-banner-form{
    flex-direction:column;
  }

  .newsletter-banner-form button,
  .blog-cta-actions .btn{
    width:100%;
    justify-content:center;
  }

  .blog-cta-actions{
    flex-direction:column;
    width:100%;
  }
}

/*contact*/

/* Contact Hero */
.contact-hero{
  padding:90px 0 70px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.contact-hero-wrapper{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
}

.contact-hero-content h1{
  font-size:64px;
  line-height:1.05;
  font-weight:800;
  letter-spacing:-2px;
  margin:22px 0;
  color:#0f172a;
}

.contact-hero-content h1 span{
  color:#0f766e;
  display:block;
}

.contact-hero-content p{
  font-size:18px;
  line-height:1.8;
  color:#64748b;
  max-width:560px;
  margin-bottom:32px;
}

.contact-hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.contact-quick-stats{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}

.contact-quick-stats strong{
  display:block;
  font-size:32px;
  font-weight:800;
  color:#0f172a;
}

.contact-quick-stats span{
  color:#64748b;
  font-weight:600;
}

/* Image */
.contact-hero-image{
  position:relative;
}

.contact-main-image{
  border-radius:36px;
  overflow:hidden;
  box-shadow:0 30px 60px rgba(15,23,42,.15);
}

.contact-main-image img{
  width:100%;
  height:680px;
  object-fit:cover;
  display:block;
}

.contact-floating-card{
  position:absolute;
  left:-20px;
  bottom:34px;
  display:flex;
  align-items:center;
  gap:14px;
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:24px;
  padding:18px 22px;
  box-shadow:0 20px 40px rgba(15,23,42,.12);
}

.contact-floating-card i{
  width:54px;
  height:54px;
  border-radius:18px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
}

/* Contact Cards */
.contact-cards-section{
  padding:36px 0 90px;
  background:#ffffff;
}

.contact-cards-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.contact-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:28px;
  padding:32px 24px;
  text-align:center;
  box-shadow:0 10px 24px rgba(15,23,42,.04);
  transition:.3s ease;
}

.contact-card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 44px rgba(15,23,42,.10);
}

.contact-card i{
  width:72px;
  height:72px;
  margin:0 auto 20px;
  border-radius:22px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.contact-card h3{
  font-size:22px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:10px;
}

.contact-card p{
  color:#64748b;
  line-height:1.7;
  margin-bottom:18px;
}

.contact-card a{
  color:#0f766e;
  font-weight:700;
}

/* Appointment */
.appointment-section{
  padding:100px 0;
  background:#f8fafc;
}

.appointment-layout{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:36px;
  align-items:start;
}

.appointment-form-card,
.clinic-info-card{
  background:#fff;
  border:1px solid #e2e8f0;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 20px 44px rgba(15,23,42,.08);
}

.appointment-form-card{
  padding:38px;
}

.text-left{
  text-align:left;
}

.appointment-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.form-group label{
  font-weight:700;
  color:#0f172a;
}

.form-group input,
.form-group select,
.form-group textarea{
  padding:14px 16px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  font-size:15px;
  outline:none;
  transition:.3s ease;
  background:#fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color:#14b8a6;
  box-shadow:0 0 0 4px rgba(20,184,166,.12);
}

.submit-btn{
  width:100%;
  justify-content:center;
}

/* Map */
.clinic-map iframe{
  width:100%;
  height:280px;
  border:0;
  display:block;
}

.clinic-info-content{
  padding:28px;
}

.clinic-info-content h3{
  font-size:28px;
  font-weight:800;
  color:#0f172a;
  margin-bottom:24px;
}

.info-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:18px 0;
  border-bottom:1px solid #f1f5f9;
}

.info-item:last-child{
  border-bottom:none;
}

.info-item i{
  width:44px;
  height:44px;
  border-radius:14px;
  background:linear-gradient(135deg,#ecfeff,#dbeafe);
  color:#0f766e;
  display:flex;
  align-items:center;
  justify-content:center;
}

.info-item strong{
  display:block;
  color:#0f172a;
  margin-bottom:4px;
}

.info-item span{
  color:#64748b;
  line-height:1.6;
}

/* Responsive */
@media (max-width:1100px){

  .contact-hero-wrapper,
  .appointment-layout{
    grid-template-columns:1fr;
  }

  .contact-hero-content{
    text-align:center;
  }

  .contact-hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .contact-hero-actions,
  .contact-quick-stats{
    justify-content:center;
  }

  .contact-hero-image{
    max-width:720px;
    margin:auto;
  }

  .contact-cards-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:640px){

  .contact-hero{
    padding:64px 0 48px;
  }

  .contact-hero-content h1{
    font-size:42px;
    letter-spacing:-1px;
  }

  .contact-hero-content p{
    font-size:16px;
  }

  .contact-main-image img{
    height:460px;
  }

  .contact-floating-card{
    position:relative;
    left:auto;
    bottom:auto;
    margin-top:18px;
    width:100%;
  }

  .contact-cards-grid{
    grid-template-columns:1fr;
  }

  .appointment-form-card{
    padding:28px 22px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .clinic-info-content{
    padding:24px 22px;
  }
}

.nav-link.active{
  color:#0f766e;
  font-weight:700;
}


/* ========================================
   PAGE LOADER
======================================== */
#page-loader{
  position:fixed;
  inset:0;
  background:#ffffff;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity .5s ease, visibility .5s ease;
}

#page-loader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-paw{
  width:90px;
  height:90px;
  border-radius:28px;
  background:linear-gradient(135deg,#14b8a6,#2563eb);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  animation:pulseLoader 1.2s ease-in-out infinite;
  box-shadow:0 20px 40px rgba(20,184,166,.35);
}

@keyframes pulseLoader{
  0%,100%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.08);
  }
}

/* ========================================
   FLOATING ACTIONS
======================================== */
.floating-actions{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:14px;
  z-index:9999;
}

.floating-btn{
  width:58px;
  height:58px;
  border:none;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 16px 32px rgba(15,23,42,.22);
  transition:transform .3s ease, box-shadow .3s ease, opacity .3s ease;
  text-decoration:none;
}

.floating-btn:hover{
  transform:translateY(-4px) scale(1.05);
  box-shadow:0 22px 44px rgba(15,23,42,.28);
}

.call-btn{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.whatsapp-btn{
  background:linear-gradient(135deg,#25D366,#16a34a);
  animation:whatsappPulse 2s infinite;
}

.top-btn{
  background:linear-gradient(135deg,#0f172a,#334155);
  opacity:0;
  visibility:hidden;
}

.top-btn.show{
  opacity:1;
  visibility:visible;
}

@keyframes whatsappPulse{
  0%{
    box-shadow:0 0 0 0 rgba(37,211,102,.45);
  }
  70%{
    box-shadow:0 0 0 16px rgba(37,211,102,0);
  }
  100%{
    box-shadow:0 0 0 0 rgba(37,211,102,0);
  }
}

/* ========================================
   SCROLL ANIMATION
======================================== */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:opacity .7s ease, transform .7s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ========================================
   SMOOTH SCROLL
======================================== */
html{
  scroll-behavior:smooth;
}

/* ========================================
   MOBILE
======================================== */
@media (max-width:640px){

  .floating-actions{
    right:14px;
    bottom:14px;
    gap:12px;
  }

  .floating-btn{
    width:54px;
    height:54px;
    border-radius:16px;
    font-size:20px;
  }
}