u:root{
  /* Lighter dark theme (clean + readable) */
  --bg:#0f172a;
  --bg2:#111c33;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);

  --accent:#7aa7ff;
  --accent2:#6ee7b7;

  --radius:18px;
  --shadow: 0 14px 40px rgba(0,0,0,.28);
  --pad: 18px;

  --max: 1080px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(122,167,255,.20), transparent 60%),
              radial-gradient(900px 500px at 90% 0%, rgba(110,231,183,.16), transparent 55%),
              linear-gradient(180deg, var(--bg), #0b1224);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
}

.btn{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.btn:hover{ background: rgba(255,255,255,.09); }
.btn.primary{
  border-color: rgba(110,231,183,.28);
  background: linear-gradient(180deg, rgba(110,231,183,.22), rgba(110,231,183,.10));
}
.btn.ghost{
  background: transparent;
}

.muted{ color: var(--muted); }

.header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10,16,32,.62);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand{ display:flex; align-items:center; gap: 10px; }
.brand__logo{ width: 36px; height: 36px; border-radius: 10px; }
.brand__name{ font-weight: 900; letter-spacing:.2px; }
.brand__tag{ font-size: .9rem; color: var(--muted); }

.nav{ display:flex; gap: 14px; }
.nav a{ color: var(--muted); font-weight: 700; }
.nav a:hover{ color: var(--text); }

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

.lang{
  display:flex;
  border:1px solid var(--line);
  border-radius: 14px;
  overflow:hidden;
}
.lang__btn{
  border:0;
  background: transparent;
  color: var(--muted);
  padding: 8px 10px;
  cursor:pointer;
  font-weight: 800;
}
.lang__btn.is-active{
  background: rgba(122,167,255,.16);
  color: var(--text);
}

.hero{ padding: 26px 0 10px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}
.pill{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-weight: 800;
  font-size: .92rem;
}
.hero h1{
  margin: 10px 0 10px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
}
.hero__cta{ display:flex; gap:10px; margin-top: 12px; flex-wrap:wrap; }

.hero__checks{
  margin-top: 12px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.check{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 750;
  color: var(--muted);
}

.hero__card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow);
}
.hero__card h3{ margin:0 0 8px; }
.kv{ display:flex; gap:10px; margin: 6px 0; }
.k{ width: 70px; color: var(--muted); font-weight: 800; }

.hero__values{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.value{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 12px;
}
.value__t{ font-weight: 900; }
.value__d{ color: var(--muted); margin-top: 4px; }

.section{ padding: 28px 0; }
.section--alt{ background: rgba(255,255,255,.03); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06); }
.section__head{ margin-bottom: 14px; }
.section__head h2{ margin:0; }
.section__head p{ margin: 6px 0 0; color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border:1px solid var(--line);
  background: var(--card);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.card--featured{
  border-color: rgba(122,167,255,.30);
  background: linear-gradient(180deg, rgba(122,167,255,.12), rgba(255,255,255,.06));
}
.card__img{
  width:100%;
  height: 170px;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
}
.card__body{ padding: 12px 12px 14px; }
.card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
}
.card__top h3{ margin:0; font-size: 1.06rem; }
.priceTag{
  border:1px solid rgba(110,231,183,.25);
  background: rgba(110,231,183,.12);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}
.card__text{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 650;
}
.card__micro{
  margin: 10px 0 0;
  color: rgba(255,255,255,.70);
  font-weight: 800;
  font-size: .92rem;
}
.card__link{
  display:inline-flex;
  margin-top: 10px;
  font-weight: 900;
  color: rgba(122,167,255,.95);
}

.noteRow{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  align-items:center;
  flex-wrap:wrap;
}

.about{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  align-items:start;
}
.about__img{
  border-radius: var(--radius);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.about__note{
  margin-top: 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 900;
  color: var(--muted);
  display:inline-flex;
}
.about__stats{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.stat{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 10px 12px;
  min-width: 150px;
}
.stat__n{ font-weight: 950; }
.stat__t{ color: var(--muted); margin-top: 2px; display:block; font-weight: 750; }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery__item img{
  border-radius: var(--radius);
  border:1px solid var(--line);
  height: 170px;
  width:100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.galleryNote{
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.contact{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
}
.contact__box{
  margin-top: 10px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.contact__btns{ display:flex; gap:10px; margin-top: 10px; flex-wrap:wrap; }

.form{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.label{ display:block; margin-bottom: 10px; }
.label span{ display:block; margin-bottom: 6px; color: var(--muted); font-weight: 900; }
.input{
  width:100%;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
.input:focus{
  border-color: rgba(122,167,255,.40);
  box-shadow: 0 0 0 4px rgba(122,167,255,.10);
}
.formNote{ margin: 10px 0 0; color: var(--muted); font-weight: 650; }

/* Modal */
.modal{ position:fixed; inset:0; display:none; z-index:200; }
.modal.is-open{ display:block; }
.modal__overlay{ position:absolute; inset:0; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); }
.modal__card{
  position: relative;
  width: min(760px, calc(100% - 2*var(--pad)));
  margin: 10vh auto 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(17,26,51,.92);
  box-shadow: var(--shadow);
}
.modal__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 16px; border-bottom: 1px solid var(--line);
}
.modal__close{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}
.modal__body{ padding: 14px 16px 16px; }
.modal__list{ margin: 10px 0 12px; padding-left: 18px; color: var(--muted); }
.modal__muted{ color: var(--muted); margin: 0 0 12px; font-weight: 650; }

.footer{
  padding: 18px 0;
  border-top:1px solid rgba(255,255,255,.08);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 10px;
}
.footer__links{ display:flex; gap: 12px; }
.footer__links a{ color: var(--muted); font-weight: 800; }
.footer__links a:hover{ color: var(--text); }

/* Responsive */
@media (max-width: 920px){
  .hero__inner{ grid-template-columns: 1fr; }
  .hero__values{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ display:none; }
}
/* ===== FINAL POLISH THEME (paste at end of styles.css) ===== */

:root{
  --bg: #f6f8fa;
  --bg-alt:#eef3f6;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --border: rgba(15,23,42,.10);
  --shadow: 0 10px 25px rgba(2, 6, 23, .08);
  --accent:#2fa7a0;     /* teal */
  --accent2:#1f7f78;
}

body{
  background: var(--bg);
  color: var(--text);
}

/* Sections */
.section{ background: var(--bg); }
.section--alt{ background: var(--bg-alt); }

/* Header */
.header, .nav{
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

/* Cards (services/pricing/contact boxes) */
.card, .pricing-card, .panel, .contactBox, .heroCard, .about__note{
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  color: var(--text);
}

.card__body p,
.card__body li,
.section__head p{
  color: var(--muted);
}

/* Service card layout: equal height + CTA at bottom */
.card{
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 18px;
}

.card__img{
  width:100%;
  height: 180px;
  object-fit: cover;
  display:block;
}

.card__body{
  padding: 14px 14px 16px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.card__body h3{
  margin:0;
  font-size: 18px;
}

.card__body .bullets{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.card__cta{
  margin-top: auto; /* pushes CTA to bottom */
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

/* Price pill */
.price-pill{
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(47,167,160,.12);
  color: var(--accent2);
  border: 1px solid rgba(47,167,160,.25);
  white-space: nowrap;
}

/* Buttons */
.btn{
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 700;
  border: 1px solid var(--border);
}

.btn.primary{
  background: var(--accent);
  border-color: rgba(47,167,160,.35);
  color: #fff;
}
.btn.primary:hover{ background: var(--accent2); }

.btn.ghost{
  background: transparent;
  color: var(--accent2);
  border: 1px solid rgba(47,167,160,.35);
}
.btn.ghost:hover{
  background: rgba(47,167,160,.10);
}

/* Contact layout fix */
.contact{
  gap: 18px;
}
.contact .panel{
  padding: 16px;
  border-radius: 18px;
}
form .field input, form .field textarea, form select{
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
  color: var(--text);
}

/* Make grids nicer */
.grid3{
  gap: 16px;
}
@media (max-width: 900px){
  .card__img{ height: 160px; }
}
@media (max-width: 520px){
  .card__img{ height: 150px; }
}
.site-footer {
  margin-top: 60px;
  padding: 40px 20px;
  background: #f7f9fb;
  border-top: 1px solid #e6eaf0;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.95;
}

.footer-text {
  font-size: 14px;
  color: #555;
}
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;
  text-decoration: none;
}

.wa-float:hover {
  background: #1ebe5d;
}

.wa-icon {
  font-size: 20px;
}
.wa-text {
  font-size: 15px;
  white-space: nowrap;
}
.wa-text{
  color:#fff;
  font-size:15px;
  white-space:nowrap;
  line-height:1;
}

.wa-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background: rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}
.card{
  border-radius:16px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}


/* HERO DESIGN IMPROVEMENT */

.hero{
  padding:70px 20px 50px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
}

.hero h1{
  font-size:42px;
  line-height:1.1;
  margin-bottom:16px;
  color:#0f172a;
  max-width:900px;
}

.hero p{
  font-size:17px;
  color:#5b6470;
  max-width:720px;
  margin-bottom:22px;
}

.heroCtas{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.hero .btn{
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;u
}
.val{
  background:#ffffff;
  border-radius:16px;
  padding:18px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  transition:all .25s ease;
}

.val:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.val h4{
  font-size:16px;
  margin-bottom:6px;
}

.val p{
  font-size:14px;
  color:#6b7280;
}
.val{
background:#ffffff;
border-radius:18px;
padding:22px;
box-shadow:0 12px 28px rgba(0,0,0,0.08);
transition:all .25s ease;
}

.val:hover{
transform:translateY(-6px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
}
.vals{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-top:20px;
}

.val{
background:#ffffff;
padding:22px;
border-radius:14px;
border:1px solid #e6e6e6;
box-shadow:0 6px 20px rgba(0,0,0,0.05);
transition:all .3s ease;
}

.val:hover{
transform:translateY(-6px);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
  }
.val{
background:#ffffff;
padding:22px;
border-radius:16px;
border:1px solid #e6edf2;
box-shadow:0 8px 22px rgba(0,0,0,0.05);
transition:all .25s ease;
}

.val:hover{
transform:translateY(-5px);
box-shadow:0 14px 30px rgba(0,0,0,0.08);
  }
.val{
  background:#ffffff;
  padding:22px;
  border-radius:16px;
  border:1px solid #e6edf2;
  box-shadow:0 8px 22px rgba(0,0,0,0.05);
  transition:all .25s ease;
}

.val:hover{
  transform:translateY(-5px);
  box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

.val h4{
  margin:0 0 10px;
  font-size:16px;
  font-weight:700;
  color:#0f172a;
}

.val p{
  margin:0;
  font-size:15px;
  line-height:1.6;
  color:#475569;
}
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  background:#25D366;
  color:#fff;
  padding:14px 18px;
  border-radius:999px;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  z-index:99999;
  font-weight:700;
}

.wa-float:hover{
  background:#1ebe5d;
  transform:translateY(-2px);
}

.wa-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.wa-text{
  font-size:14px;
  white-space:nowrap;
}
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.container,
.section,
.contactGrid,
.cards {
  max-width: 100%;
  }
/* Fix mobile slight zoom / horizontal overflow */
html, body {
  width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

.container {
  width: min(1100px, calc(100% - 24px));
  margin: 0 auto;
}

@media (max-width: 900px) {
  .heroGrid,
  .contactGrid,
  .vals,
  .grid3,
  .galleryGrid {
    grid-template-columns: 1fr !important;
  }

  .hero h1 {
    font-size: 32px !important;
    line-height: 1.15;
  }

  .heroCard,
  .card,
  .val,
  .contactBox {
    min-width: 0;
    width: 100%;
  }

  .btn,
  .heroCtas {
    max-width: 100%;
    flex-wrap: wrap;
  }
  }
/* ===== Fix modal + pricing button + image layout ===== */

.pricing-hint{
  margin-top:24px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.pricing-hint .btn{
  flex:0 0 auto;
}

.pricing-hint span{
  flex:1 1 260px;
  color:var(--muted);
  font-weight:600;
}

.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:9999;
}

.modal.is-open{
  display:block;
}

.modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(15,23,42,.55);
  backdrop-filter:blur(4px);
}

.modal-card{
  position:relative;
  z-index:2;
  width:min(720px, calc(100% - 24px));
  max-height:85vh;
  margin:5vh auto 0;
  background:#fff;
  border-radius:22px;
  box-shadow:0 24px 60px rgba(15,23,42,.28);
  overflow:auto;
}

.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 18px;
  border-bottom:1px solid var(--line);
  background:#fff;
  position:sticky;
  top:0;
  z-index:3;
}

.modal-head h3{
  margin:0;
  font-size:18px;
}

.modal-close{
  width:40px;
  height:40px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  font-size:22px;
}

.modal-body{
  padding:18px;
  background:#fff;
}

.modal-body p{
  color:var(--muted);
  font-weight:600;
  margin:0 0 12px;
}

.modal-body ul{
  margin:12px 0 0;
  padding-left:20px;
  color:var(--muted);
  font-weight:600;
}

.modal-actions{
  padding:18px;
  border-top:1px solid var(--line);
  background:#fff;
}

.gallery-grid img,
.service-img,
.hero-media img,
.about-media img{
  display:block;
}

.footer-logo{
  width:120px;
  margin:0 auto 12px;
  display:block;
  object-fit:contain;
  }
