:root {
  --bg0: #07121f;
  --bg1: #0b1b2d;
  --bg2: #050b13;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.68);
  --brand: #4dd2ff;
  --brand2: #47a3ff;
  --brand-dark: #061223;
  --success: #25d366;
  --warning: #ffb347;
  --danger: #ff6b6b;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.22);
  --radius: 22px;
  --radius-sm: 16px;
  --container-max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(77, 210, 255, 0.14), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(71, 163, 255, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg2) 70%);
  min-height: 100vh;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.container {
  max-width: var(--container-max);
}

::selection {
  background: rgba(77, 210, 255, 0.25);
  color: #fff;
}

/* loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(77, 210, 255, 0.18), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(71, 163, 255, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg2) 70%);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: rgba(77, 210, 255, 0.95);
  box-shadow: var(--shadow-soft);
  animation: spin 1.1s linear infinite;
}

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

/* topbar */
.topbar {
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1031;
}

.toplink {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
}

.toplink:hover {
  color: #fff;
}

/* nav */
.navglass {
  background: rgba(7, 18, 31, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.navbar-brand {
  color: #fff !important;
}

.site-logo {
  height: 56px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.footer-logo {
  height: 60px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.74) !important;
  border-radius: 14px;
  padding: 0.58rem 0.9rem;
  font-weight: 500;
}

.navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(77, 210, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(77, 210, 255, 0.14);
}

.navbar .nav-link.active {
  color: var(--brand-dark) !important;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow-soft);
}

.navbar-toggler {
  padding: 0.45rem 0.7rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-menu {
  border-radius: 18px;
  overflow: hidden;
  min-width: 240px;
  padding: 0.7rem;
  background: rgba(7, 18, 31, 0.96);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.dropdown-item {
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.75rem 0.9rem;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.dropdown-divider {
  border-color: var(--border);
}

/* buttons */
.btn {
  border-radius: 16px;
  font-weight: 600;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ac {
  border: 0;
  color: var(--brand-dark) !important;
  background: linear-gradient(135deg, rgba(77, 210, 255, 0.98), rgba(71, 163, 255, 0.98));
  box-shadow: var(--shadow-soft);
}

.btn-ac:hover {
  filter: brightness(1.03);
  color: var(--brand-dark) !important;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-outline-light:hover {
  background: rgba(77, 210, 255, 0.1);
  border-color: rgba(77, 210, 255, 0.28);
  color: #fff;
}

/* generic sections */
.section {
  padding: 78px 0;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-sub {
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.7;
}

.pagehead {
  padding: 44px 0 10px;
}

.breadcrumbx {
  color: var(--muted);
  font-size: 14px;
}

/* pill */
.pill,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
}

.chip {
  font-size: 13px;
  padding: 0.38rem 0.68rem;
}

/* hero */
.hero {
  padding: 22px 0 42px;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-slide {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: clamp(26px, 4vw, 60px);
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-slide::before,
.hero-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(5, 11, 19, 0.9) 18%, rgba(5, 11, 19, 0.52) 56%, rgba(5, 11, 19, 0.3) 100%),
    radial-gradient(900px 600px at 10% 10%, rgba(77, 210, 255, 0.2), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(71, 163, 255, 0.14), transparent 55%);
}

.hero-inner {
  position: relative;
  max-width: 760px;
  z-index: 2;
}

.hero h1,
.hero h2 {
  font-weight: 900;
  line-height: 1.02;
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.6vw, 64px);
  letter-spacing: -0.04em;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.78;
  margin: 0 0 20px;
  max-width: 62ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.badgeglass {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  display: flex;
  gap: 10px;
  align-items: center;
  backdrop-filter: blur(10px);
}

/* swiper */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
}

/* cards */
.cardx {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  backdrop-filter: blur(8px);
}

.cardx:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(77, 210, 255, 0.22);
}

.iconbubble,
.why-icon,
.step-number,
.iconpill,
.brandmark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iconbubble {
  background: rgba(77, 210, 255, 0.14);
  border: 1px solid rgba(77, 210, 255, 0.24);
  color: var(--brand);
}

.brandmark {
  background: linear-gradient(135deg, rgba(77, 210, 255, 0.95), rgba(71, 163, 255, 0.95));
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
}

/* cta */
.cta {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(800px 500px at 10% 10%, rgba(77, 210, 255, 0.18), transparent 60%),
    radial-gradient(800px 500px at 90% 20%, rgba(71, 163, 255, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 34px);
  backdrop-filter: blur(8px);
}

.quick-contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.hrline {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

/* kpis */
.kpi {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px 12px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.kpi .num {
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.02em;
}

.kpi .lbl {
  color: var(--muted);
  font-size: 14px;
}

/* lists */
.featureline,
.mini-list > div {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted);
  margin-top: 0.6rem;
  line-height: 1.55;
}

.featureline i,
.mini-list i {
  color: var(--brand);
  margin-top: 0.2rem;
}

.mini-list {
  display: grid;
  gap: 10px;
}

.brand-row,
.mini-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brand-row span,
.mini-badges span {
  display: inline-flex;
  align-items: center;
  padding: 0.52rem 0.86rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.92rem;
}

/* why/how */
.why-card {
  transition: all 0.28s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-icon {
  background: rgba(0, 195, 255, 0.12);
  border: 1px solid rgba(0, 195, 255, 0.25);
  font-size: 20px;
  color: #00c3ff;
}

.how-wrapper {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.how-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.28s ease;
}

.how-step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-soft);
}

.step-number {
  min-width: 48px;
  font-weight: 700;
  font-size: 14px;
  background: rgba(0, 195, 255, 0.15);
  border: 1px solid rgba(0, 195, 255, 0.35);
  color: #00c3ff;
}

/* forms */
.form-control,
.form-select,
textarea {
  background: rgba(7, 18, 31, 0.35) !important;
  border: 1px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 16px !important;
  padding: 0.84rem 0.95rem !important;
}

.form-control::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  box-shadow: 0 0 0 0.2rem rgba(77, 210, 255, 0.2) !important;
  border-color: rgba(77, 210, 255, 0.38) !important;
}

/* accordions */
.accordion-item,
.accordion.ac-acc .accordion-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  margin-bottom: 10px;
  border-radius: 16px;
  overflow: hidden;
}

.accordion-button,
.accordion.ac-acc .accordion-button {
  background: rgba(255, 255, 255, 0.03) !important;
  color: var(--text) !important;
  box-shadow: none !important;
  padding: 16px 18px;
}

.accordion-button:not(.collapsed),
.accordion.ac-acc .accordion-button:not(.collapsed) {
  background: rgba(77, 210, 255, 0.12) !important;
}

.accordion-body,
.accordion.ac-acc .accordion-body {
  color: var(--muted);
}

/* pricing */
.ribbon {
  position: absolute;
  top: 14px;
  right: -46px;
  width: 170px;
  transform: rotate(35deg);
  background: linear-gradient(135deg, rgba(255, 153, 102, 0.95), rgba(255, 94, 98, 0.95));
  color: #1a0d0f;
  text-align: center;
  padding: 6px 0;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card .price {
  font-weight: 900;
  font-size: 40px;
  letter-spacing: -0.02em;
}

.pricing-card .per {
  color: var(--muted);
  font-size: 14px;
}

/* gallery */
.gallery-card img {
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.gallery-card:hover img {
  transform: translateY(-4px) scale(1.01);
  filter: saturate(1.08);
}

/* modal */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  padding: 18px;
}

.service-modal.show {
  display: flex;
}

.service-modal .modal-inner {
  width: min(980px, 100%);
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(7, 18, 31, 0.74);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-modal .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.service-modal .modal-body {
  padding: 18px 16px;
  color: var(--muted);
}

.modal-close {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* footer */
.footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.footerlinks a {
  color: var(--muted);
  display: inline-block;
  padding: 6px 0;
}

.footerlinks a:hover {
  color: #fff;
}

.footerbottom {
  border-top: 1px solid var(--border);
}

.iconpill {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.iconpill:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* contact cards */
.contactcard {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

/* floating actions */
.float-btn {
  position: fixed;
  right: 16px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  color: white;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.float-btn--whatsapp {
  bottom: 92px;
  background: linear-gradient(135deg, #25d366, #1fb85a);
}

.float-btn--call {
  bottom: 26px;
  background: linear-gradient(135deg, rgba(77, 210, 255, 0.95), rgba(71, 163, 255, 0.95));
  color: var(--brand-dark);
}

.backtotop {
  position: fixed;
  left: 16px;
  bottom: 26px;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: white;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
  z-index: 999;
}

.backtotop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.backtotop:hover {
  background: rgba(255, 255, 255, 0.09);
}

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: white;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* service helpers */
.sticky-service {
  position: sticky;
  top: 110px;
}

.service-section {
  scroll-margin-top: 120px;
}

.blue-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  display: inline-block;
}

/* clients / partners */
.clientgrid img {
  filter: grayscale(1) brightness(1.15);
  opacity: 0.85;
  transition: opacity 0.15s ease, transform 0.15s ease, filter 0.15s ease;
}

.clientgrid img:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter: grayscale(0) brightness(1.05);
}

.partnergrid .cardx {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.partnergrid img {
  max-width: 100%;
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
  display: block;
  margin: 0 auto;
}

/* light theme */
body.light {
  --bg0: #f6f8fb;
  --bg1: #edf3f9;
  --bg2: #edf2f7;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-2: rgba(255, 255, 255, 0.9);
  --text: rgba(9, 14, 25, 0.94);
  --muted: rgba(9, 14, 25, 0.66);
  --border: rgba(9, 14, 25, 0.12);
  background:
    radial-gradient(900px 600px at 10% 10%, rgba(71, 163, 255, 0.16), transparent 60%),
    radial-gradient(900px 600px at 90% 20%, rgba(77, 210, 255, 0.16), transparent 60%),
    linear-gradient(180deg, #ffffff, #edf2f7 70%);
}

body.light .topbar {
  background: rgba(9, 14, 25, 0.04);
}

body.light .toplink {
  color: rgba(9, 14, 25, 0.72);
}

body.light .navglass {
  background: rgba(255, 255, 255, 0.74);
}

body.light .navbar-brand,
body.light .brand-text strong {
  color: rgba(9, 14, 25, 0.94) !important;
}

body.light .brand-text small {
  color: rgba(9, 14, 25, 0.62);
}

body.light .navbar .nav-link {
  color: rgba(9, 14, 25, 0.74) !important;
}

body.light .navbar .nav-link:hover {
  color: rgba(9, 14, 25, 0.94) !important;
  background: rgba(9, 14, 25, 0.05);
}

body.light .navbar .nav-link.active {
  color: #04111d !important;
}

body.light .dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
}

body.light .dropdown-item {
  color: rgba(9, 14, 25, 0.82);
}

body.light .dropdown-item:hover,
body.light .dropdown-item:focus {
  background: rgba(9, 14, 25, 0.06);
  color: rgba(9, 14, 25, 0.94);
}

body.light .cardx,
body.light .cta,
body.light .kpi,
body.light .contactcard {
  background: rgba(255, 255, 255, 0.74);
}

body.light .footer {
  background: rgba(9, 14, 25, 0.03);
}

body.light .iconpill {
  color: rgba(9, 14, 25, 0.9);
}

body.light .brand-row span,
body.light .mini-badges span,
body.light .pill,
body.light .chip {
  background: rgba(255, 255, 255, 0.84);
}

body.light .form-control,
body.light .form-select,
body.light textarea {
  background: rgba(255, 255, 255, 0.9) !important;
  color: rgba(9, 14, 25, 0.94) !important;
}

body.light .service-modal .modal-inner {
  background: rgba(255, 255, 255, 0.9);
}

/* responsive */
@media (max-width: 1199px) {
  .hero-slide {
    min-height: 590px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 64px 0;
  }

  .hero-slide {
    min-height: 560px;
    padding: 30px;
  }

  .site-logo {
    height: 48px;
  }

  .sticky-service {
    position: static;
    top: auto;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7, 18, 31, 0.88);
  }

  body.light .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
  }
}

@media (max-width: 767px) {
  .hero h1,
  .hero h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .topbar .container {
    justify-content: center !important;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 18px 0 34px;
  }

  .hero-slide {
    min-height: 600px;
    padding: 24px;
  }

  .float-btn {
    right: 12px;
  }

  .float-btn--whatsapp {
    bottom: 82px;
  }

  .partnergrid img {
    height: 48px;
  }

  .site-logo {
    height: 44px;
  }

  .brand-text small {
    font-size: 0.72rem;
  }

  .btn,
  .btn-sm {
    font-size: 0.95rem;
  }
}
.chip-starting{
  background: rgba(77,210,255,.12);
  border-color: rgba(77,210,255,.38);
  color: rgba(185,241,255,.98);
}
.chip-popular{
  background: rgba(255,110,199,.12);
  border-color: rgba(255,110,199,.32);
  color: rgba(255,214,238,.98);
}
.chip-best{
  background: rgba(90,255,170,.12);
  border-color: rgba(90,255,170,.32);
  color: rgba(210,255,230,.98);
}

/* ==== 2026 polish updates ==== */
.topbar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  flex: 1;
}

.topinfo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0.72rem 0.85rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.topinfo:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}

.topinfo i {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(77,210,255,0.14);
  border: 1px solid rgba(77,210,255,0.22);
}

.topinfo span { min-width: 0; }
.topinfo small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.1;
}
.topinfo strong {
  display: block;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 600;
  word-break: break-word;
}

.icon-home,
.icon-phone,
.icon-email,
.icon-theme,
.featureline i,
.mini-list i,
.footer .fa-location-dot,
.footer .fa-map,
.footer .fa-clock,
.footer .fa-phone,
.footer .fa-envelope {
  color: var(--brand) !important;
}
.footer .fa-envelope1 {
  color: var(--brand-dark);
}

.icon-whatsapp,
.fa-whatsapp {
  color: var(--success) !important;
}

.iconpill .fa-phone,
.iconpill .fa-envelope,
.iconpill .fa-location-dot,
.iconpill .fa-map,
.iconpill .fa-clock,
.toplink .fa-phone,
.toplink .fa-envelope,
.toplink .fa-clock,
.toplink .fa-house,
.toplink .fa-house-circle-check {
  color: var(--brand);
}

.iconpill .fa-whatsapp,
.btn .fa-whatsapp,
.float-btn--whatsapp i {
  color: #ffffff !important;
}

.float-btn--whatsapp i {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.18));
}

.float-btn--call i,
.btn-ac i,
.brandmark i {
  color: var(--brand-dark) !important;
}

.page-loader .loader-ring {
  border-top-color: var(--brand);
}

body.light .topinfo {
  background: rgba(9,14,25,0.03);
  border-color: rgba(9,14,25,0.08);
}

body.light .topinfo strong {
  color: rgba(9,14,25,0.94);
}

@media (max-width: 1199.98px) {
  .topbar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .topbar-grid {
    grid-template-columns: 1fr;
  }

  .topinfo {
    padding: 0.68rem 0.8rem;
  }

  .site-logo {
    height: 50px;
  }
}
