/* assets/css/styles.css */

/* Root variables */
:root{
  --primary: #0a7a5a;
  --accent: #146c54;
  --muted: #f1f5f4;
  --glass: rgba(255,255,255,0.06);
  --content-max: 1140px;
  --header-h: 88px;
  --ltol-green: #056a4d;
  --ltol-dark: #083d33;
}

/* NAV */
.navbar {
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.35));
  box-shadow: 0 6px 18px rgba(10,20,30,0.06);
}
.navbar-brand img{ height:42px; }

/* HERO */
.hero {
  position:relative;
  overflow:hidden;
  padding:80px 0 80px 0;
  background: linear-gradient(135deg, rgba(10,122,90,0.09), rgba(10,122,90,0.02));
  min-height: 72vh;
  display:flex;
  align-items:center;
}
.hero::before{
  content:"";
  position:absolute;
  right:-10%;
  top:-10%;
  width:60vmax;height:60vmax;
  background: radial-gradient(circle at 30% 30%, rgba(10,122,90,0.14), rgba(20,120,80,0.06) 30%, transparent 70%);
  filter: blur(50px);
  transform: rotate(25deg);
  animation: floaty 12s ease-in-out infinite;
  pointer-events:none;
}
@keyframes floaty{
  0%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-20px) rotate(6deg); }
  100%{ transform: translateY(0) rotate(0deg); }
}
.hero-left { z-index:2; }
.eyebrow { color:var(--accent); font-weight:600; letter-spacing:0.6px; }
.display-title { font-weight:800; line-height:1.05; letter-spacing:-0.4px; }
.typed { color:var(--primary); }

/* Small floats */
.float-shape{ position:absolute; width:18px;height:18px;border-radius:6px;background:rgba(10,122,90,0.95); box-shadow:0 6px 18px rgba(10,122,90,0.12); opacity:0.9; animation:bob 6s infinite ease-in-out; }
.s1{left:6%; top:18%; animation-delay:0s;}
.s2{left:22%; top:70%; width:14px;height:14px;background:rgba(20,120,80,0.85); animation-delay:1.5s;}
.s3{right:18%; top:46%; animation-delay:0.9s;}
.s4{right:6%; top:22%; width:22px;height:22px;border-radius:50%; animation-delay:2s;}
@keyframes bob{ 0%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} 100%{ transform: translateY(0);} }

/* CTA styles */
.btn-cta {
  background: linear-gradient(90deg,var(--primary), var(--accent));
  border: none;
  padding:12px 20px;
  font-weight:700;
  border-radius:10px;
  box-shadow: 0 8px 30px rgba(10,122,90,0.14);
  color: #fff;
}
.btn-ghost { border-radius:10px; padding:10px 18px; }

/* ABOUT */
.about-full {
  background: linear-gradient(180deg, rgba(10,122,90,0.03), #ffffff 40%);
  padding: 2.2rem 0;
  box-sizing: border-box;
}
.about-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
  min-height: calc(56vh);
}
.about-left, .about-right {
  display:flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.about-left .about-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(8,40,34,0.07);
  width:100%;
  height:100%;
  display:block;
}
.about-left .about-image img { width:100%; height:100%; object-fit:cover; display:block; }
.about-right h2 {
  margin:0;
  font-size: clamp(24px, 3.8vw, 34px);
  line-height: 1.05;
  color: #053b33;
  font-weight:800;
}
.about-right p {
  margin:0;
  color: #586d66;
  font-size: 16px;
  line-height: 1.75;
  max-width: 48rem;
}
.about-right .bullets { margin-top: .6rem; }
.about-right .bullets li { margin-bottom:.35rem; color: #495e56; font-size: 15px; }

/* Counters row */
.about-counters {
  display:flex;
  gap:1rem;
  margin-top:1rem;
  flex-wrap:wrap;
  align-items:center;
}
.about-counters .card {
  background:#fff;
  border-radius:12px;
  padding:12px 16px;
  box-shadow: 0 14px 40px rgba(8,40,34,0.06);
  min-width: 120px;
  text-align:center;
  flex: 1 1 120px;
}
.about-counters .num { font-weight:900; color:var(--primary); font-size:1.25rem; }
.about-counters .label { font-size:13px; color:#596d66; margin-top:6px; }

/* bottom meta row */
.about-meta {
  display:flex;
  align-items:center;
  gap:1rem;
  margin-top:1rem;
}
.about-meta .avatars { display:flex; align-items:center; margin-left:0; }
.about-meta .avatars img { width:44px; height:44px; border-radius:50%; object-fit:cover; border:3px solid #fff; margin-left:-12px; box-shadow:0 6px 18px rgba(8,40,34,0.08); }
.about-meta .rating { display:flex; align-items:center; gap:.4rem; color:#556865; font-weight:700; margin-left: .6rem; }

/* responsive */
@media (max-width: 992px){
  .about-row { grid-template-columns: 1fr; min-height: auto; }
  .about-left .about-image { height: 36vh; }
  .about-right h2 { font-size: 22px; }
  .about-counters { justify-content: space-between; }
}
@media (max-width: 576px){
  .about-right p { font-size:15px; }
  .about-counters .card { padding:10px; min-width: 100px; }
  .about-meta .avatars img { width:36px; height:36px; margin-left:-10px;}
}

/* service styles */
.ltol-services {
  background: linear-gradient(180deg, rgba(237,249,246,0.9) 0%, rgba(255,255,255,1) 100%);
  padding: 70px 0;
}
.ltol-services .section-title {
  color: #056a4d;
  font-weight: 700;
  letter-spacing: .2px;
}
.ltol-services .section-sub {
  color: #6b8b82;
  margin-bottom: 32px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(10,30,20,0.06);
  transition: transform .28s cubic-bezier(.2,.9,.3,1), box-shadow .28s;
  border: 1px solid rgba(5,106,77,0.04);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 40px rgba(5,106,77,0.08);
}
.service-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(5,106,77,0.12), rgba(6,106,77,0.06));
  color: #056a4d;
  font-size: 1.5rem;
}
.service-card h5 {
  margin: 8px 0;
  font-weight: 700;
  color: #083d33;
  font-size: 1rem;
}
.service-card p {
  margin: 0;
  margin-top: 6px;
  color: #6b7774;
  font-size: 0.92rem;
  line-height: 1.3;
}
.ltol-explore { margin-top: 28px; display: inline-block; }
.btn-green {
  background: #0a7a5a;
  border-color: #0a7a5a;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
}
.btn-green:hover { opacity: .95; }

@keyframes svc-highlight {
  0%   { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(10,30,20,0.06); border-color: rgba(5,106,77,0.04); }
  50%  { transform: translateY(-14px) scale(1.03); box-shadow: 0 22px 50px rgba(5,106,77,0.09); border-color: rgba(5,106,77,0.16); }
  100% { transform: translateY(0) scale(1); box-shadow: 0 6px 18px rgba(10,30,20,0.06); border-color: rgba(5,106,77,0.04); }
}
.service-grid .service-card {
  animation: svc-highlight 9s ease-in-out infinite;
}
.service-grid .service-card:nth-child(1){ animation-delay: 0s;   }
.service-grid .service-card:nth-child(2){ animation-delay: 1.2s; }
.service-grid .service-card:nth-child(3){ animation-delay: 2.4s; }
.service-grid .service-card:nth-child(4){ animation-delay: 3.6s; }
.service-grid .service-card:nth-child(5){ animation-delay: 4.8s; }
.service-grid .service-card:nth-child(6){ animation-delay: 6.0s; }
.ltol-services:hover .service-grid .service-card { animation-play-state: paused; }
.service-card:hover { animation-play-state: paused; }

.swiper { padding: 15px 0 30px; }
.swiper-slide { display: flex; justify-content: center; }

@media (max-width: 991px){
  .ltol-services { padding: 50px 0; }
}
@media (max-width: 767px){
  .service-card { min-height: 140px; padding: 18px; }
  .service-card h5 { font-size: .98rem; }
  .service-grid .service-card { animation: none; }
}

/* choose us */
.ltol-chooseus {
  background: linear-gradient(180deg, rgba(241,253,249,0.95) 0%, rgba(255,255,255,1) 100%);
}
.choose-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  text-align: left;
  box-shadow: 0 6px 16px rgba(10,30,20,0.05);
  border: 1px solid rgba(5,106,77,0.05);
  transition: all 0.3s ease;
  height: 100%;
}
.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(5,106,77,0.09);
}
.choose-card .icon {
  background: linear-gradient(135deg, rgba(5,106,77,0.12), rgba(6,106,77,0.06));
  color: #056a4d;
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
}
.choose-card h5 {
  font-size: 1.05rem;
  color: #083d33;
  font-weight: 700;
  margin-bottom: 6px;
}
choose-card p {
  font-size: 0.92rem;
  color: #6b7774;
  margin: 0;
}
.choose-img {
  max-width: 80%;
  transition: transform 1s ease-in-out;
}
@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
choose-img { animation: floaty 4s ease-in-out infinite; }
@media (max-width: 767px){
  .choose-card { text-align: center; }
  .choose-card .icon { margin: 0 auto 10px; }
  .choose-img { max-width: 65%; margin-top: 30px; }
}

/* sections, portfolio, pricing, testimonials, faq */
.ltol-section { padding: 70px 0; background: linear-gradient(180deg, rgba(241,253,249,0.95), #fff); }
.portfolio-title { color: var(--ltol-green); font-weight:700; margin-bottom:8px; }
.portfolio-sub { color: var(--muted); margin-bottom:22px; }
.proj-card {
  border-radius: 12px; overflow: hidden;
  background: #fff; box-shadow: 0 8px 24px rgba(10,30,20,0.06);
  transition: transform .28s, box-shadow .28s;
}
.proj-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(5,106,77,0.08); }
.proj-img { width:100%; height:220px; object-fit:cover; display:block; }
.swiper-portfolio .swiper-slide { display:flex; justify-content:center; }

.pricing-card {
  border-radius: 14px; padding: 22px; background: #fff;
  box-shadow: 0 8px 24px rgba(10,30,20,0.05);
  border: 1px solid rgba(5,106,77,0.04);
  transition: transform .3s;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(5,106,77,0.08); }
.price-tag { font-size: 2rem; color: var(--ltol-green); font-weight:800; }
.price-period { color:var(--muted); font-weight:600; font-size:.95rem; }
.badge-top { position: absolute; right: 14px; top: 14px; background: linear-gradient(90deg,#0a7a5a,#0d9b6f); color:#fff; padding:6px 10px; border-radius:10px; font-weight:700; font-size:.82rem; }

review-card {
  background: #fff; border-radius:12px; padding:18px; box-shadow: 0 10px 30px rgba(10,30,20,0.05);
  text-align:left;
}
.review-meta { display:flex; gap:12px; align-items:center; margin-bottom:8px; }
.avatar { width:56px; height:56px; border-radius:12px; object-fit:cover; }

.faq .accordion-button { color: var(--ltol-dark); }
.faq .accordion-button::after { filter: invert(25%); }

@media (max-width: 767px){
  .proj-img { height:180px; }
  .price-tag { font-size:1.6rem; }
}

/* footer */
.ltol-green-footer {
  background: linear-gradient(180deg, #056a4d 0%, #044634 100%);
  color: #e6fff4;
  padding: 60px 0 0;
  font-family: 'Poppins', sans-serif;
}
.ltol-green-footer h5 { color: #ffffff; font-weight: 700; margin-bottom: 16px; font-size: 1.1rem; }
.ltol-green-footer p, .ltol-green-footer li, .ltol-green-footer a, .ltol-green-footer small { color: #c8f2df; opacity: 0.95; font-size: 0.95rem; }
.ltol-green-footer a { text-decoration: none; transition: color 0.2s ease; }
.ltol-green-footer a:hover { color: #7fffd4; text-decoration: underline; }
.ltol-green-footer .about-text { line-height: 1.6; }
.ltol-green-footer .quick-links li { margin: 10px 0; display: flex; align-items: center; gap: 8px; }
.ltol-green-footer .quick-links i { color: #94f5d3; font-size: 1rem; }
.ltol-green-footer .contact-list li { margin: 10px 0; display: flex; align-items: center; gap: 10px; }
.ltol-green-footer .contact-list i { color: #8ff0cd; font-size: 1.1rem; }
.ltol-green-footer .social-round a { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #ffffff; margin-right: 10px; transition: all 0.3s ease; font-size: 1.1rem; }
.ltol-green-footer .social-round a:hover { transform: translateY(-4px); background: #0d946b; color: #fff; }
.ltol-green-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); margin-top: 40px; padding: 14px 0; text-align: center; font-size: 0.9rem; color: #b9ecd9; }
.ltol-green-footer .footer-bottom a { color: #a8ffe0; font-weight: 600; text-decoration: none; }
.ltol-green-footer .footer-bottom a:hover { text-decoration: underline; }
@media (max-width: 767px) {
  .ltol-green-footer { text-align: center; }
  .ltol-green-footer .social-round a { margin: 6px; }
}

/* small helpers */
.feature-list li { opacity: 0; transform: translateY(6px); transition: all .36s ease; }
.feature-list li.show { opacity: 1; transform: translateY(0); }


/* chatbot widget simple CSS */
#ltol-chat {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 340px;
  max-width: calc(100% - 36px);
  z-index: 1200;
  font-family: Inter, system-ui, Arial;
  box-shadow: 0 18px 50px rgba(8,40,34,0.15);
  border-radius: 12px;
  overflow: hidden;
  display: none; /* initially hidden */
}
#ltol-chat.open { display: block; }
#ltol-chat .chat-header {
  background: linear-gradient(90deg, #0a7a5a, #146c54);
  color: #fff;
  padding: 12px 14px;
  display:flex;
  gap:10px;
  align-items:center;
}
#ltol-chat .chat-body {
  background: #fff;
  height: 360px;
  overflow-y: auto;
  padding: 12px;
}
#ltol-chat .chat-input {
  padding: 10px;
  border-top: 1px solid #eee;
  background: #fafafa;
  display:flex;
  gap:8px;
}
#ltol-chat .chat-input input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
}
#ltol-chat .chat-input button {
  background:#0a7a5a;
  color:#fff;
  border:none;
  padding:10px 12px;
  border-radius:8px;
}
.lt-msg { margin:8px 0; display:flex; gap:8px; align-items:flex-start; }
.lt-msg .bubble { padding:10px 12px; border-radius:10px; max-width:78%; line-height:1.3; }
.lt-msg.user { justify-content:flex-end; }
.lt-msg.user .bubble { background:#0a7a5a; color:#fff; border-bottom-right-radius:4px; }
.lt-msg.bot .bubble { background:#f1f5f4; color:#053b33; border-bottom-left-radius:4px; }
.lt-chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1250;
  background: linear-gradient(90deg,#0a7a5a,#146c54);
  color:#fff;
  width:56px;height:56px;border-radius:50%;
  display:grid;place-items:center;font-weight:700;box-shadow:0 10px 30px rgba(10,30,20,0.12);
  cursor:pointer;
}


