:root{
  --green:#b6d7a8;
  --green-dark:#8fb47d;
  --green-deep:#6f8f63;
  --green-soft:#edf6e8;
  --cream:#faf8f2;
  --cream-2:#f5f0e8;
  --gold:#9b7a37;
  --gold-soft:#cdb47f;
  --ink:#2c352c;
  --muted:#687168;
  --line:#dfe7d9;
  --white:#ffffff;
  --shadow:0 24px 70px rgba(143,180,125,.18);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, Arial, sans-serif;
  color:var(--ink);
  background:var(--cream);
  overflow-x:hidden;
}

a{
  color:inherit;
}

h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:700;
}

.topbar{
  background:linear-gradient(90deg,#8fb47d,#b6d7a8);
  color:#fff;
  font-size:14px;
}

.topbar-inner{
  max-width:1320px;
  margin:auto;
  padding:11px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.topbar a{
  color:#fff;
  text-decoration:none;
  margin-right:26px;
  opacity:.95;
}

.topbar i{
  margin-right:7px;
}

.topbar-social a{
  margin-right:0;
  margin-left:16px;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(223,231,217,.85);
  box-shadow:0 12px 40px rgba(31,39,31,.06);
}

.header-inner{
  max-width:1320px;
  height:96px;
  margin:auto;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}

.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
  text-decoration:none;
}

.brand img{
  width:188px;
  height:76px;
  object-fit:contain;
  display:block;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:auto;
}

.main-nav a{
  font-size:15px;
  color:#233025;
  text-decoration:none;
  white-space:nowrap;
  transition:.2s ease;
}

.main-nav a:hover{
  color:#8fb47d;
}

.nav-dropdown{
  position:relative;
}

.dropdown-menu{
  position:absolute;
  top:34px;
  left:-24px;
  min-width:245px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:12px;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.2s ease;
}

.nav-dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
}

.dropdown-menu a:hover{
  background:var(--green-soft);
}

.header-actions{
  display:flex;
  align-items:center;
  gap:15px;
}

.appointment-btn{
  background:#8fb47d;
  color:#fff;
  padding:16px 24px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 14px 30px rgba(143,180,125,.28);
  transition:.2s ease;
}

.appointment-btn:hover{
  background:#7ba36b;
  transform:translateY(-1px);
}

.mobile-toggle{
  display:none;
  border:0;
  background:transparent;
  color:#7ba36b;
  font-size:28px;
  cursor:pointer;
}

/* HERO */

.hero{
  position:relative;
  min-height:620px;
  background:
    radial-gradient(circle at 75% 40%, rgba(255,255,255,.2), rgba(237,246,232,.66) 55%),
    linear-gradient(110deg,#fffdf8 0%,#faf8f2 44%,#e8f3e1 100%);
  overflow:hidden;
}

.hero-inner{
  max-width:1320px;
  margin:auto;
  padding:78px 28px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:44px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#8fb47d;
  font-weight:700;
  letter-spacing:.08em;
  font-size:13px;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero-kicker:before{
  content:"";
  width:34px;
  height:1px;
  background:#8fb47d;
}

.hero h1{
  font-size:72px;
  line-height:1.03;
  color:#6f8f63;
  margin:0 0 24px;
  letter-spacing:-1.5px;
}

.hero h1 span{
  display:block;
  color:#9b7a37;
}

.hero p{
  max-width:560px;
  font-size:20px;
  line-height:1.75;
  color:#405043;
  margin:0 0 34px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:17px 26px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  transition:.2s ease;
}

.btn-primary{
  background:#8fb47d;
  color:#fff;
  border:none;
  box-shadow:0 18px 40px rgba(143,180,125,.28);
}

.btn-primary:hover{
  background:#7ba36b;
  transform:translateY(-2px);
}

.btn-secondary{
  background:#fff;
  color:#6f8f63;
  border:1px solid #dfe7d9;
}

.btn-secondary:hover{
  border-color:#b6d7a8;
  transform:translateY(-2px);
}

.hero-visual{
  position:relative;
  min-height:460px;
}

.hero-card{
  position:absolute;
  right:0;
  top:12px;
  width:92%;
  height:450px;
  border-radius:38px;
  overflow:hidden;
  background:#ddd;
  box-shadow:0 35px 90px rgba(31,39,31,.16);
}

.hero-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.hero-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(255,255,255,.1),rgba(182,215,168,.12));
}

.hero-floating{
  position:absolute;
  left:0;
  bottom:18px;
  width:285px;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border:1px solid rgba(223,231,217,.92);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}

.hero-floating strong{
  display:block;
  color:#6f8f63;
  font-family:Georgia,"Times New Roman",serif;
  font-size:23px;
  margin-bottom:8px;
}

.hero-floating span{
  color:var(--muted);
  line-height:1.6;
}

.hero-dots{
  position:absolute;
  left:50%;
  bottom:22px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}

.hero-dots span{
  width:11px;
  height:11px;
  border-radius:50%;
  background:#fff;
}

.hero-dots span:first-child{
  background:#8fb47d;
}

/* SECTIONS */

.section{
  padding:82px 28px;
}

.section-inner{
  max-width:1320px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:42px;
}

.section-title span,
.mini-title,
.contact-label{
  display:block;
  color:#9b7a37;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
  margin-bottom:10px;
}

.section-title h2{
  margin:0;
  font-size:42px;
  color:#6f8f63;
  letter-spacing:.04em;
}

.section-title p{
  color:var(--muted);
  font-size:17px;
}

.services-wrap{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:46px;
  align-items:start;
}

.accordion{
  background:#fff;
  border:1px solid var(--line);
  border-radius:26px;
  padding:10px 34px;
  box-shadow:0 18px 55px rgba(31,39,31,.06);
}

.accordion-item{
  border-bottom:1px solid var(--line);
  overflow:hidden;
}

.accordion-item:last-child{
  border-bottom:0;
}

.acc-head{
  width:100%;
  border:0;
  background:transparent;
  display:flex;
  align-items:center;
  gap:18px;
  padding:23px 0;
  cursor:pointer;
  text-align:left;
}

.acc-head .icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#edf6e8;
  color:#7ba36b;
  display:grid;
  place-items:center;
  font-size:22px;
  flex-shrink:0;
}

.acc-head span{
  font-family:Georgia,"Times New Roman",serif;
  color:#7ba36b;
  font-size:27px;
  font-weight:700;
}

.acc-head b{
  margin-left:auto;
  color:#6b746b;
  font-size:18px;
  transition:.25s ease;
}

.accordion-item.open .acc-head b{
  transform:rotate(180deg);
}

.acc-body{
  max-height:0;
  overflow:hidden;
  padding:0 20px 0 78px;
  color:#596159;
  line-height:1.8;
  font-size:16px;
  transition:max-height .35s ease, padding .35s ease;
}

.accordion-item.open .acc-body{
  max-height:500px;
  padding:0 20px 26px 78px;
}

.accordion-item.open .acc-head b{
  transform:rotate(180deg);
}

.feature-card{
  background:linear-gradient(145deg,#8fb47d,#b6d7a8);
  color:#fff;
  border-radius:32px;
  padding:30px;
  box-shadow:0 28px 70px rgba(143,180,125,.28);
  position:sticky;
  top:130px;
}

.feature-img{
  height:205px;
  border-radius:24px;
  overflow:hidden;
  margin-bottom:26px;
}

.feature-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.feature-card h3{
  font-size:27px;
  margin:0 0 16px;
}

.feature-card p{
  line-height:1.7;
  color:#fff;
}

.feature-list{
  list-style:none;
  padding:0;
  margin:20px 0 0;
}

.feature-list li{
  margin:13px 0;
}

.feature-list i{
  color:#ffffff;
  margin-right:9px;
}

/* ABOUT */

.about-grid{
  display:grid;
  grid-template-columns:1fr 360px 1fr;
  gap:64px;
  align-items:center;
}

.about-box h2,
.schools-box h2{
  font-size:38px;
  color:#6f8f63;
  margin:0 0 18px;
}

.about-box p{
  color:#4d574e;
  line-height:1.85;
}

.about-img{
  height:330px;
  border-radius:180px 180px 14px 14px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.about-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.schools{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.school-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
  text-align:center;
}

.school-item i{
  color:#8fb47d;
  font-size:34px;
  margin-bottom:12px;
}

/* CONTACT */

.contact-band{
  background:linear-gradient(135deg,#8fb47d,#b6d7a8);
  color:#2c352c;
  padding:60px 28px;
}

.contact-inner{
  max-width:1320px;
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr .6fr;
  gap:44px;
  align-items:center;
}

.contact-band h2{
  max-width:760px;
  font-size:38px;
  line-height:1.2;
  margin:8px 0 28px;
}

.contact-info{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.contact-item{
  display:flex;
  gap:14px;
}

.contact-item i{
  width:42px;
  height:42px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:50%;
  display:grid;
  place-items:center;
  flex-shrink:0;
  color:#fff;
}

.contact-item small{
  display:block;
  opacity:.78;
  margin-bottom:5px;
}

.contact-box{
  background:#ffffff;
  color:var(--ink);
  border-radius:22px;
  padding:30px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* FOOTER */

.footer{
  background:#a7c89a;
  color:#2c352c;
  margin-top:80px;
}

.footer-inner{
  max-width:1320px;
  margin:auto;
  padding:70px 28px;
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr 1fr;
  gap:50px;
}

.footer-logo img{
  width:220px;
  height:auto;
}

.footer-brand p{
  color:rgba(44,53,44,.78);
  line-height:1.8;
  margin-top:20px;
}

.footer-col h4{
  color:#5f7f55;
  margin-bottom:20px;
  font-size:18px;
}

.footer-col ul{
  margin:0;
  padding:0;
  list-style:none;
}

.footer-col li{
  margin-bottom:12px;
}

.footer-col a{
  color:rgba(44,53,44,.82);
  text-decoration:none;
  transition:.2s;
}

.footer-col a:hover{
  color:#ffffff;
}

.footer-contact li{
  display:flex;
  gap:12px;
  align-items:flex-start;
  color:rgba(44,53,44,.82);
}

.footer-contact i{
  color:#5f7f55;
  margin-top:4px;
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:20px;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.28);
  padding:20px 28px;
  max-width:1320px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  color:rgba(44,53,44,.72);
  font-size:13px;
}

/* MOBILE MENU */

.mobile-panel{
  position:fixed;
  inset:0 0 0 auto;
  width:min(390px,88vw);
  background:#6f8f63;
  color:#fff;
  z-index:100;
  padding:30px;
  transform:translateX(105%);
  transition:.28s ease;
  box-shadow:-20px 0 70px rgba(0,0,0,.25);
}

body.menu-open .mobile-panel{
  transform:translateX(0);
}

.mobile-close{
  border:0;
  background:transparent;
  color:#fff;
  font-size:26px;
  margin-left:auto;
  display:block;
  cursor:pointer;
}

.mobile-panel a{
  display:block;
  color:#fff;
  text-decoration:none;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.mobile-panel a.sub{
  color:#f8f3e6;
  padding-left:18px;
  font-size:14px;
}

.mobile-cta{
  margin-top:20px;
  background:#fff;
  color:#6f8f63!important;
  text-align:center;
  border-radius:12px;
  border:0!important;
  font-weight:700;
}

/* EXTRA INDEX */

.hero-premium h1 span{
  display:block;
  color:#9b7a37;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
  max-width:620px;
}

.hero-stats div{
  background:rgba(255,255,255,.74);
  border:1px solid #dfe7d9;
  border-radius:18px;
  padding:18px;
  box-shadow:0 18px 45px rgba(143,180,125,.12);
}

.hero-stats strong{
  display:block;
  color:#6f8f63;
  margin-bottom:6px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:19px;
}

.hero-stats small{
  color:#687168;
  line-height:1.5;
}

.hero-bg-leaf{
  position:absolute;
  right:-120px;
  top:70px;
  width:360px;
  height:360px;
  background:rgba(182,215,168,.25);
  border-radius:65% 35% 60% 40%;
  transform:rotate(-18deg);
}

.intro-section{
  padding-top:34px;
}

.intro-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:-54px;
  position:relative;
  z-index:4;
}

.intro-card{
  background:#fff;
  border:1px solid #dfe7d9;
  border-radius:26px;
  padding:32px;
  box-shadow:0 22px 60px rgba(143,180,125,.14);
}

.intro-card i{
  width:56px;
  height:56px;
  border-radius:50%;
  background:#edf6e8;
  color:#7ba36b;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:18px;
}

.intro-card h3{
  color:#6f8f63;
  margin:0 0 10px;
  font-size:24px;
}

.intro-card p{
  color:#687168;
  line-height:1.7;
  margin:0;
}

.text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#6f8f63;
  font-weight:700;
  text-decoration:none;
  margin-top:8px;
}

.empty-note{
  padding:28px;
  color:#687168;
}

.about-premium{
  background:linear-gradient(180deg,#faf8f2,#ffffff);
}

.about-box h2,
.schools-box h2{
  line-height:1.18;
}

.calm-section{
  background:#fff;
}

.calm-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:50px;
  align-items:start;
}

.calm-grid h2{
  font-size:42px;
  color:#6f8f63;
  line-height:1.15;
}

.calm-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.calm-step{
  border:1px solid #dfe7d9;
  border-radius:24px;
  padding:26px;
  background:#faf8f2;
}

.calm-step strong{
  color:#8fb47d;
  font-size:14px;
}

.calm-step h3{
  color:#6f8f63;
  margin:12px 0;
}

.calm-step p{
  color:#687168;
  line-height:1.7;
  margin:0;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:grid;
  place-items:center;
  text-decoration:none;
  font-size:28px;
  z-index:80;
  box-shadow:0 18px 45px rgba(37,211,102,.34);
}

/* RESPONSIVE */

@media(max-width:1100px){
  .main-nav{
    display:none;
  }

  .mobile-toggle{
    display:block;
  }

  .appointment-btn{
    display:none;
  }

  .hero-inner{
    grid-template-columns:1fr;
  }

  .hero-card{
    position:relative;
    width:100%;
  }

  .hero-floating{
    left:24px;
  }

  .services-wrap,
  .about-grid,
  .contact-inner,
  .calm-grid{
    grid-template-columns:1fr;
  }

  .feature-card{
    position:relative;
    top:auto;
  }

  .contact-info{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-inner{
    grid-template-columns:1fr 1fr;
  }

  .calm-steps{
    grid-template-columns:1fr;
  }
}

@media(max-width:900px){
  .intro-grid,
  .hero-stats{
    grid-template-columns:1fr;
  }

  .intro-grid{
    margin-top:0;
  }

  .contact-band h2{
    font-size:30px;
  }

  .footer-bottom{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}

@media(max-width:720px){
  .topbar{
    display:none;
  }

  .header-inner{
    height:82px;
    padding:0 20px;
  }

  .brand img{
    width:145px;
    height:62px;
  }

  .hero-inner{
    padding:55px 20px;
  }

  .hero h1{
    font-size:44px;
  }

  .hero p{
    font-size:17px;
  }

  .hero-visual{
    min-height:360px;
  }

  .hero-card{
    height:320px;
    border-radius:26px;
  }

  .hero-floating{
    width:245px;
    bottom:-18px;
  }

  .section{
    padding:58px 20px;
  }

  .section-title h2{
    font-size:34px;
  }

  .accordion{
    padding:4px 20px;
  }

  .acc-head span{
    font-size:22px;
  }

  .acc-body{
    padding-left:0;
  }

  .contact-info{
    grid-template-columns:1fr;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    text-align:center;
  }
}
.powered-by{
font-size:13px;
}

.powered-by a{
color:#5f7f55;
font-weight:600;
text-decoration:none;
transition:.2s;
}

.powered-by a:hover

.service-hero{
  background:
    radial-gradient(circle at 80% 30%,rgba(182,215,168,.35),transparent 35%),
    linear-gradient(135deg,#faf8f2,#edf6e8);
  padding:90px 28px;
  text-align:center;
}

.service-hero h1{
  max-width:900px;
  margin:10px auto 18px;
  font-size:58px;
  line-height:1.05;
  color:#6f8f63;
}

.service-hero p{
  color:#687168;
  font-size:19px;
  margin:0;
}

.service-page{
  padding:70px 28px;
}

.service-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:start;
}

.service-content{
  background:#fff;
  border:1px solid #dfe7d9;
  border-radius:30px;
  padding:50px;
  line-height:1.9;
  color:#405043;
  box-shadow:0 24px 70px rgba(143,180,125,.14);
}

.service-content h2,
.service-content h3{
  color:#6f8f63;
  margin-top:28px;
}

.service-content p:first-child{
  margin-top:0;
}

.service-sidebar{
  position:sticky;
  top:130px;
  display:grid;
  gap:22px;
}

.side-card{
  background:#fff;
  border:1px solid #dfe7d9;
  border-radius:26px;
  padding:28px;
  box-shadow:0 18px 55px rgba(143,180,125,.12);
}

.side-card h3{
  color:#6f8f63;
  margin:0 0 12px;
  font-size:26px;
}

.side-card p{
  color:#687168;
  line-height:1.7;
}

.service-list{
  list-style:none;
  padding:0;
  margin:0;
}

.service-list li{
  border-bottom:1px solid #dfe7d9;
}

.service-list li:last-child{
  border-bottom:0;
}

.service-list a{
  display:flex;
  padding:14px 0;
  color:#405043;
  text-decoration:none;
  transition:.2s;
}

.service-list a:hover{
  color:#7ba36b;
  padding-left:6px;
}

@media(max-width:900px){
  .service-hero h1{
    font-size:40px;
  }

  .service-layout{
    grid-template-columns:1fr;
  }

  .service-sidebar{
    position:relative;
    top:auto;
  }

  .service-content{
    padding:30px;
  }
}
.page-hero{
  background:
    radial-gradient(circle at 80% 30%,rgba(182,215,168,.35),transparent 35%),
    linear-gradient(135deg,#faf8f2,#edf6e8);
  padding:90px 28px;
  text-align:center;
}

.page-hero h1{
  max-width:900px;
  margin:10px auto 18px;
  font-size:58px;
  line-height:1.05;
  color:#6f8f63;
}

.page-hero p{
  color:#687168;
  font-size:19px;
  margin:0;
}

.page-detail{
  padding:70px 28px;
}

.page-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:start;
}

.page-content{
  background:#fff;
  border:1px solid #dfe7d9;
  border-radius:30px;
  padding:50px;
  line-height:1.9;
  color:#405043;
  box-shadow:0 24px 70px rgba(143,180,125,.14);
}

.page-content h2,
.page-content h3{
  color:#6f8f63;
  margin-top:28px;
}

.page-content p:first-child{
  margin-top:0;
}

.page-sidebar{
  position:sticky;
  top:130px;
  display:grid;
  gap:22px;
}

.page-list{
  list-style:none;
  padding:0;
  margin:0;
}

.page-list li{
  border-bottom:1px solid #dfe7d9;
}

.page-list li:last-child{
  border-bottom:0;
}

.page-list a{
  display:flex;
  padding:14px 0;
  color:#405043;
  text-decoration:none;
  transition:.2s;
}

.page-list a:hover{
  color:#7ba36b;
  padding-left:6px;
}

@media(max-width:900px){
  .page-hero h1{
    font-size:40px;
  }

  .page-layout{
    grid-template-columns:1fr;
  }

  .page-sidebar{
    position:relative;
    top:auto;
  }

  .page-content{
    padding:30px;
  }
}
.blog-hero{
    background:
    radial-gradient(circle at 80% 30%,rgba(182,215,168,.35),transparent 35%),
    linear-gradient(135deg,#faf8f2,#edf6e8);

    padding:90px 28px;
    text-align:center;
}

.blog-hero h1{
    font-size:64px;
    margin:10px 0 15px;
    color:#6f8f63;
}

.blog-hero p{
    font-size:19px;
    color:#687168;
    max-width:700px;
    margin:auto;
}

.blog-page{
    padding:70px 28px;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:30px;
}

.blog-card{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    border:1px solid #dfe7d9;
    box-shadow:0 20px 60px rgba(143,180,125,.12);
    transition:.25s ease;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-card-image{
    height:240px;
    overflow:hidden;
}

.blog-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blog-card-body{
    padding:28px;
}

.blog-date{
    color:#9b7a37;
    font-size:13px;
    font-weight:600;
    margin-bottom:12px;
}

.blog-card h2{
    margin:0 0 14px;
    color:#6f8f63;
    line-height:1.3;
    font-size:28px;
}

.blog-card p{
    color:#687168;
    line-height:1.8;
}

.blog-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:15px;
    text-decoration:none;
    color:#7ba36b;
    font-weight:700;
}

.empty-blog{
    text-align:center;
    background:#fff;
    border-radius:24px;
    padding:60px;
    border:1px solid #dfe7d9;
    color:#687168;
}
.page-map{
    margin-top:35px;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #dfe7d9;
}

.page-map iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}
.footer-premium{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 15% 10%,rgba(255,255,255,.35),transparent 28%),
    linear-gradient(135deg,#a7c89a,#dcefd2);
  color:#2c352c;
  margin-top:90px;
}

.footer-glow{
  position:absolute;
  right:-140px;
  top:-140px;
  width:360px;
  height:360px;
  background:rgba(255,255,255,.35);
  border-radius:50%;
  filter:blur(10px);
}

.footer-premium .footer-inner{
  position:relative;
  z-index:1;
  max-width:1320px;
  margin:auto;
  padding:76px 28px 58px;
  display:grid;
  grid-template-columns:1.35fr .75fr .85fr 1.15fr;
  gap:54px;
}

.footer-premium .footer-logo{
  display:inline-flex;
  background:rgba(255,255,255,.65);
  border:1px solid rgba(255,255,255,.65);
  border-radius:22px;
  padding:12px 16px;
  box-shadow:0 18px 50px rgba(111,143,99,.16);
}

.footer-premium .footer-logo img{
  width:215px;
  height:auto;
  display:block;
}

.footer-premium .footer-brand p{
  max-width:390px;
  color:rgba(44,53,44,.78);
  line-height:1.85;
  margin:24px 0 0;
}

.footer-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.footer-badges span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.7);
  color:#5f7f55;
  border-radius:999px;
  padding:10px 14px;
  font-size:13px;
  font-weight:700;
}

.footer-premium .footer-col h4{
  color:#4f7047;
  font-size:19px;
  margin:0 0 22px;
  font-family:Georgia,"Times New Roman",serif;
}

.footer-premium .footer-col ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-premium .footer-col li{
  margin-bottom:13px;
}

.footer-premium .footer-col a{
  color:rgba(44,53,44,.82);
  text-decoration:none;
  transition:.2s ease;
}

.footer-premium .footer-col a:hover{
  color:#ffffff;
  padding-left:4px;
}

.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  line-height:1.55;
}

.footer-contact i{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  color:#5f7f55;
  display:grid;
  place-items:center;
  flex-shrink:0;
  margin-top:-4px;
}

.footer-social{
  display:flex;
  gap:12px;
  margin-top:24px;
}

.footer-social a{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(255,255,255,.58);
  display:grid;
  place-items:center;
  color:#5f7f55!important;
  transition:.2s ease;
}

.footer-social a:hover{
  background:#ffffff;
  transform:translateY(-3px);
  padding-left:0!important;
}

.footer-premium .footer-bottom{
  position:relative;
  z-index:1;
  max-width:1320px;
  margin:auto;
  border-top:1px solid rgba(255,255,255,.42);
  padding:22px 28px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:rgba(44,53,44,.72);
  font-size:13px;
}

.footer-bottom-links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.powered-by a{
  color:#4f7047;
  font-weight:800;
  text-decoration:none;
}

.powered-by a:hover{
  color:#fff;
}

@media(max-width:1000px){
  .footer-premium .footer-inner{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:680px){
  .footer-premium .footer-inner{
    grid-template-columns:1fr;
    padding-top:54px;
  }

  .footer-premium .footer-bottom{
    flex-direction:column;
    text-align:center;
    align-items:center;
  }

  .footer-bottom-links{
    justify-content:center;
  }

  .footer-premium .footer-logo img{
    width:180px;
  }
}
.blog-hero-premium{
  background:
    radial-gradient(circle at 80% 28%,rgba(182,215,168,.42),transparent 34%),
    linear-gradient(135deg,#faf8f2,#edf6e8);
  padding:92px 28px;
  text-align:center;
}

.blog-hero-premium h1{
  font-size:66px;
  color:#6f8f63;
  margin:8px 0 16px;
}

.blog-hero-premium p{
  max-width:720px;
  margin:auto;
  color:#687168;
  font-size:19px;
  line-height:1.7;
}

.blog-page-premium{
  padding:72px 28px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:30px;
}

.blog-card{
  background:#fff;
  border:1px solid #dfe7d9;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 20px 60px rgba(143,180,125,.12);
  transition:.25s ease;
}

.blog-card:hover{
  transform:translateY(-7px);
  box-shadow:0 26px 70px rgba(143,180,125,.2);
}

.blog-card-image{
  display:block;
  height:245px;
  overflow:hidden;
  background:#edf6e8;
}

.blog-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.45s ease;
}

.blog-card:hover .blog-card-image img{
  transform:scale(1.05);
}

.blog-card-body{
  padding:30px;
}

.blog-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:14px;
  color:#9b7a37;
  font-size:13px;
  font-weight:700;
}

.blog-meta i{
  margin-right:6px;
}

.blog-card h2{
  margin:0 0 14px;
  font-size:28px;
  line-height:1.25;
}

.blog-card h2 a{
  color:#6f8f63;
  text-decoration:none;
}

.blog-card p{
  color:#687168;
  line-height:1.8;
  margin:0;
}

.blog-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:20px;
  text-decoration:none;
  color:#7ba36b;
  font-weight:800;
}

.empty-blog{
  text-align:center;
  background:#fff;
  border-radius:24px;
  padding:60px;
  border:1px solid #dfe7d9;
  color:#687168;
}

.blog-detail-hero{
  background:
    radial-gradient(circle at 80% 30%,rgba(182,215,168,.42),transparent 36%),
    linear-gradient(135deg,#faf8f2,#edf6e8);
  padding:92px 28px;
  text-align:center;
}

.blog-detail-hero h1{
  max-width:980px;
  margin:10px auto 18px;
  color:#6f8f63;
  font-size:58px;
  line-height:1.08;
}

.blog-detail-meta{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:18px;
  color:#9b7a37;
  font-weight:700;
}

.blog-detail-page{
  padding:72px 28px;
}

.blog-detail-layout{
  display:grid;
  grid-template-columns:1fr 360px;
  gap:42px;
  align-items:start;
}

.blog-detail-content{
  background:#fff;
  border:1px solid #dfe7d9;
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 24px 70px rgba(143,180,125,.14);
}

.blog-detail-image{
  height:420px;
  overflow:hidden;
  background:#edf6e8;
}

.blog-detail-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.blog-detail-text{
  padding:50px;
  line-height:1.9;
  color:#405043;
}

.blog-detail-text h2,
.blog-detail-text h3{
  color:#6f8f63;
}

.blog-detail-sidebar{
  position:sticky;
  top:130px;
  display:grid;
  gap:22px;
}

@media(max-width:900px){
  .blog-hero-premium h1,
  .blog-detail-hero h1{
    font-size:40px;
  }

  .blog-detail-layout{
    grid-template-columns:1fr;
  }

  .blog-detail-sidebar{
    position:relative;
    top:auto;
  }

  .blog-detail-image{
    height:280px;
  }

  .blog-detail-text{
    padding:30px;
  }
}
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.team-hero {
  padding: 90px 0 70px;
  background: #f7f3ee;
  text-align: center;
}

.team-hero span {
  color: #8a6f52;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.team-hero h1 {
  margin: 14px 0;
  font-size: 42px;
  color: #2b2118;
}

.team-hero p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}

.team-section {
  padding: 80px 0;
  background: #fff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.team-card {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-image {
  height: 340px;
  background: #eee;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  padding: 28px;
}

.team-content h3 {
  margin: 0 0 6px;
  font-size: 24px;
  color: #2b2118;
}

.team-content span {
  display: block;
  margin-bottom: 14px;
  color: #8a6f52;
  font-weight: 600;
}

.team-content p {
  min-height: 78px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

.team-btn,
.profile-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 13px 26px;
  background: #8a6f52;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.team-btn:hover,
.profile-btn:hover {
  background: #6f583f;
}

.profile-section {
  padding: 90px 0;
  background: #f7f3ee;
}

.profile-wrapper {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.profile-image img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.profile-content {
  background: #fff;
  padding: 45px;
  border-radius: 30px;
}

.profile-label {
  color: #8a6f52;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
}

.profile-content h1 {
  margin: 12px 0 5px;
  font-size: 40px;
  color: #2b2118;
}

.profile-content h4 {
  margin-bottom: 30px;
  font-size: 18px;
  color: #8a6f52;
}

.profile-block {
  margin-bottom: 28px;
}

.profile-block h3 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #2b2118;
}

.profile-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

@media(max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-wrapper {
    grid-template-columns: 1fr;
  }
}

@media(max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-hero h1,
  .profile-content h1 {
    font-size: 32px;
  }

  .profile-content {
    padding: 28px;
  }
}
.kktc-hero {
    padding: 95px 0;
    background: linear-gradient(135deg, rgba(247,243,238,.98), rgba(255,255,255,.94));
}

.kktc-hero-grid,
.kktc-two-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 45px;
    align-items: center;
}

.kktc-hero-content span,
.kktc-label {
    color: #8a6f52;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kktc-hero-content h1 {
    font-size: 52px;
    line-height: 1.12;
    color: #2b2118;
}

.kktc-hero-content p,
.kktc-intro p {
    color: #555;
    font-size: 17px;
    line-height: 1.85;
}

.kktc-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.kktc-hero-card,
.kktc-info-box {
    background: #fff;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.kktc-hero-card ul,
.kktc-info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.kktc-hero-card li,
.kktc-info-box li {
    padding: 12px 0;
    border-bottom: 1px solid #eee5da;
    color: #555;
}

.kktc-services,
.kktc-locations {
    background: #f7f3ee;
}

.kktc-service-grid,
.kktc-team-grid,
.kktc-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kktc-service-card,
.kktc-team-card,
.kktc-location-grid a {
    background: #fff;
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 14px 35px rgba(0,0,0,.06);
    transition: .25s ease;
}

.kktc-service-card {
    padding: 28px;
}

.kktc-service-card:hover,
.kktc-team-card:hover,
.kktc-location-grid a:hover {
    transform: translateY(-6px);
}

.kktc-service-card > i {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #eef5e8;
    color: #8a6f52;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kktc-team-card {
    overflow: hidden;
}

.kktc-team-img {
    display: block;
    height: 320px;
    background: #f1ede7;
}

.kktc-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kktc-team-body {
    padding: 25px;
}

.kktc-team-body span,
.kktc-team-body a,
.kktc-service-card strong {
    color: #8a6f52;
    font-weight: 700;
}

.kktc-location-grid a {
    padding: 22px;
    font-weight: 700;
}

.kktc-cta {
    padding: 80px 0;
    background: #2b2118;
    color: #fff;
    text-align: center;
}

@media(max-width: 992px) {
    .kktc-hero-grid,
    .kktc-two-grid {
        grid-template-columns: 1fr;
    }

    .kktc-service-grid,
    .kktc-team-grid,
    .kktc-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .kktc-service-grid,
    .kktc-team-grid,
    .kktc-location-grid {
        grid-template-columns: 1fr;
    }

    .kktc-hero-content h1 {
        font-size: 34px;
    }
}