/* Shared styles for the inner service pages. The landing keeps its own inline CSS —
   it is one file with a lot of one-off sections, and splitting it would be churn for
   no gain. These pages, by contrast, are copies of one layout, so a cached shared
   sheet is cheaper than repeating ~500 lines per page. */

:root{
  --navy:#14294D;
  --navy-deep:#0C1D38;
  --navy-mid:#1B3559;
  --navy-soft:#4A5C78;
  --orange:#FF6B00;
  --orange-dim:#FF8A33;
  --white:#FFFFFF;
  --offwhite:#F5F4F0;
  --line:rgba(11,31,58,0.10);
  --shadow-1:0 10px 30px rgba(11,31,58,0.08);
  --shadow-2:0 20px 60px rgba(11,31,58,0.14);
  --radius:20px;
  --ease:cubic-bezier(.16,.84,.44,1);
  --font-body:'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-display:'Unbounded', var(--font-body);
}
*{margin:0; padding:0; box-sizing:border-box; -webkit-tap-highlight-color:transparent;}
html{scroll-behavior:smooth; -webkit-text-size-adjust:100%; scroll-padding-top:100px;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; transition-duration:0.001ms !important;}
}
body{
  font-family:var(--font-body); background:var(--offwhite); color:var(--navy);
  overflow-x:hidden; -webkit-font-smoothing:antialiased; line-height:1.5;
}
img{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
a, button{touch-action:manipulation;}
h1,h2,h3,h4{font-weight:800; letter-spacing:-0.01em; line-height:1.1;}
.wrap{max-width:1080px; margin:0 auto; padding:0 40px;}
@media(max-width:768px){.wrap{padding:0 20px;}}

/* ---------- header ---------- */
header{
  position:sticky; top:0; z-index:100;
  background:rgba(245,244,240,0.88);
  backdrop-filter:blur(16px) saturate(160%); -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 1px 0 rgba(11,31,58,0.08);
  padding:16px 0;
}
header .wrap{display:flex; align-items:center; justify-content:space-between; gap:20px;}
.logo{
  font-family:var(--font-display); font-weight:900; font-size:22px;
  text-transform:uppercase; letter-spacing:0.01em; color:var(--navy); white-space:nowrap;
}
.logo span{color:var(--orange);}
.hdr-actions{display:flex; align-items:center; gap:18px;}
.hdr-phone{font-size:14px; font-weight:600; white-space:nowrap;}
@media(max-width:620px){.hdr-phone{display:none;}}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 26px; border-radius:100px; font-size:12.5px; letter-spacing:0.05em;
  text-transform:uppercase; font-weight:600; white-space:nowrap; border:none; cursor:pointer;
  font-family:inherit;
  transition:transform 160ms ease-out, box-shadow 160ms ease-out, background 200ms ease-out;
}
.btn-primary{background:var(--orange); color:var(--white); box-shadow:0 8px 24px rgba(255,107,0,0.30);}
.btn-primary:active{transform:scale(0.97);}
.btn-ghost{background:transparent; color:var(--navy); border:1.5px solid rgba(11,31,58,0.22);}
.btn-ghost:active{transform:scale(0.97);}
.btn-wa{background:#25D366; color:#fff; box-shadow:0 8px 24px rgba(37,211,102,0.28);}
.btn-wa:active{transform:scale(0.97);}
.btn-wa svg{width:17px; height:17px; fill:currentColor;}
@media (hover:hover) and (pointer:fine){
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 32px rgba(255,107,0,0.40);}
  .btn-ghost:hover{border-color:var(--navy); background:rgba(11,31,58,0.04); transform:translateY(-2px);}
  .btn-wa:hover{transform:translateY(-2px); box-shadow:0 14px 32px rgba(37,211,102,0.38);}
}

/* ---------- breadcrumbs ---------- */
.crumbs{font-size:13px; color:var(--navy-soft); padding:26px 0 0;}
.crumbs a{color:var(--navy-soft); border-bottom:1px solid transparent; transition:border-color 200ms ease-out;}
@media (hover:hover){.crumbs a:hover{border-color:var(--navy-soft);}}
.crumbs span{color:rgba(11,31,58,0.35); margin:0 8px;}

/* ---------- hero ---------- */
.page-hero{padding:34px 0 48px;}
.eyebrow{
  font-size:12px; letter-spacing:0.14em; text-transform:uppercase; color:var(--orange);
  display:flex; align-items:center; gap:10px; margin-bottom:18px; font-weight:600;
}
.eyebrow::before{
  content:''; width:6px; height:6px; border-radius:50%; background:var(--orange);
  box-shadow:0 0 0 4px rgba(255,107,0,0.15);
}
h1{font-size:clamp(28px,4.4vw,46px); text-transform:uppercase; margin-bottom:20px;}
.lead{font-size:clamp(16px,1.7vw,19px); color:var(--navy-soft); line-height:1.6; max-width:720px;}
.hero-actions{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}

/* quick facts strip */
.facts{
  display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); border-radius:var(--radius);
  overflow:hidden; margin-top:40px;
}
@media(max-width:760px){.facts{grid-template-columns:repeat(2,1fr);}}
.fact{background:var(--white); padding:24px 22px;}
.fact b{font-family:var(--font-display); font-weight:800; font-size:clamp(22px,2.6vw,30px); display:block; color:var(--navy);}
.fact b i{font-style:normal; color:var(--orange);}
.fact span{font-size:12.5px; color:var(--navy-soft); margin-top:6px; display:block; line-height:1.4;}

/* ---------- content ---------- */
section{padding:52px 0;}
section.tight{padding:34px 0;}
h2{font-size:clamp(23px,3vw,32px); text-transform:uppercase; margin-bottom:22px;}
h3{font-size:19px; font-weight:700; margin-bottom:10px; letter-spacing:0;}
.prose p{font-size:16px; line-height:1.7; color:var(--navy-soft); margin-bottom:16px; max-width:760px;}
.prose p strong{color:var(--navy);}
.prose ul{margin:0 0 20px; padding-left:0; list-style:none; max-width:760px;}
.prose li{
  font-size:16px; line-height:1.65; color:var(--navy-soft);
  padding-left:26px; position:relative; margin-bottom:11px;
}
.prose li::before{
  content:''; position:absolute; left:4px; top:10px; width:7px; height:7px;
  border-radius:50%; background:var(--orange);
}

/* cards */
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px;}
@media(max-width:900px){.cards{grid-template-columns:repeat(2,1fr);}}
@media(max-width:560px){.cards{grid-template-columns:1fr;}}
.card{background:var(--white); border:1px solid var(--line); border-radius:16px; padding:26px 24px;}
.card .num{font-family:var(--font-display); font-weight:800; font-size:13px; color:var(--orange); margin-bottom:14px;}
.card p{font-size:14.5px; color:var(--navy-soft); line-height:1.6;}

/* price table */
.price-table{
  width:100%; border-collapse:collapse; background:var(--white);
  border:1px solid var(--line); border-radius:16px; overflow:hidden; font-size:15px;
}
.price-table th, .price-table td{padding:15px 20px; text-align:left; border-bottom:1px solid var(--line);}
.price-table th{background:var(--navy); color:var(--white); font-weight:600; font-size:12px; letter-spacing:0.05em; text-transform:uppercase;}
.price-table tr:last-child td{border-bottom:none;}
.price-table td:last-child{font-weight:700; white-space:nowrap;}
.table-scroll{overflow-x:auto; -webkit-overflow-scrolling:touch;}
.price-note{font-size:13px; color:var(--navy-soft); margin-top:14px; line-height:1.55;}

/* dark CTA block */
.cta-block{
  background:var(--navy); color:var(--white); border-radius:24px; padding:46px 44px;
  position:relative; overflow:hidden;
}
@media(max-width:640px){.cta-block{padding:30px 24px;}}
.cta-block::before{
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 60% 70% at 85% 0%, rgba(255,107,0,0.18), transparent 62%);
}
.cta-block > *{position:relative;}
.cta-block h2{color:var(--white); margin-bottom:14px;}
.cta-block p{color:rgba(255,255,255,0.72); font-size:16px; line-height:1.6; max-width:560px; margin-bottom:28px;}
.cta-actions{display:flex; gap:14px; flex-wrap:wrap;}

/* FAQ */
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 2px; cursor:pointer; width:100%; background:none; border:none;
  font-family:inherit; text-align:left; color:var(--navy);
}
.faq-q h3{font-size:17px; font-weight:600; margin:0;}
.faq-plus{width:20px; height:20px; position:relative; flex-shrink:0;}
.faq-plus::before, .faq-plus::after{
  content:''; position:absolute; background:var(--navy); border-radius:2px;
  transition:transform 300ms var(--ease), opacity 300ms var(--ease);
}
.faq-plus::before{width:100%; height:2px; top:50%; left:0; transform:translateY(-50%);}
.faq-plus::after{height:100%; width:2px; left:50%; top:0; transform:translateX(-50%);}
.faq-item[open] .faq-plus::after{transform:translateX(-50%) rotate(90deg); opacity:0;}
.faq-item[open] .faq-plus::before{background:var(--orange);}
.faq-a{padding:0 2px 22px;}
.faq-a p{font-size:15px; color:var(--navy-soft); line-height:1.65; max-width:720px;}

/* related links */
.related{display:flex; flex-wrap:wrap; gap:10px;}
.related a{
  font-size:13px; padding:11px 18px; border-radius:100px; border:1px solid var(--line);
  background:var(--white); transition:background 200ms ease-out, border-color 200ms ease-out, transform 160ms ease-out;
}
.related a:active{transform:scale(0.97);}
@media (hover:hover) and (pointer:fine){
  .related a:hover{background:var(--navy); color:var(--white); border-color:var(--navy);}
}

/* gallery */
.shots{display:grid; grid-template-columns:repeat(3,1fr); gap:14px;}
@media(max-width:760px){.shots{grid-template-columns:repeat(2,1fr);}}
.shot{border-radius:14px; overflow:hidden; border:1px solid var(--line); background:var(--white);}
.shot img{aspect-ratio:4/3; object-fit:cover; width:100%;}
.shot figcaption{padding:12px 14px; font-size:13px; color:var(--navy-soft); line-height:1.45;}
.shot figcaption b{display:block; color:var(--orange); font-size:11px; text-transform:uppercase; letter-spacing:0.04em; margin-bottom:4px;}

/* ---------- footer ---------- */
footer{background:var(--navy-deep); color:rgba(255,255,255,0.62); padding:52px 0 26px; margin-top:20px;}
.foot-top{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:34px; border-bottom:1px solid rgba(255,255,255,0.1);}
@media(max-width:760px){.foot-top{grid-template-columns:1fr 1fr; gap:28px;}}
footer .logo{color:var(--white);}
.foot-top p{font-size:14px; line-height:1.6; margin-top:14px; color:rgba(255,255,255,0.62); max-width:290px;}
.foot-col h4{font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:rgba(255,255,255,0.55); margin-bottom:16px; font-weight:500;}
.foot-col a{display:block; font-size:14px; margin-bottom:11px; color:rgba(255,255,255,0.72); transition:color 200ms ease-out; overflow-wrap:break-word;}
@media (hover:hover){.foot-col a:hover{color:var(--orange);}}
.foot-bottom{padding-top:22px; font-size:12px; color:rgba(255,255,255,0.5); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;}

/* floating WhatsApp */
.fab{
  position:fixed; right:20px; bottom:calc(20px + env(safe-area-inset-bottom)); z-index:90;
  width:54px; height:54px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(11,31,58,0.25);
  transition:transform 200ms ease-out;
}
.fab svg{width:25px; height:25px; fill:#fff;}
.fab:active{transform:scale(0.94);}
@media (hover:hover) and (pointer:fine){.fab:hover{transform:scale(1.07);}}
