:root{
  --forest:#0f3d2e;
  --forest-deep:#0a2b21;
  --gold:#c08a3e;
  --gold-light:#dba85f;
  --cream:#faf6ee;
  --paper:#fffdf8;
  --ink:#1c2321;
  --ink-soft:#4b5750;
  --line:#e4ddcd;
  --sage:#7c9885;
  --radius:16px;
  --shadow-sm:0 4px 16px rgba(15,61,46,0.08);
  --shadow-md:0 18px 40px rgba(15,61,46,0.14);
  --shadow-lg:0 30px 70px rgba(10,20,16,0.35);
}

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

html{scroll-behavior:smooth;}

body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

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

h1,h2,h3,h4{
  font-family:'Fraunces',serif;
  color:var(--forest-deep);
  line-height:1.15;
  font-weight:600;
}

a{color:inherit;}

.wrap{width:100%;max-width:1220px;margin:0 auto;padding:0 32px;}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:'Inter',sans-serif;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}

.eyebrow::before{
  content:"";
  width:22px;
  height:2px;
  background:var(--gold);
  display:inline-block;
}

/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:100px;
  font-family:'Inter',sans-serif;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  border:none;
  cursor:pointer;
  transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  letter-spacing:0.01em;
}

.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold));
  color:var(--forest-deep);
  box-shadow:0 10px 25px rgba(192,138,62,0.35);
}

.btn-gold:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(192,138,62,0.45);}

.btn-outline{
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.55);
  color:#fff;
}

.btn-outline:hover{background:rgba(255,255,255,0.12);transform:translateY(-2px);}

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

.btn-forest:hover{background:var(--forest-deep);transform:translateY(-2px);}

/* HEADER */

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(250,246,238,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15,61,46,0.08);
  transition:all 0.3s ease;
}

nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

.logo{display:flex;align-items:center;}

.logo img{height:34px;width:auto;display:block;}

.nav-links{
  display:flex;
  align-items:center;
  gap:36px;
  list-style:none;
}

.nav-links > li{position:relative;}

.nav-links a{
  text-decoration:none;
  color:var(--ink);
  font-weight:500;
  font-size:15px;
  transition:color 0.2s;
}

.nav-links > li > a:hover{color:var(--forest);}

.nav-links .caret{font-size:11px;margin-left:4px;opacity:0.6;}

.dropdown{
  position:absolute;
  top:calc(100% + 16px);
  left:50%;
  transform:translate(-50%,8px);
  background:var(--paper);
  width:280px;
  border-radius:14px;
  box-shadow:var(--shadow-md);
  opacity:0;
  visibility:hidden;
  transition:all 0.25s ease;
  padding:8px;
  list-style:none;
}

.dropdown.show{opacity:1;visibility:visible;transform:translate(-50%,0);}

.dropdown li a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:9px;
  font-size:14.5px;
  color:var(--ink-soft);
}

.dropdown li a:hover{background:var(--cream);color:var(--forest);}

.dropdown i{color:var(--gold);width:16px;}

.nav-cta{display:flex;align-items:center;gap:22px;}

.nav-cta .btn{padding:12px 24px;font-size:14px;}

.menu-toggle{display:none;font-size:24px;cursor:pointer;color:var(--forest-deep);background:none;border:none;}

@media(max-width:960px){
  .logo img{height:30px;}
  .nav-links{
    position:fixed;
    top:0;
    right:-100%;
    height:100vh;
    width:78%;
    max-width:340px;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    padding:100px 32px 40px;
    gap:26px;
    transition:right 0.35s ease;
    box-shadow:var(--shadow-lg);
  }
  .nav-links.show{right:0;}
  .dropdown{position:static;transform:none;width:100%;box-shadow:none;background:var(--cream);opacity:1;visibility:visible;max-height:0;overflow:hidden;padding:0;margin-top:10px;}
  .dropdown.show{max-height:400px;padding:8px;}
  .nav-cta .btn-forest-mobile{display:inline-flex;}
  .menu-toggle{display:block;z-index:1100;}
  .nav-cta > a.btn{display:none;}
}

@media(max-width:480px){
  .logo img{height:26px;}
}

/* HERO */

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding-top:90px;
}

.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(10,30,23,0.78) 0%,rgba(10,30,23,0.68) 45%,rgba(10,30,23,0.92) 100%);
  z-index:1;
}

.hero-inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.4fr 0.9fr;
  gap:60px;
  align-items:center;
  width:100%;
}

.hero-text h1{
  color:#fff;
  font-size:clamp(34px,4.6vw,58px);
  font-weight:600;
  letter-spacing:-0.01em;
  margin-bottom:22px;
}

.hero-text h1 em{
  font-style:italic;
  color:var(--gold-light);
  font-weight:500;
}

.hero-text p{
  color:rgba(255,255,255,0.82);
  font-size:18px;
  max-width:520px;
  margin-bottom:36px;
}

.hero-actions{display:flex;gap:16px;flex-wrap:wrap;}

/* SEAL BADGE */

.seal-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.seal{
  width:220px;
  height:220px;
  animation:spin 30s linear infinite;
}

@keyframes spin{from{transform:rotate(0deg);}to{transform:rotate(360deg);}}

.seal-static{
  position:absolute;
  top:50%;left:50%;
  transform:translate(-50%,-50%);
  width:76px;height:76px;
  display:flex;align-items:center;justify-content:center;
}

.seal-holder{position:relative;width:220px;height:220px;}

@media(prefers-reduced-motion:reduce){
  .seal{animation:none;}
}

/* TRUST STRIP */

.trust-strip{
  background:var(--forest-deep);
  position:relative;
  z-index:2;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}

.trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:22px 28px;
  color:#fff;
  border-left:1px solid rgba(255,255,255,0.08);
}

.trust-item:first-child{border-left:none;}

.trust-item i{color:var(--gold-light);font-size:20px;flex-shrink:0;}

.trust-item span{font-size:14px;color:rgba(255,255,255,0.85);font-weight:500;}

@media(max-width:800px){
  .trust-grid{grid-template-columns:1fr;}
  .trust-item{border-left:none;border-top:1px solid rgba(255,255,255,0.08);}
  .trust-item:first-child{border-top:none;}
}

/* SECTIONS GENERAL */

section{padding:110px 0;}

.section-head{max-width:640px;margin-bottom:56px;}

.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}

.section-head h2{font-size:clamp(30px,3.4vw,44px);}

.section-head p{color:var(--ink-soft);font-size:16.5px;margin-top:16px;}

/* ABOUT */

.about{background:var(--paper);}

.about-grid{
  display:grid;
  grid-template-columns:0.95fr 1.05fr;
  gap:70px;
  align-items:center;
}

.about-media{position:relative;}

.about-media img{
  border-radius:22px;
  box-shadow:var(--shadow-md);
  position:relative;
  z-index:2;
}

.about-stamp{
  position:absolute;
  bottom:-26px;
  right:-26px;
  z-index:3;
  width:110px;height:110px;
  background:var(--gold);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  color:var(--forest-deep);
  box-shadow:var(--shadow-md);
  text-align:center;
  border:3px solid var(--paper);
}

.about-stamp strong{font-family:'Fraunces',serif;font-size:26px;line-height:1;}

.about-stamp span{font-size:9px;letter-spacing:0.08em;text-transform:uppercase;font-weight:700;margin-top:4px;}

.about-features{margin:28px 0 32px;display:flex;flex-direction:column;gap:16px;}

.about-feature{display:flex;align-items:flex-start;gap:14px;font-size:15.5px;color:var(--ink);}

.about-feature i{
  width:34px;height:34px;flex-shrink:0;
  background:rgba(15,61,46,0.08);
  color:var(--forest);
  border-radius:9px;
  display:flex;align-items:center;justify-content:center;
  font-size:14px;
}

.about-desc{color:var(--ink-soft);font-size:16.5px;margin-bottom:16px;}

/* SERVICES */

.services{background:linear-gradient(180deg,var(--cream),#f2ece0);}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.service-card{
  background:var(--paper);
  border-radius:20px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform 0.35s ease, box-shadow 0.35s ease;
  display:flex;
  flex-direction:column;
}

.service-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);}

.service-img{position:relative;overflow:hidden;background:#eee;}

.service-img img{width:100%;height:auto;display:block;transition:transform 0.6s ease;}

.service-card:hover .service-img img{transform:scale(1.04);}

.service-icon{
  position:absolute;
  bottom:-22px;
  left:22px;
  width:52px;height:52px;
  background:var(--forest);
  border:4px solid var(--paper);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold-light);
  font-size:18px;
  z-index:2;
}

.service-body{padding:38px 26px 26px;flex:1;display:flex;flex-direction:column;}

.service-body h3{font-size:20px;margin-bottom:10px;}

.service-body p{color:var(--ink-soft);font-size:14.5px;flex:1;margin-bottom:20px;}

.service-more{max-height:0;overflow:hidden;transition:max-height 0.4s ease;}

.service-more.open{max-height:600px;margin-bottom:18px;}

.service-more p{color:var(--ink-soft);font-size:14px;line-height:1.7;margin-bottom:12px;}

.service-more ul{padding-left:18px;margin-bottom:12px;color:var(--ink-soft);}

.service-more li{margin-bottom:6px;font-size:14px;}

.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:600;
  font-size:14px;
  color:var(--forest);
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
  align-self:flex-start;
}

.service-link i{font-size:12px;transition:transform 0.2s;}

.service-link:hover i{transform:translateX(4px);}

@media(max-width:960px){.services-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.services-grid{grid-template-columns:1fr;}}

/* HOW IT WORKS */

.how{background:var(--forest-deep);color:#fff;position:relative;overflow:hidden;}

.how::before{
  content:"";
  position:absolute;
  top:-200px;right:-200px;
  width:500px;height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(192,138,62,0.15),transparent 70%);
}

.how-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  position:relative;
  z-index:1;
}

.how .section-head h2{color:#fff;}
.how .section-head p{color:rgba(255,255,255,0.7);}

.steps{display:flex;flex-direction:column;gap:0;}

.step{
  display:flex;
  gap:24px;
  padding:26px 0;
  border-bottom:1px solid rgba(255,255,255,0.1);
}

.step:last-child{border-bottom:none;}

.step-num{
  font-family:'Fraunces',serif;
  font-size:34px;
  color:var(--gold-light);
  font-weight:500;
  min-width:56px;
}

.step h3{color:#fff;font-size:18.5px;margin-bottom:8px;}

.step p{color:rgba(255,255,255,0.68);font-size:14.5px;}

.how-video{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:1px solid rgba(255,255,255,0.15);
}

.how-video video{width:100%;height:100%;object-fit:cover;display:block;aspect-ratio:4/5;}

.how-video .caption{
  position:absolute;
  bottom:0;left:0;right:0;
  padding:26px 22px;
  background:linear-gradient(0deg,rgba(10,30,23,0.9),transparent);
  color:#fff;
}

.how-video .caption strong{display:block;font-family:'Fraunces',serif;font-size:17px;margin-bottom:4px;}

.how-video .caption span{font-size:13px;color:rgba(255,255,255,0.75);}

@media(max-width:900px){.how-grid{grid-template-columns:1fr;}.how-video video{aspect-ratio:16/9;}}

/* CONTACT */

/* TESTIMONIALS */

.testimonials{background:linear-gradient(180deg,#f2ece0,var(--cream));}

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

.testimonial-card{
  background:var(--paper);
  border-radius:20px;
  padding:36px 26px 30px;
  box-shadow:var(--shadow-sm);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover{transform:translateY(-8px);box-shadow:var(--shadow-md);}

.quote-mark{color:var(--gold-light);font-size:22px;margin-bottom:14px;opacity:0.85;}

.stars{color:var(--gold);font-size:13px;letter-spacing:3px;margin-bottom:16px;}

.testimonial-text{color:var(--ink-soft);font-size:14.5px;line-height:1.75;font-style:italic;margin-bottom:24px;}

.testimonial-person{display:flex;flex-direction:column;align-items:center;gap:10px;}

.testimonial-avatar{
  width:64px;
  height:64px;
  border-radius:50%;
  border:3px solid var(--cream);
  box-shadow:0 0 0 2px var(--gold-light);
  background:#eee;
}

.testimonial-person strong{display:block;font-family:'Fraunces',serif;font-size:15.5px;color:var(--forest-deep);}

.testimonial-person span{display:block;font-size:12.5px;color:var(--sage);margin-top:2px;}

@media(max-width:960px){.testimonials-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:640px){.testimonials-grid{grid-template-columns:1fr;}}

.contact{background:var(--cream);}

.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
}

.contact-info{display:flex;flex-direction:column;gap:22px;}

.contact-info h2{font-size:clamp(28px,3vw,38px);margin-bottom:6px;}

.contact-info > p{color:var(--ink-soft);margin-bottom:10px;}

.contact-card{
  display:flex;
  align-items:center;
  gap:16px;
  background:var(--paper);
  padding:18px 20px;
  border-radius:14px;
  box-shadow:var(--shadow-sm);
}

.contact-card i{
  width:42px;height:42px;
  border-radius:11px;
  background:rgba(15,61,46,0.08);
  color:var(--forest);
  display:flex;align-items:center;justify-content:center;
  font-size:16px;
  flex-shrink:0;
}

.contact-card strong{display:block;font-size:14px;}
.contact-card span{font-size:13.5px;color:var(--ink-soft);}

form.contact-form{
  background:var(--paper);
  padding:44px;
  border-radius:22px;
  box-shadow:var(--shadow-md);
}

.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}

form.contact-form input,
form.contact-form textarea{
  width:100%;
  padding:15px 16px;
  margin-bottom:16px;
  border-radius:10px;
  border:1.5px solid var(--line);
  font-family:'Inter',sans-serif;
  font-size:14.5px;
  background:var(--cream);
  transition:border-color 0.2s;
}

form.contact-form input:focus,
form.contact-form textarea:focus{outline:none;border-color:var(--forest);}

@media(max-width:900px){.contact-grid{grid-template-columns:1fr;}.form-row{grid-template-columns:1fr;}}

/* FOOTER */

.main-footer{background:var(--forest-deep);color:#fff;padding-top:70px;}

.footer-container{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:44px;
  padding-bottom:50px;
}

.footer-logo{width:170px;margin-bottom:20px;}

.footer-col h3{color:var(--gold-light);font-size:16px;margin-bottom:20px;font-family:'Inter',sans-serif;font-weight:700;letter-spacing:0.02em;}

.footer-col p{font-size:14px;line-height:1.7;color:rgba(255,255,255,0.72);}

.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:11px;}

.footer-col ul li a{text-decoration:none;color:rgba(255,255,255,0.8);font-size:14px;transition:0.2s;}

.footer-col ul li a:hover{color:var(--gold-light);padding-left:4px;}

.footer-contact p{margin:7px 0;font-size:13.5px;color:rgba(255,255,255,0.72);}

.social-icons{display:flex;gap:12px;margin-bottom:18px;}

.social-icons a{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.08);
  border-radius:9px;
  transition:0.25s;
  color:#fff;
}

.social-icons a:hover{background:var(--gold);color:var(--forest-deep);transform:translateY(-3px);}

.footer-note{font-size:13px;font-style:italic;color:rgba(255,255,255,0.55);}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  padding:22px;
  font-size:13px;
  color:rgba(255,255,255,0.55);
}

@media(max-width:860px){
  .footer-container{grid-template-columns:1fr 1fr;text-align:left;}
}
@media(max-width:560px){
  .footer-container{grid-template-columns:1fr;text-align:center;}
  .social-icons{justify-content:center;}
  .footer-logo{margin-left:auto;margin-right:auto;margin-top:24px;}
}

/* WHATSAPP FLOAT */

.whatsapp-float{
  position:fixed;
  bottom:26px;right:26px;
  width:58px;height:58px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:27px;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  z-index:1000;
  text-decoration:none;
  transition:0.3s;
}

.whatsapp-float:hover{transform:scale(1.08);}

.whatsapp-float::after{
  content:"";
  position:absolute;
  width:100%;height:100%;
  border-radius:50%;
  background:#25D366;
  z-index:-1;
  animation:pulse 1.6s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:0.6;}
  70%{transform:scale(1.7);opacity:0;}
  100%{opacity:0;}
}

/* MODALS */

.service-modal{
  position:fixed;inset:0;
  background:rgba(10,20,16,0.65);
  backdrop-filter:blur(3px);
  display:none;
  align-items:center;justify-content:center;
  z-index:2000;
  padding:20px;
}

.modal-content{
  background:var(--paper);
  padding:40px;
  border-radius:20px;
  max-width:600px;
  width:100%;
  max-height:82vh;
  overflow-y:auto;
  position:relative;
  animation:fadeIn 0.3s ease;
}

@keyframes fadeIn{from{opacity:0;transform:scale(0.94);}to{opacity:1;transform:scale(1);}}

.close-modal{
  position:absolute;
  right:22px;top:18px;
  font-size:24px;
  cursor:pointer;
  color:var(--ink-soft);
  line-height:1;
}

.modal-content h2{color:var(--forest);margin-bottom:16px;font-size:26px;}

.modal-content p{color:var(--ink-soft);line-height:1.75;margin-bottom:14px;font-size:15px;}

.modal-content ul{padding-left:20px;margin-bottom:14px;color:var(--ink-soft);}
.modal-content li{margin-bottom:8px;font-size:15px;}

.contact-options{margin-top:22px;display:none;flex-direction:column;gap:10px;}

.contact-options a{
  padding:13px;border-radius:10px;text-decoration:none;color:#fff;font-weight:600;text-align:center;font-size:14.5px;
}

#emailLink{background:var(--forest);}
#whatsappLink{background:#25D366;}

.about-popup-content h3{color:var(--forest);margin-bottom:10px;margin-top:22px;font-size:19px;}
.about-popup-content h3:first-child{margin-top:0;}
.about-popup-content p{color:var(--ink-soft);}
.about-popup-content hr{margin:20px 0;border:none;border-top:1px solid var(--line);}

/* REQUEST SERVICE MODAL */

.request-modal-content{max-width:520px;}

.request-options-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:14px;
  margin-top:24px;
}

.request-option-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:8px;
  padding:22px 12px;
  border-radius:14px;
  border:1.5px solid var(--line);
  background:var(--cream);
  text-decoration:none;
  cursor:pointer;
  font-family:inherit;
  transition:all 0.25s;
}

.request-option-card i{font-size:26px;color:var(--forest);}
.request-option-card h4{color:var(--forest-deep);font-size:15px;margin:0;}
.request-option-card p{color:var(--ink-soft);font-size:12.5px;margin:0;line-height:1.4;}

.request-option-card:hover{
  border-color:var(--gold);
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.request-option-card.whatsapp-option i{color:#25D366;}

@media(max-width:520px){
  .request-options-grid{grid-template-columns:1fr;}
}

/* LIVE CHAT DEMO WIDGET */

.livechat-header{
  display:flex;
  align-items:center;
  gap:12px;
  padding-bottom:16px;
  border-bottom:1px solid var(--line);
  margin-bottom:16px;
}

.chat-back-btn{background:none;border:none;font-size:16px;color:var(--forest);cursor:pointer;padding:6px;}

.livechat-agent{display:flex;align-items:center;gap:10px;}

.agent-avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--forest);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;flex-shrink:0;
}

.livechat-agent strong{display:block;color:var(--forest-deep);font-size:14.5px;}
.agent-status{font-size:12px;color:var(--ink-soft);display:flex;align-items:center;gap:5px;}
.status-dot{width:7px;height:7px;border-radius:50%;background:#2ecc71;display:inline-block;}

.chat-messages{
  display:flex;flex-direction:column;gap:10px;
  max-height:260px;overflow-y:auto;
  padding:6px 2px;margin-bottom:14px;
}

.chat-bubble{max-width:80%;padding:10px 14px;border-radius:14px;font-size:14px;line-height:1.5;}
.chat-bubble.agent{background:var(--cream);color:var(--ink-soft);align-self:flex-start;border-bottom-left-radius:4px;}
.chat-bubble.user{background:var(--forest);color:#fff;align-self:flex-end;border-bottom-right-radius:4px;}

.chat-input-row{display:flex;gap:8px;}
.chat-input-row input{flex:1;padding:11px 14px;border-radius:10px;border:1px solid var(--line);font-size:14px;font-family:inherit;}
.chat-input-row input:focus{outline:none;border-color:var(--forest);}
.chat-input-row button{background:var(--forest);color:#fff;border:none;width:44px;border-radius:10px;cursor:pointer;font-size:15px;}
.chat-input-row button:hover{background:var(--forest-deep);}

.chat-demo-note{font-size:11.5px;color:var(--ink-soft);opacity:0.75;margin-top:10px;text-align:center;}

/* RESPONSIVE OVERRIDES */

@media(max-width:960px){
  .hero-inner{grid-template-columns:1fr;text-align:center;}
  .hero-text p{margin-left:auto;margin-right:auto;}
  .hero-actions{justify-content:center;}
  .seal-wrap{display:none;}
  .about-grid{grid-template-columns:1fr;}
  .about-media{max-width:420px;margin:0 auto 40px;}
}

@media(max-width:640px){
  section{padding:76px 0;}
  .wrap{padding:0 22px;}
  .about-stamp{
    width:84px;height:84px;
    bottom:-16px;right:-16px;
  }
  .about-stamp strong{font-size:20px;}
  .about-stamp span{font-size:8px;}
}

/* =========================================
   SERVICE DETAIL PAGE STYLES
   ========================================= */

/* Breadcrumb */
.breadcrumb{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13.5px;
  color:rgba(255,255,255,0.65);
  margin-bottom:22px;
  flex-wrap:wrap;
}
.breadcrumb a{text-decoration:none;color:rgba(255,255,255,0.75);transition:color 0.2s;}
.breadcrumb a:hover{color:var(--gold-light);}
.breadcrumb span.sep{color:rgba(255,255,255,0.4);}
.breadcrumb span.current{color:var(--gold-light);font-weight:600;}

/* Service Hero */
.service-hero{
  position:relative;
  min-height:62vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:150px 0 90px;
  background-size:cover;
  background-position:center;
}
.service-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(10,30,23,0.88) 0%,rgba(10,30,23,0.8) 45%,rgba(10,30,23,0.95) 100%);
  z-index:0;
}
.service-hero-inner{position:relative;z-index:1;max-width:760px;}
.service-hero h1{
  color:#fff;
  font-size:clamp(32px,4.4vw,52px);
  margin-bottom:18px;
  letter-spacing:-0.01em;
}
.service-hero p.lead{
  color:rgba(255,255,255,0.85);
  font-size:18px;
  max-width:560px;
  margin-bottom:30px;
}
.service-hero .hero-actions{display:flex;gap:16px;flex-wrap:wrap;}

/* Featured image */
.featured-image-wrap{
  position:relative;
  margin-top:-64px;
  z-index:2;
  margin-bottom:0;
}
.featured-image-wrap .wrap{position:relative;}
.featured-image-frame{
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  border:6px solid var(--paper);
}
.featured-image-frame img{
  width:100%;
  height:clamp(260px,42vw,460px);
  object-fit:cover;
  display:block;
}

/* Description */
.service-description{background:var(--paper);padding-top:90px;}
.service-description .wrap{max-width:820px;}
.service-description p{
  color:var(--ink-soft);
  font-size:17px;
  line-height:1.85;
  margin-bottom:20px;
}

/* Features / Benefits */
.feat-ben{background:linear-gradient(180deg,var(--cream),#f2ece0);}
.feat-ben-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:44px;
}
.feat-ben-col h3{
  font-size:23px;
  margin-bottom:22px;
  display:flex;
  align-items:center;
  gap:12px;
}
.feat-ben-col h3 i{
  width:38px;height:38px;
  border-radius:10px;
  background:var(--forest);
  color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  font-size:15px;
  flex-shrink:0;
}
.feat-ben-list{list-style:none;display:flex;flex-direction:column;gap:14px;}
.feat-ben-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  background:var(--paper);
  padding:16px 18px;
  border-radius:12px;
  box-shadow:var(--shadow-sm);
  font-size:15px;
  color:var(--ink);
}
.feat-ben-list li i{color:var(--gold);margin-top:3px;flex-shrink:0;font-size:14px;}

@media(max-width:860px){.feat-ben-grid{grid-template-columns:1fr;gap:36px;}}

/* Why Choose */
.why-choose{background:var(--forest-deep);color:#fff;position:relative;overflow:hidden;}
.why-choose::before{
  content:"";
  position:absolute;
  bottom:-220px;left:-220px;
  width:500px;height:500px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(192,138,62,0.14),transparent 70%);
}
.why-choose .section-head{position:relative;z-index:1;}
.why-choose .section-head h2{color:#fff;}
.why-choose .section-head p{color:rgba(255,255,255,0.7);}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
  position:relative;
  z-index:1;
}
.why-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:28px 22px;
  text-align:left;
}
.why-card i{
  width:46px;height:46px;
  border-radius:12px;
  background:rgba(192,138,62,0.18);
  color:var(--gold-light);
  display:flex;align-items:center;justify-content:center;
  font-size:19px;
  margin-bottom:16px;
}
.why-card h4{color:#fff;font-size:16.5px;margin-bottom:8px;font-family:'Inter',sans-serif;font-weight:600;}
.why-card p{color:rgba(255,255,255,0.68);font-size:14px;}

@media(max-width:960px){.why-grid{grid-template-columns:1fr 1fr;}}
@media(max-width:560px){.why-grid{grid-template-columns:1fr;}}

/* Back to services */
.back-services-wrap{background:var(--cream);padding:60px 0;text-align:center;}
.back-services-wrap .btn{margin:0 auto;}

@media(max-width:640px){
  .service-hero{padding:130px 0 70px;}
  .featured-image-wrap{margin-top:-40px;}
}
