/* Base */
:root{
  --brand-green: #059669;
  --accent-green: #059669;
}
body{ font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* Navbar */
.nav-link{ color:#116466; }
.nav-link:hover{ color:#0b4749; }
.get-started{ background: linear-gradient(90deg,#30b070,#39d087); border:0; }

/* HERO with background + 50% white overlay */
.hero{
  position: relative;
  padding: clamp(60px, 9vw, 120px) 0 70px;
  min-height: 80vh;
  background: url("/front/images/background.png") center/cover no-repeat;
}
.hero::before{
  /* white layer above bg @ 50% opacity */
  content:"";
  position:absolute; inset:0;
  background: rgba(255,255,255,.1);
}
.hero .container{ position: relative; z-index: 1; }

.hero-title{
  letter-spacing: .5px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.accent{
  background: linear-gradient(90deg, #2bc0a4, #3ddc84);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subcopy{
  max-width: 780px;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.hero-cta{ background: #059669; border: 0; }

/* Feature cards (glass look) */
.feature-card.glass{
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 15px 35px rgba(0,0,0,.15);
  transition: transform .18s ease, box-shadow .25s ease;
  max-width: 300px;
  height: 200px;
}

.features-row{
  max-width: 1120px;  
}

.feature-card{
  max-width: 340px;  
  margin-inline: auto;  
}


.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(0,0,0,.22);
}
.feature-icon{
  width: 56px; height: 56px; object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.2));
}

/* Utilities */
.text-white-75{ color: rgba(255,255,255,.85) !important; }

@media (max-width: 991.98px){
  .feature-card{ margin-bottom: .25rem; }
}

/* ===== About Section ===== */
.about-section{ scroll-margin-top: 80px; } /* nice anchor offset under sticky nav */

.about-title{
  font-weight: 800;
  letter-spacing: .3px;
  color: #0f2230;            /* deep navy like your hero */
}
.accent-green{
  color: #059669;            /* same brand green */
}

.about-text{
  font-size: clamp(1.05rem, 1.2vw + .7rem, 1.25rem);
  line-height: 1.9;
  letter-spacing: .2px;
  color: #223447;
  text-align: justify;       /* look like the screenshot */
  text-justify: inter-word;
}


/* ===== Our Services ===== */
.services-section{
  background: #0f8f73;                 /* green like the screenshot */
}

.text-teal{ color:#0e8a6f; }            /* heading color inside cards */

.svc-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  transition: transform .16s ease, box-shadow .2s ease;
}
.svc-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0,0,0,.12);
}

.svc-icon{
  width:56px; height:56px; object-fit:contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.12));
}

.svc-text{
  color:#5c6b7a;
  font-size:.95rem;
  line-height:1.5;
}

/* spacing helpers for big screens */
@media (min-width: 992px){
  .services-section{ padding-top: 64px; padding-bottom: 72px; }
}




/* ===== Pricing ===== */
/* ===== Pricing ===== */
/* ===== Pricing (Full Updated) ===== */
.text-teal{ color:#118c6b; }                 /* brand green */

/* Section wrapper */
.pricing-section{
  background:#fff;
  position:relative;
  overflow:hidden;
}

/* (legacy – not used when .pricing-canvas is present) */
.pricing-bg{
  position:absolute; inset:0;
  background: url("/front/images/pb.png") center/contain no-repeat;
  opacity:.9; pointer-events:none;
}

/* 🎯 Background ONLY behind the 3 pricing cards */
.pricing-canvas{
  position: relative;
  padding: 28px 10px;
  background: url("/front/images/pb.png") center/1200px no-repeat; /* artwork size */
}
/* scale background bigger on wide screens */
@media (min-width: 1200px){
  .pricing-canvas{ background-size: 1500px auto; }
}
@media (min-width: 1400px){
  .pricing-canvas{ background-size: 1700px auto; }
}

/* Cards — unified size and equal height */
.price-card{
  max-width: 400px;                     /* same width for all three */
  margin-inline: auto;
  border-color:#118c6b33;               /* subtle green border */
  border-radius:16px;
  box-shadow:0 8px 26px rgba(0,0,0,.06);
  height: 100%;                         /* equal heights with .d-flex cols */
}
.price-card .card-body{
  padding:1.25rem;
  display:flex;                         /* pushes CTA to the bottom */
  flex-direction:column;
  height:100%;
}

.price-card .plan-spec{
  font-weight:700;
  color:#0f2230;
}

/* dotted price rows */
.price-list li{
  display:flex; justify-content:space-between;
  padding:.4rem 0;
  border-bottom:1px dashed rgba(0,0,0,.08);
}
.price-list li:last-child{ border-bottom:0; }

/* Featured middle card — SAME SIZE as others */
.price-card.featured{
  max-width: 400px;                     /* match PRO/STARTER */
  background:linear-gradient(160deg,#0ea577,#0a805e);
  color:#fff;
  border:0;
  padding:0;                            /* no outer frame gap */
  overflow:hidden;
}
.price-card.featured .card-body{
  background:rgba(255,255,255,.06);     /* soft inner glaze */
  border-radius:12px;
  padding:1.25rem;
  display:flex;
  flex-direction:column;
  height:100%;
}

/* Ribbon on featured card */
.ribbon{
  position:absolute; top:10px; right:-10px; z-index:2;
  transform:rotate(35deg);
}
.ribbon span{
  display:inline-block;
  background:#fff; color:#0a805e;
  font-weight:700; font-size:.75rem;
  padding:.25rem .6rem;
  border-radius:4px;
  box-shadow:0 4px 10px rgba(0,0,0,.15);
}

/* CTA buttons */
.btn-teal{
  background:#118c6b;
  color:#fff; border:0;
}
.btn-teal:hover{ background:#0f7459; color:#fff; }

/* Add-on services table */
.add-on-table{ border-color:#118c6b33; }
.add-on-table th, .add-on-table td{
  padding:.9rem 1rem; vertical-align:middle;
}
.add-on-table thead th{
  color:#0f2230; font-weight:700;
}
.add-on-table tbody th{
  background:#f5fbf9; color:#0f2230; white-space:nowrap;
}

/* Responsive niceties for bg on smaller screens */
@media (max-width: 991.98px){
  .pricing-canvas{ background-size: 1100px auto; }
}
/* Subtitle "Next" button style */
.btn-next-plan{
  background: #118c6b;
  color:#fff;
  border:0;
  box-shadow: 0 6px 14px rgba(17,140,107,.25);
}
.btn-next-plan:hover{ background:#0f7459; color:#fff; }

/* Slider layout */
.pricing-slider{ width: 100%; }
.pricing-slides{
  width: 100%;
  transition: transform .5s ease-in-out;
}
.pricing-slide{ width: 100%; }

/* Make the pricing-canvas a bit taller on desktop so the bg art breathes */
@media (min-width: 992px){
  .pricing-canvas{ padding-top: 32px; padding-bottom: 36px; }
}
/* Subtitle + arrow button */
.btn-next-plan{
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #118c6b;
  color: #fff;
  display: grid;
  place-items: center;
  line-height: 1;
  box-shadow: 0 6px 14px rgba(17,140,107,.25);
  cursor: pointer;
}
.btn-next-plan:hover{ background:#0f7459; }
.btn-next-plan .arrow{ font-size: 18px; font-weight: 800; transform: translateX(1px); }

/* Slider layout (robust) */
.pricing-slider{ overflow: hidden; width: 100%; }
.pricing-slides{
  display: flex;
  width: 100%;
  transition: transform .5s ease-in-out;
  will-change: transform;
}
.pricing-slide{ flex: 0 0 100%; max-width: 100%; }



/* ===== Gallery ===== */
.gallery-section .gallery-grid{ --gi-radius:16px; }

.gallery-item{
  position: relative;
  display:block;
  border-radius: var(--gi-radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .22s ease;
  background:#fff;
  /* keep consistent tiles even if images are different heights */
  aspect-ratio: 4 / 3;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform: scale(1.02);
  transition: transform .35s ease;
}

/* hover overlay */
.gi-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.0), rgba(0,0,0,.45));
  opacity: 0;
  transition: opacity .25s ease;
  display: grid; place-items: end center;
  padding-bottom: 14px;
}
.gi-zoom{
  width:40px; height:40px;
  border-radius: 999px;
  background: #fff;
  color: #0a7f64;
  display: grid; place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.gallery-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item:hover .gi-overlay{ opacity: 1; }





/* ===== Contact / Footer ===== */
.contact-section{
  position: relative;
  background: #0a8a6f;                            /* solid color base */
  overflow: hidden;
}

/* decorative PNG overlay */
.contact-section::before{
  content:"";
  position:absolute; inset:0;
  background: url("/front/images/footer.png") center/cover no-repeat;
  opacity: 1;                                     /* keep as-is; tweak if needed */
  pointer-events:none;
}

/* make content sit above the overlay */
.contact-section .container,
.contact-bottom{
  position: relative;
  z-index: 1;
}

.contact-section h2{
  letter-spacing: .5px;
}

.contact-section p{
  line-height: 1.7;
}

/* tiny brand accent in bottom line */
.brand-accent{ color:#ff4d4d; }

/* optional edge highlight like screenshot */
.contact-bottom{
  border-top: 2px solid rgba(255,255,255,.15);
}

/* nicer anchor offset if you link to #contact */
#contact{ scroll-margin-top: 80px; }


/* ===== Chatbot (Floating Widget) ===== */
.chatbot-launcher{
  position: fixed; right: 20px; bottom: 20px; z-index: 1100;
  width: 52px; height: 52px; border-radius: 999px; border: 0;
  background: linear-gradient(135deg, #0ea577, #0a805e);
  color: #fff; box-shadow: 0 16px 30px rgba(10,128,94,.35);
  display: grid; place-items: center; cursor: pointer;
}
.chatbot-launcher:hover{ filter: brightness(1.05); }

.chatbot-panel{
  position: fixed; right: 20px; bottom: 84px; z-index: 1100;
  width: min(360px, 94vw); max-height: 70vh;
  background:#fff; border:1px solid rgba(0,0,0,.08);
  border-radius: 16px; box-shadow: 0 22px 50px rgba(0,0,0,.18);
  display: grid; grid-template-rows: auto 1fr auto; overflow: hidden;
}
.cb-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 12px; border-bottom:1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg,#f7fffc,#eefaf6);
}
.cb-title{ font-weight:700; color:#0f2230; line-height:1.1; }
.cb-title small{ font-weight:500; font-size:.72rem; }
.cb-dot{
  display:inline-block; width:8px; height:8px; border-radius:999px;
  background:#1bd58e; margin-right:6px; box-shadow:0 0 0 4px rgba(27,213,142,.15);
}
.cb-x{
  width:32px; height:32px; border-radius:8px; border:0; background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.08); cursor:pointer; font-size:18px;
}
.cb-x:hover{ background:#f3f7f6; }

.cb-msgs{
  padding: 12px; overflow:auto; background: #f7fbfa;
}
.cb-row{ display:flex; gap:8px; margin-bottom:10px; }
.cb-row.user{ justify-content:flex-end; }
.cb-bubble{
  max-width: 80%;
  padding:10px 12px; border-radius:14px; line-height:1.45; font-size:.95rem;
  box-shadow:0 2px 10px rgba(0,0,0,.06);
}
.cb-row.user .cb-bubble{
  background: #118c6b; color:#fff; border-bottom-right-radius:6px;
}
.cb-row.bot .cb-bubble{
  background:#fff; color:#0f2230; border-bottom-left-radius:6px; border:1px solid rgba(0,0,0,.06);
}
.cb-time{ display:block; font-size:.72rem; opacity:.6; margin-top:4px; }

.cb-input-wrap{
  display:flex; gap:8px; padding:10px; border-top:1px solid rgba(0,0,0,.06);
  background:#fff;
}
.cb-input{
  flex:1; border-radius:12px; padding:.7rem .85rem;
  border:1.5px solid rgba(0,0,0,.12);
}
.cb-input:focus{ outline:none; border-color:#6a8bff; box-shadow:0 0 0 .2rem rgba(106,139,255,.12); }
.cb-send{
  border:0; border-radius:12px; padding:.7rem 1rem; font-weight:700; cursor:pointer;
  background:#118c6b; color:#fff; box-shadow: 0 10px 18px rgba(17,140,107,.25);
}
.cb-send:hover{ background:#0f7459; }

/* Typing dots */
.cb-typing{ display:inline-flex; gap:4px; align-items:center; }
.cb-typing span{
  width:6px; height:6px; border-radius:999px; background:#a7b0ba; display:inline-block;
  animation: cbBlink 1s infinite;
}
.cb-typing span:nth-child(2){ animation-delay:.15s; }
.cb-typing span:nth-child(3){ animation-delay:.3s; }
@keyframes cbBlink{ 0%,80%,100%{opacity:.3} 40%{opacity:1} }

/* Mobile safe area */
@media (max-width: 420px){
  .chatbot-panel{ right: 12px; width: calc(100vw - 24px); }
  .chatbot-launcher{ right: 12px; bottom: 12px; }
}
