
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root{
  --white:#ffffff;
  --red:#cf0808;
  --blue:#015fc9;
  --ink:#0b1220;
  --muted:#4b5563;
  --line:rgba(11,18,32,.12);
  --shadow:0 14px 38px rgba(2,6,23,.12);
  --r:16px;
  --r2:24px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto;display:block}
.container{width:min(1180px,92%);margin-inline:auto}
.section{padding:30px 0}
.small{font-size:.93rem;color:var(--muted)}
.kicker{letter-spacing:.12em;text-transform:uppercase;font-weight:800;font-size:.76rem;color:var(--blue)}
.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:4px 12px;border:1px solid var(--line);
  border-radius:16px;background:var(--white);
  font-weight:500;font-size:.9rem;
}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 15px;border-radius:999px;border:1px solid transparent;
  font-weight:500;cursor:pointer;transition:.18s ease;font-size:.95rem;
  white-space:nowrap;
}
.btn.primary{background:var(--blue); color:#fff; box-shadow:0 10px 28px rgba(1,95,201,.22)}
.btn.primary:hover{transform:translateY(-1px)}
.btn.outline{border-color:rgba(11,18,32,.18); background:var(--white)}
.btn.outline:hover{border-color:rgba(1,95,201,.55)}
.btn.red{background:#25D366; color:#fff; }
.btn.red:hover{transform:translateY(-1px)}

.grid{display:grid;gap:18px}
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--r2);
  box-shadow:0 8px 28px rgba(2,6,23,.06);
}
.card .pad{padding:20px}
.card.tight .pad{padding:16px}
.h2{font-size:clamp(1.25rem,2vw,1.9rem);margin:.35rem 0 .45rem;letter-spacing:-.01em}
.h3{font-size:1.06rem;margin:.2rem 0}
.p{margin:.3rem 0;color:var(--muted);font-size:.97rem}
.hr{height:1px;background:var(--line);margin:14px 0}
svg.icon{width:18px;height:18px;display:inline-block;vertical-align:-3px}

/* Responsive grid helpers (avoid inline styles) */
.cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.cols-2-1{grid-template-columns:minmax(0,1fr) minmax(0,.95fr)}
.cols-1-1{grid-template-columns:minmax(0,1fr) minmax(0,1fr)}
.cols-hero{grid-template-columns:minmax(0,1.15fr) minmax(0,.85fr)}
.gap-10{gap:10px}
.gap-12{gap:12px}
.gap-14{gap:14px}
.gap-18{gap:18px}
.align-start{align-items:start}
.align-stretch{align-items:stretch}

/* Topbar + Header */
.topbar{background:#5590bc;border-bottom:1px solid var(--line)}
.topbar .row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:9px 0;font-size:.90rem}
.topbar .row a{color:#fff;}
.topbar .row .left,.topbar .row .right{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.dot{width:6px;height:6px;}

.header{position:sticky;top:0;z-index:999;background:var(--white);border-bottom:1px solid rgba(11,18,32,.10)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:12px}
.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.brand .logo{width:44px;height:44px;border-radius:14px;background:var(--blue);display:grid;place-items:center;color:#fff;font-weight:900}
.brand b{font-size:1.02rem;letter-spacing:-.01em}
.brand span{display:block;font-size:.84rem;color:var(--muted);font-weight:600}
.brand img{max-width:250px;}
.menu{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.menu a{font-weight:500;color:rgba(11,18,32,.84);padding:9px 11px;border-radius:999px;font-size:.93rem}
.menu a:hover{background:rgba(1,95,201,.08);color:var(--blue)}
.menu a.active{background:#eaa861;color:#fff;}
.nav-cta{display:flex;gap:10px;align-items:center}
.burger{display:none;border:1px solid var(--line);background:var(--white);border-radius:14px;padding:10px 12px;cursor:pointer}
.mobile-drawer{display:none;position:fixed;inset:0;background:rgba(2,6,23,.45);z-index:9999}
.mobile-drawer .panel{width:min(92%,420px);height:100%;margin-left:auto;background:var(--white);border-left:1px solid var(--line);padding:18px;overflow:auto}
.mobile-drawer .panel a{display:flex;gap:10px;align-items:center;padding:12px 12px;border-radius:14px;font-weight:800}
.mobile-drawer .panel a:hover{background:rgba(1,95,201,.08)}

/* Hero */
.hero{padding:40px 0 24px; background:#f2f7fb;}
.hero h1{font-size:clamp(1.65rem,2.6vw,2.45rem);line-height:1.18;margin:.55rem 0;letter-spacing:-.02em}
.hero .lead{font-size:1rem;color:#000;}
.hero-illus{border-radius:20px;border:1px solid rgba(11,18,32,.12);background:var(--white);padding:14px}
.stats{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.stat{padding:9px 11px;border-radius:14px;border:1px solid var(--line);background:var(--white);font-weight:800;font-size:.92rem}
.stat small{display:block;color:var(--muted);font-weight:700;font-size:.80rem}
/* Section spacing */
.split-section {
  padding: 30px 0;
}

/* Container layout */
.split-section .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 50–50 columns on desktop */
.split-section .split-media,
.split-section .split-content {
  width: 50%;
}

/* Image styling */
.split-section .split-media img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
  object-fit: cover;
}

/* Content styling */


.split-section .split-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* 🔹 Mobile Responsive (100% stacked) */
@media (max-width: 768px) {
  .split-section {
    padding: 30px 0;
  }

  .split-section .container {
    flex-direction: column;
    gap: 20px;
  }

  .split-section .split-media,
  .split-section .split-content {
    width: 100%;
  }

  .split-section .split-content h2 {
    font-size: 24px;
  }
}
/* Forms */
.form{display:grid;gap:10px}
.input{display:grid;gap:6px}
.input label{font-weight:800;font-size:.88rem}
.field{
  width:100%;padding:11px 12px;border-radius:14px;
  border:1px solid rgba(11,18,32,.16);
  background:var(--white);
  outline:none;transition:.15s ease;font-size:.95rem;
}
.field:focus{border-color:rgba(1,95,201,.75);box-shadow:0 0 0 4px rgba(1,95,201,.12)}
.row2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.row3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.help{font-size:.9rem;color:var(--muted)}

/* Feature blocks */
.features{grid-template-columns:repeat(3,minmax(0,1fr))}
.iconbox{
  width:44px;height:44px;border-radius:16px;display:grid;place-items:center;
  border:1px solid rgba(11,18,32,.10);
  background:rgba(1,95,201,.08);
  color:var(--blue);
}
.iconbox.red{background:rgba(207,8,8,.08);color:var(--red)}
.media{border-radius:18px;border:1px solid rgba(11,18,32,.10);background:var(--white);padding:12px}
.list{display:grid;gap:10px;margin:0;padding:0;list-style:none}
.list li{display:flex;gap:10px;align-items:flex-start;color:var(--muted);font-size:.95rem}
.check{color:var(--blue);font-weight:900}

/* Pricing */
.table-wrap{overflow:auto;border-radius:20px;border:1px solid var(--line);background:var(--white)}
table{width:100%;border-collapse:collapse;}
th,td{padding:13px 14px;border-bottom:1px solid var(--line);text-align:left;font-size:.95rem}
th{font-size:.85rem;text-transform:uppercase;letter-spacing:.10em;color:rgba(11,18,32,.72);background:rgba(1,95,201,.06)}

/* CTA */
.cta{border:1px solid var(--line);border-radius:26px;background:rgba(1,95,201,.04)}
.cta.red{background:rgba(207,8,8,.04)}
.cta .inner{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap;padding:20px}
.cta h3{margin:0;font-size:1.25rem;letter-spacing:-.01em}
.cta p{margin:2px 0 0;color:var(--muted);font-size:.96rem}

/* Footer */
.footer{padding:50px 0 28px;border-top:1px solid var(--line);background:#f2f7fb;}
.footer .cols{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr) minmax(0,.8fr);gap:18px}
.footer a:hover{color:var(--blue)}
.subfooter{margin-top:20px;padding-top:16px;border-top:1px solid var(--line);display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:rgba(11,18,32,.70);font-size:.92rem}

/* Floating buttons */
.floatbar{position:fixed;right:18px;bottom:18px;z-index:9998;display:grid;gap:10px}
.fab{width:52px;height:52px;border-radius:18px;display:grid;place-items:center;color:#fff;font-weight:900;box-shadow:var(--shadow)}
.fab.call{background:var(--blue);display: grid;}
.fab.wa{background:#25D366;display: grid;}
.fab svg{width:22px;height:22px}
.bdy-color{background:#fffaf3;}
.breadcrumbs{display:flex;flex-wrap:wrap;gap:8px;align-items:center;color:rgba(11,18,32,.70);font-weight:700;font-size:.92rem}
.breadcrumbs a{color:var(--blue)}
.breadcrumbs .sep{opacity:.5}
.page-hero{padding:30px 0 8px}
.page-hero h1{margin:.3rem 0;font-size:clamp(1.45rem,2.2vw,2.1rem);letter-spacing:-.02em}

/* Breakpoints */
@media (max-width: 980px){
  .cols-hero{grid-template-columns:1fr}
  .cols-2,.cols-3,.cols-2-1,.cols-1-1{grid-template-columns:1fr}
  .features{grid-template-columns:1fr 1fr}
  .footer .cols{grid-template-columns:1fr 1fr}
  .topbar{display:none;}
  .nav-cta .btn{display:none;}
  .brand img {max-width: 180px !important;}
}
@media (max-width: 780px){
  .menu, .nav-cta .btn.outline{display:none}
  .burger{display:inline-flex}
  .row2,.row3{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
  .footer .cols{grid-template-columns:1fr}
  .floatbar{right:14px;bottom:14px}
  .brand span{display:none}
}
@media (max-width: 420px){
  .btn{width:100%;white-space:normal}
  .nav-cta{gap:8px}
  .brand b{font-size:.98rem}
  .container{width:92%}
}
.call-whatsapp {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 15px 0;
}

.call-whatsapp a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.25s ease;
}

/* Call Button */
.call-whatsapp .call-btn {
  background: #548fbc;
}

/* WhatsApp Button */
.call-whatsapp .whatsapp-btn {
  background: #25d366;
}

/* Hover */
.call-whatsapp a:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
  .call-whatsapp a {
    font-size: 13.5px;
    padding: 10px;
  }
}

/* Parent wrapper */
.urbania-price-table {
  width: 100%;
  overflow-x: auto;
  background: #fffaf3;
  padding: 12px;
  border-radius: 16px;
}

/* Table */
.urbania-price-table table {
  width: 100%;
  min-width: 650px; /* ensures clean mobile scroll */
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

/* Header */
.urbania-price-table thead {
  background: #548fbc;
}

.urbania-price-table th {
  padding: 14px 12px;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
}

/* Body rows */
.urbania-price-table td {
  padding: 12px;
  color: #2b2b2b;
  font-size: 15px;
}

.urbania-price-table tbody tr:nth-child(even) {
  background: #f2f7fb;
}

.urbania-price-table tbody tr:hover {
  background: #fffaf3;
}

/* Price highlight */
.urbania-price-table td:nth-child(2) {
  color: #eaa760;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 768px) {
  .urbania-price-table {
    padding: 8px;
  }

  .urbania-price-table th,
  .urbania-price-table td {
    font-size: 14px;
    padding: 10px;
  }
}

.route-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 columns */
  gap: 14px;
  margin: 30px 0;
}

/* Link button */
.route-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #548fbc;               /* secondary CTA */
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;                  /* not too bold */
  border-radius: 999px;              /* pill shape */
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
}

/* Arrow icon */
.route-links a::after {
  content: "›";
  font-size: 18px;
  font-weight: 600;
  background: #ffffff;
  color: #548fbc;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

/* Hover effect */
.route-links a:hover {
  background: #eaa760;               /* primary CTA */
  color: #ffffff;
  transform: translateY(-2px);
}

.route-links a:hover::after {
  color: #eaa760;
}

/* Tablet */
@media (max-width: 1024px) {
  .route-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .route-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .route-links a {
    font-size: 13.5px;
    padding: 11px 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .route-links {
    grid-template-columns: 1fr;
  }
}
.bdy-grey{background:#f1f1f1;}
/* ✅ Professional FAQ Design (Theme matched) */
.faq-section{
  background:#f2f7fb;            /* Section Alt BG */
  padding:40px 0;
}
:root{
  --faq-bg: #ffffff;
  --faq-text: #0f172a;
  --faq-muted: #64748b;
  --faq-border: rgba(2, 6, 23, .10);
  --faq-shadow: 0 10px 30px rgba(2, 6, 23, .08);

  /* Brand accents (you can change) */
  --faq-red: #cf0808;
  --faq-blue: #015fc9;

  --faq-radius: 18px;
}

.faq-section{
  padding: clamp(28px, 4vw, 56px) 14px;
  background:
    radial-gradient(900px 360px at 18% 10%, rgba(1,95,201,.10), transparent 60%),
    radial-gradient(900px 360px at 85% 0%, rgba(207,8,8,.10), transparent 55%),
    #fff;
  color: var(--faq-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.faq-wrap{width:min(1180px,92%);margin-inline:auto}

.faq-head{
  background: var(--faq-bg);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  box-shadow: var(--faq-shadow);
  padding: clamp(16px, 3.2vw, 26px);
  position: relative;
  overflow: hidden;
}

.faq-head::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(90deg, rgba(1,95,201,.35), rgba(207,8,8,.35));
  opacity:.18;
  pointer-events:none;
  filter: blur(10px);
}

.faq-head h2{
  position: relative;
  margin: 0 0 10px;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.faq-head p{
  position: relative;
  margin: 0;
  color: var(--faq-muted);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.faq-phone{
  font-weight: 700;
  text-decoration: none;
  color: var(--faq-blue);
  border-bottom: 1px dashed rgba(1,95,201,.5);
}
.faq-phone:hover{ border-bottom-style: solid; }

.faq-cta{
  position: relative;
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-cta a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid var(--faq-border);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 18px rgba(2, 6, 23, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
}

.faq-cta a:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(2, 6, 23, .10);
  border-color: rgba(2, 6, 23, .18);
}

.btn-call{ color: #fff; background: linear-gradient(135deg, var(--faq-blue), #0b7ae6); border-color: transparent; }
.btn-wa{ color: #fff; background: linear-gradient(135deg, #16a34a, #22c55e); border-color: transparent; }

.btn-call i, .btn-wa i{ font-size: 18px; }

/* Grid */
.faq-grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

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

/* Item card */
.faq-item{
  background: rgba(255,255,255,.9);
  border: 1px solid var(--faq-border);
  border-radius: var(--faq-radius);
  box-shadow: 0 10px 22px rgba(2, 6, 23, .06);
  overflow: clip;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-item:hover{
  border-color: rgba(2, 6, 23, .16);
  box-shadow: 0 14px 30px rgba(2, 6, 23, .10);
}

.faq-item[open]{
  border-color: rgba(1,95,201,.28);
  box-shadow: 0 18px 40px rgba(1,95,201,.12);
}

/* Summary */
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  user-select: none;
  outline: none;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary span{
  font-weight: 900;
  font-size: 15.5px;
  line-height: 1.35;
  letter-spacing: -.01em;
}

.faq-item summary i{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(2,6,23,.04);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.faq-item[open] summary i{
  transform: rotate(180deg);
  background: rgba(1,95,201,.10);
  border-color: rgba(1,95,201,.22);
}

/* Animated panel (JS sets height) */
.faq-body{
  padding: 0 16px;
}

.faq-panel{
  height: 0;
  overflow: hidden;
  transition: height .28s ease;
  will-change: height;
}

.faq-panel-inner{
  padding: 0 0 16px;
  color: var(--faq-muted);
  font-size: 14.5px;
  line-height: 1.75;
}

.faq-panel-inner p{ margin: 10px 0 0; }

.faq-panel-inner a{
  color: var(--faq-blue);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px dashed rgba(1,95,201,.55);
}
.faq-panel-inner a:hover{ border-bottom-style: solid; }

/* Focus accessibility */
.faq-item summary:focus-visible{
  box-shadow: 0 0 0 4px rgba(1,95,201,.18);
  border-radius: 14px;
}