:root{
  --green:#00412d;
  --green-dark:#002d20;
  --gold:#b98b3d;
  --gold-light:#d9b96d;
  --cream:#fbfaf4;
  --cream-2:#f3eee2;
  --text:#172b24;
  --muted:#5b6a65;
  --white:#fff;
}

*{
  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{
  display:block;
  max-width:100%;
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* TOP BAR */

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

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

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

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

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

/* 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 */

.blog-hero{
  min-height:300px;
  background:
    linear-gradient(90deg,rgba(0,65,45,.96),rgba(0,65,45,.86),rgba(0,65,45,.3)),
    url("../image/background4.jpeg") center right/cover no-repeat;
  color:#fff;
}

.hero-content{
  min-height:300px;
  display:flex;
  align-items:center;
}

.hero-text{
  max-width:650px;
}

.hero-text h1{
  font-family:"Cinzel",serif;
  font-size:42px;
  line-height:1.1;
  margin-bottom:8px;
}

.hero-text h3{
  font-family:"Cinzel",serif;
  color:var(--gold-light);
  font-size:22px;
  margin-bottom:16px;
}

.hero-text p{
  font-size:15px;
  line-height:1.7;
  max-width:620px;
  color:rgba(255,255,255,.9);
  font-weight:600;
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:32px;
  font-size:13px;
}

.breadcrumb i{
  font-size:12px;
}

/* BLOG MAIN */

.blog-main{
  padding:34px 0 22px;
}

.blog-layout{
  display:grid;
  grid-template-columns:1fr 310px;
  gap:34px;
}

.section-heading{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:22px;
}

.section-heading h2{
  font-family:"Cinzel",serif;
  color:var(--green);
  font-size:22px;
  text-transform:uppercase;
  white-space:nowrap;
}

.section-heading h2 i{
  color:var(--gold);
  margin-right:8px;
}

.section-heading span{
  height:1px;
  background:#d8c8a5;
  flex:1;
}

.article-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.article-card{
  background:#fff;
  border:1px solid rgba(0,65,45,.08);
  border-radius:9px;
  overflow:hidden;
  box-shadow:0 7px 20px rgba(0,0,0,.07);
  transition:.25s;
}

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

.article-img{
  height:145px;
  position:relative;
  overflow:hidden;
}

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

.article-img span{
  position:absolute;
  left:16px;
  bottom:0;
  background:var(--green);
  color:#fff;
  padding:6px 12px;
  font-size:10px;
  font-weight:900;
  text-transform:uppercase;
  border-radius:3px 3px 0 0;
}

.article-content{
  padding:18px 17px 16px;
}

.article-content h3{
  font-family:"Cinzel",serif;
  color:var(--green);
  font-size:21px;
  line-height:1.25;
  margin-bottom:9px;
}

.article-content p{
  color:#333;
  font-size:14px;
  line-height:1.65;
  font-weight:500;
  min-height:70px;
}

.article-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:14px;
  color:#41514b;
  font-size:11px;
  font-weight:700;
  flex-wrap:wrap;
}

.article-meta i{
  color:var(--green);
  margin-right:5px;
}

.article-meta a{
  color:var(--green);
  text-transform:uppercase;
  font-size:11px;
  font-weight:900;
}

/* PAGINATION */

.pagination{
  display:flex;
  gap:8px;
  margin-top:22px;
}

.pagination a,
.pagination span{
  width:34px;
  height:34px;
  background:#fff;
  border:1px solid #d6cbb7;
  display:grid;
  place-items:center;
  border-radius:4px;
  font-size:12px;
  font-weight:800;
  color:var(--green);
}

.pagination .current{
  background:var(--green);
  color:#fff;
}

/* SIDEBAR */

.sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.side-card{
  background:#fff;
  border:1px solid rgba(0,65,45,.08);
  border-radius:9px;
  padding:20px;
  box-shadow:0 7px 20px rgba(0,0,0,.06);
}

.side-card h3{
  font-family:"Cinzel",serif;
  text-transform:uppercase;
  color:var(--green);
  font-size:18px;
  margin-bottom:16px;
}

.search-box{
  display:flex;
  height:42px;
  border:1px solid #d9cdb9;
  border-radius:5px;
  overflow:hidden;
}

.search-box input{
  flex:1;
  border:0;
  outline:0;
  padding:0 12px;
  font-size:12px;
}

.search-box button{
  width:46px;
  border:0;
  background:#fff;
  color:#111;
  font-size:16px;
  cursor:pointer;
}

.category-list{
  list-style:none;
}

.category-list li{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid #eee4d7;
  padding:9px 0;
  color:#33443e;
  font-size:13px;
  font-weight:600;
}

.category-list li:last-child{
  border-bottom:0;
}

.category-list i{
  color:#8c703d;
  margin-right:8px;
}

.category-list b{
  background:#efe3ca;
  padding:3px 8px;
  border-radius:12px;
  color:#5d4725;
  font-size:11px;
}

.popular-post{
  display:grid;
  grid-template-columns:78px 1fr;
  gap:12px;
  margin-bottom:14px;
}

.popular-post:last-child{
  margin-bottom:0;
}

.popular-post img{
  width:78px;
  height:70px;
  object-fit:cover;
  border-radius:5px;
}

.popular-post h4{
  font-size:13px;
  line-height:1.35;
  color:var(--green);
  margin-bottom:6px;
}

.popular-post span{
  font-size:11px;
  color:#8a7660;
}

.consult-card{
  min-height:220px;
  border-radius:9px;
  padding:22px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(0,65,45,.96),rgba(0,65,45,.82)),
    url("https://images.unsplash.com/photo-1544787219-7f47ccb76574?auto=format&fit=crop&w=800&q=80") center/cover no-repeat;
  box-shadow:0 8px 22px rgba(0,65,45,.2);
}

.consult-card h3{
  font-family:"Cinzel",serif;
  font-size:20px;
  color:var(--gold-light);
  text-transform:uppercase;
  line-height:1.25;
  margin-bottom:10px;
}

.consult-card p{
  font-size:13px;
  line-height:1.6;
  color:rgba(255,255,255,.86);
  max-width:210px;
  margin-bottom:18px;
}

.consult-card a{
  display:inline-flex;
  background:#fff;
  color:var(--green);
  padding:11px 16px;
  border-radius:5px;
  text-transform:uppercase;
  font-size:11px;
  font-weight:900;
}

/* CTA STRIP */

.cta-strip{
  padding:8px 0 16px;
}

.cta-strip-inner{
  background:#fff8ec;
  border:1px solid #d9b96d;
  border-radius:9px;
  padding:18px 26px;
  display:grid;
  grid-template-columns:55px 1fr auto;
  gap:18px;
  align-items:center;
}

.cta-strip-inner > div:first-child i{
  font-size:42px;
  color:var(--green);
}

.cta-strip h2{
  font-family:"Cinzel",serif;
  color:var(--green);
  font-size:20px;
  margin-bottom:5px;
}

.cta-strip p{
  color:#4e5d58;
  font-size:13px;
  font-weight:600;
}

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

.cta-buttons a{
  min-width:145px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:5px;
  text-transform:uppercase;
  font-size:12px;
  font-weight:900;
}

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

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

.gold-btn{
  background:var(--gold-light);
  color:#173b2e;
}

/* FEATURE STRIP */

.feature-strip{
  padding-bottom:16px;
}

.feature-grid{
  background:#fff;
  border:1px solid rgba(0,65,45,.08);
  border-radius:8px;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  overflow:hidden;
}

.feature-grid div{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 12px;
  border-right:1px solid #e2d7c7;
}

.feature-grid div:last-child{
  border-right:0;
}

.feature-grid i{
  color:var(--green);
  font-size:25px;
}

.feature-grid span{
  font-size:11px;
  color:#33443e;
  font-weight:800;
  line-height:1.25;
}

/* FOOTER */

.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;
}

/* ANIMATION */

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

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

/* RESPONSIVE */

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

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

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

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

@media(max-width:820px){
  .top-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{
    position:absolute;
    top:92px;
    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.open{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }

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

  .brand img{
    width:185px;
  }

  .blog-hero{
    background:
      linear-gradient(90deg,rgba(0,65,45,.96),rgba(0,65,45,.9)),
      url("https://images.unsplash.com/photo-1544787219-7f47ccb76574?auto=format&fit=crop&w=1200&q=85") center/cover;
  }

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

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

  .cta-strip-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .cta-strip-inner > div:first-child{
    display:flex;
    justify-content:center;
  }

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

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

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

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

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

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

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

  .feature-grid div{
    border-right:0;
    border-bottom:1px solid #e2d7c7;
  }

  .cta-buttons a{
    width:100%;
  }

  .article-meta{
    flex-direction:column;
    align-items:flex-start;
  }
}