:root {
    --green: #00412d;
    --green-dark: #002d20;
    --gold: #b98b3d;
    --gold-light: #d9b96d;
    --cream: #fbfaf4;
    --text: #172b24;
    --muted: #4e5d58;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #fbfaf4;
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: min(1160px, 94%);
    margin: auto;
}

/* TOP BAR */

.top-bar {
    background: var(--green);
    color: #fff;
    font-size: 12px;
}

.top-bar-inner {
    height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 42px;
    align-items: center;
}

.top-left i,
.top-social i {
    color: var(--gold-light);
    margin-right: 6px;
}

.top-social {
    display: flex;
    gap: 18px;
    align-items: center;
}

/* HEADER */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  box-shadow:0 5px 22px rgba(0,0,0,.08);
}

.nav-wrap{
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
}

.brand img{
  width:82px;
  height:auto;
  object-fit:contain;
}




.nav{
  display:flex;
  align-items:center;
  gap:27px;
  text-transform:uppercase;
  font-size:11px;
  font-weight:900;
}

.nav a{
  position:relative;
  color:#1d2e28;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--gold);
  transition:.25s;
}

.nav a:hover::after,
.nav a.active::after{
  width:100%;
}

.book-btn{
  background:var(--green);
  color:#fff !important;
  padding:15px 21px;
  border-radius:5px;
  box-shadow:0 8px 18px rgba(0,65,45,.25);
}

.book-btn::after{
  display:none;
}

.menu-btn{
  display:none;
  border:0;
  background:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-btn span{
  width:28px;
  height:3px;
  border-radius:20px;
  background:var(--green);
}

/* HERO */

.hero {
    min-height: 375px;
    background:
        linear-gradient(90deg, rgba(250, 247, 236, .98) 0%, rgba(250, 247, 236, .9) 43%, rgba(250, 247, 236, .08) 70%),
        url("../image/background3.jpeg") center right/cover no-repeat;
}

.hero-inner {
    min-height: 375px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 570px;
}

.hero-tag {
    display: inline-block;
    background: #d9c58e;
    color: #213c31;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero h1 {
    font-family: "Cinzel", serif;
    color: var(--green);
    font-size: 43px;
    line-height: 1.06;
    margin-bottom: 6px;
}

.hero h3 {
    font-family: "Cinzel", serif;
    color: #9a6d28;
    font-size: 21px;
    margin-bottom: 13px;
}

.hero p {
    font-size: 15px;
    line-height: 1.72;
    font-weight: 600;
    color: #33443e;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: .25s;
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-outline {
    border-color: var(--green);
    color: var(--green);
    background: #fff;
}

.btn-primary:hover,
.btn-outline:hover {
    background: var(--green-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* SECTION TITLE */

.treatments-section {
    padding: 28px 0 18px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
}

.section-title h2 {
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    color: #173b2e;
    font-size: 22px;
}

.section-title span {
    width: 45px;
    height: 1px;
    background: #c59a4a;
    position: relative;
}

.section-title span::before {
    content: "✦";
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    color: #c59a4a;
    font-size: 12px;
}

/* TREATMENT CARDS */

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px 28px;
}

.treatment-card {
    background: #fff;
    border: 1px solid rgba(0, 65, 45, .08);
    border-radius: 10px;
    text-align: center;
    padding: 22px 18px 19px;
    box-shadow: 0 7px 20px rgba(0, 0, 0, .06);
    transition: .25s;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 65, 45, .14);
}

.circle-img {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 4px solid #fff;
    outline: 2px solid var(--green);
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: var(--gold-light);
    border: 3px solid var(--gold-light);
    display: grid;
    place-items: center;
    margin: -19px auto 12px;
    position: relative;
    z-index: 2;
    font-size: 14px;
}

.treatment-card h3 {
    font-family: "Cinzel", serif;
    color: var(--green);
    font-size: 18px;
    margin-bottom: 8px;
}

.treatment-card p {
    font-size: 13px;
    color: #40504b;
    line-height: 1.55;
    font-weight: 600;
    min-height: 62px;
    margin-bottom: 14px;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid rgba(0, 65, 45, .45);
    color: var(--green);
    padding: 9px 18px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 900;
    transition: .25s;
}

.learn-btn:hover {
    background: var(--green);
    color: #fff;
}

/* INFO SECTION */

.info-section {
    padding: 0 0 24px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.process-box,
.why-box {
    background: #fff;
    border: 1px solid rgba(0, 65, 45, .08);
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
}

.small-title {
    margin-bottom: 22px;
}

.small-title h2 {
    font-size: 20px;
}

.process-row {
    display: grid;
    grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
    align-items: start;
    text-align: center;
}

.process-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    position: relative;
    font-size: 25px;
}

.process-icon b {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    display: grid;
    place-items: center;
    position: absolute;
    bottom: -8px;
    font-size: 12px;
}

.process-item h4 {
    color: var(--green);
    font-size: 13px;
    margin-bottom: 7px;
}

.process-item p {
    color: #40504b;
    font-size: 12px;
    line-height: 1.45;
    font-weight: 600;
}

.process-arrow {
    color: var(--gold);
    margin-top: 25px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 19px 24px;
}

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.why-item>i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #e1d49d;
    color: var(--green);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
}

.why-item h4 {
    color: var(--green);
    font-size: 14px;
    margin-bottom: 4px;
}

.why-item p {
    color: #40504b;
    font-size: 12px;
    line-height: 1.42;
    font-weight: 600;
}

/* CTA */

.cta-section {
    padding: 0 0 22px;
}

.cta-box {
    min-height: 155px;
    background:
        linear-gradient(90deg, rgba(0, 65, 45, .96), rgba(0, 65, 45, .86)),
        url("assets/cta-bg.jpg") center/cover no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 34px;
    box-shadow: 0 14px 30px rgba(0, 65, 45, .18);
}

.cta-box h2 {
    font-family: "Cinzel", serif;
    font-size: 30px;
    margin-bottom: 7px;
}

.cta-box p {
    color: rgba(255, 255, 255, .86);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
}

.btn-transparent {
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
}

.btn-transparent:hover {
    background: #fff;
    color: var(--green);
}

/* STATS */

.stats-section {
    background: #eee5d6;
    padding: 18px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-right: 1px solid #cbbd9f;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item i {
    color: var(--green);
    font-size: 34px;
}

.stat-item h3 {
    font-family: "Cinzel", serif;
    color: var(--green);
    font-size: 28px;
    line-height: 1;
}

.stat-item p {
    color: #46554f;
    font-size: 12px;
    font-weight: 800;
}

/* ANIMATION */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: .7s ease;
}

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

/* RESPONSIVE */

@media(max-width:1050px) {
    .nav-menu {
        gap: 15px;
    }

    .treatment-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:820px) {

    .top-bar-inner,
    .top-left {
        height: auto;
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .top-social {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 88px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px 4%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: .25s;
        box-shadow: 0 14px 28px rgba(0, 0, 0, .12);
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        padding: 13px 0;
        border-bottom: 1px solid #eee;
    }

    .book-btn {
        text-align: center;
        margin-top: 10px;
    }

    .brand img {
        width: 185px;
    }

    .hero {
        background:
            linear-gradient(90deg, rgba(250, 247, 236, .97), rgba(250, 247, 236, .92)),
            url("assets/hero-unani.jpg") center/cover no-repeat;
    }

    .hero h1 {
        font-size: 34px;
    }

    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .process-arrow {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid #cbbd9f;
        padding-bottom: 14px;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }
}

@media(max-width:540px) {
    .brand img {
        width: 160px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero h3 {
        font-size: 18px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 18px;
    }

    .cta-box h2 {
        font-size: 23px;
    }
}




.footer{
  background:#003c29;
  color:#fff;
  padding-top:38px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .9fr 1fr 1.4fr;
  gap:32px;
  padding-bottom:34px;
}

.footer-logo{
  margin-bottom:14px;
}

.footer-logo h2,
.footer-logo p,
.footer-logo span{
  color:#fff;
}

.footer p,
.footer a{
  color:rgba(255,255,255,.75);
  font-size:12px;
  line-height:1.65;
}

.footer h3{
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:15px;
}

.footer a{
  display:block;
  margin-bottom:6px;
  transition:.25s;
}

.footer a:hover{
  color:#d1a850;
  padding-left:4px;
}

.footer-social{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.footer-social a{
  width:28px;
  height:28px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  display:grid;
  place-items:center;
  padding:0;
}

.newsletter{
  display:flex;
  margin-top:12px;
  border:1px solid rgba(255,255,255,.28);
  overflow:hidden;
  border-radius:4px;
}

.newsletter input{
  flex:1;
  border:0;
  padding:12px;
  outline:0;
}

.newsletter button{
  width:44px;
  border:0;
  color:var(--green);
  background:#fff;
  cursor:pointer;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.18);
  padding:15px 0;
  display:flex;
  justify-content:space-between;
  gap:18px;
}

.footer-bottom p,
.footer-bottom a{
  font-size:11px;
  margin:0;
  display:inline;
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:.7s;
}

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

@media(max-width:1050px){
  .nav{
    gap:15px;
  }

  .service-grid,
  .blog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .blog-cta-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:820px){
  .top-inner,
  .top-inner div:first-child{
    height:auto;
    padding:8px 0;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }

  .social{
    display:none;
  }

  .menu-btn{
    display:flex;
  }

  .nav{
    position:absolute;
    top:88px;
    left:0;
    right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:15px 4%;
    transform:translateY(-15px);
    opacity:0;
    visibility:hidden;
    transition:.25s;
    box-shadow:0 14px 24px rgba(0,0,0,.12);
  }

  .nav.open{
    transform:translateY(0);
    opacity:1;
    visibility:visible;
  }

  .nav a{
    padding:13px 0;
    width:100%;
    border-bottom:1px solid #eee;
  }

  .book-btn{
    text-align:center;
    margin-top:10px;
  }

  .hero{
    min-height:auto;
    background:
      linear-gradient(90deg,rgba(250,247,236,.97),rgba(250,247,236,.92)),
      url("https://images.unsplash.com/photo-1544787219-7f47ccb76574?auto=format&fit=crop&w=1200&q=85") center/cover;
  }

  .hero-content{
    min-height:auto;
    padding:45px 0;
  }

  .hero h1{
    font-size:38px;
  }

  .hero h3{
    font-size:18px;
  }

  .hero-features{
    grid-template-columns:repeat(2,1fr);
  }

  .treat-grid,
  .promise-grid,
  .about-grid,
  .stats-grid,
  .testimonial-track{
    grid-template-columns:1fr;
  }

  .promise-grid div,
  .stats-grid div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .about-icons{
    grid-template-columns:repeat(2,1fr);
  }

  .testimonial-track{
    width:85%;
  }

  .review-card{
    display:none;
  }

  .review-card.active{
    display:block;
  }

  .gallery{
    grid-template-columns:repeat(2,1fr);
  }

  .whatsapp .container{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
  }
}

@media(max-width:520px){
  .logo h2{
    font-size:25px;
  }

  .logo-icon{
    width:38px;
    height:38px;
  }

  .hero h1{
    font-size:32px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-features{
    grid-template-columns:1fr;
  }

  .service-grid,
  .blog-grid{
    grid-template-columns:1fr;
  }

  .gallery{
    grid-template-columns:1fr;
  }
}

/* ===============================
   Footer Logo Fix
================================ */

.footer .footer-logo{
  display:flex !important;
  align-items:flex-start;
  gap:12px;
  width:auto !important;
  height:auto !important;
  margin-bottom:14px;
  padding:0;
}

.footer .footer-logo:hover{
  padding-left:0;
}

.footer .footer-logo .logo-icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:0 18px 0 18px;
  font-size:22px;
  flex-shrink:0;
}

.footer .footer-logo h2{
  font-family:"Cinzel",serif;
  font-size:30px;
  line-height:1;
  color:#fff;
  margin:0 0 3px;
  letter-spacing:1px;
}

.footer .footer-logo p{
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1.25;
  margin:0;
}

.footer .footer-logo span{
  display:block;
  color:rgba(255,255,255,.85);
  font-size:11px;
  font-weight:700;
  line-height:1.25;
  margin-top:2px;
}

.footer-grid > div:first-child > p{
  max-width:270px;
  margin-top:10px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  line-height:1.7;
}

.footer-social{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:14px;
}

.footer-social a{
  width:32px !important;
  height:32px !important;
  display:flex !important;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.35);
  border-radius:50%;
  padding:0 !important;
  margin:0 !important;
}