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

:root {
  --orange:    #FF9B51;
  --orange-dk: #e6823a;
  --dark:      #25343F;
  --dark2:     #1a252f;
  --gray:      #BFC9D1;
  --light:     #EAEFEF;
  --text:      #2d3e4a;
  --text-lt:   #5a6f7c;
  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(37,52,63,.10);
  --shadow-lg: 0 10px 40px rgba(37,52,63,.16);
  --trans:     all .3s ease;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html { scroll-behavior:smooth }
body { font-family:'Barlow',sans-serif; color:var(--text); background:#fff; line-height:1.72; overflow-x:hidden }
img  { max-width:100%; height:auto; display:block }
a    { color:inherit; text-decoration:none }
ul   { list-style:none }

.container { max-width:1180px; margin:0 auto; padding:0 22px }

/* ── Typography ── */
h1,h2,h3,h4 { font-family:'Barlow',sans-serif; font-weight:800; line-height:1.18; color:var(--dark) }
h1 { font-size:clamp(2rem,5vw,3.2rem) }
h2 { font-size:clamp(1.6rem,3.5vw,2.4rem) }
h3 { font-size:clamp(1.1rem,2.5vw,1.4rem) }
h4 { font-size:1rem }
p  { margin-bottom:1rem; color:var(--text-lt); font-size:1.03rem }
p:last-child { margin-bottom:0 }

.label {
  display:inline-block; font-size:.76rem; font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; color:var(--orange); background:rgba(255,155,81,.12);
  padding:5px 14px; border-radius:30px; margin-bottom:14px
}
.section-sub { font-size:1.05rem; color:var(--text-lt); max-width:600px; margin-bottom:44px }

/* ── Buttons ── */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  font-family:'Barlow',sans-serif; font-weight:700; font-size:1rem;
  padding:13px 28px; border-radius:8px; cursor:pointer;
  transition:var(--trans); border:none; white-space:nowrap
}
.btn-primary { background:var(--orange); color:#fff }
.btn-primary:hover { background:var(--orange-dk); transform:translateY(-2px); box-shadow:0 6px 22px rgba(255,155,81,.40) }
.btn-outline  { background:transparent; border:2px solid var(--orange); color:var(--orange) }
.btn-outline:hover { background:var(--orange); color:#fff; transform:translateY(-2px) }
.btn-white    { background:#fff; color:var(--dark) }
.btn-white:hover { background:var(--light); transform:translateY(-2px) }
.btn-lg { padding:16px 36px; font-size:1.1rem }

/* ── Top bar ── */
.topbar { background:var(--dark2); padding:8px 0; font-size:.84rem; color:var(--gray) }
.topbar .container { display:flex; justify-content:space-between; align-items:center; gap:12px; flex-wrap:wrap }
.topbar a { color:var(--gray); transition:var(--trans) }
.topbar a:hover { color:var(--orange) }
.tb-phone { display:flex; align-items:center; gap:6px }
.tb-phone strong { color:var(--orange) }
.tb-social { display:flex; align-items:center; gap:14px }

/* ── Header ── */
header { background:#fff; box-shadow:0 2px 16px rgba(37,52,63,.08); position:sticky; top:0; z-index:999; overflow:visible; }
.hdr-inner { display:flex; align-items:center; justify-content:space-between; padding:15px 0; gap:12px }

.logo { display:flex; align-items:center; gap:11px }
.logo-icon { width:46px; height:46px; background:var(--orange); border-radius:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0 }
.logo-icon svg { width:28px; height:28px; fill:white }
.logo-words { display:flex; flex-direction:column; line-height:1.1 }
.logo-name { font-size:1.08rem; font-weight:800; color:var(--dark); white-space:nowrap }
.logo-tag  { font-size:.68rem; color:var(--orange); font-weight:700; letter-spacing:.06em; text-transform:uppercase }

nav ul { display:flex; gap:2px; align-items:center; height:100%; overflow:visible; }
nav ul li a {
  font-weight:600; font-size:.91rem; padding:8px 13px; border-radius:7px;
  color:var(--dark); transition:var(--trans); display:block
}
nav ul li a:hover, nav ul li a.active { color:var(--orange); background:rgba(255,155,81,.09) }

.hdr-cta { display:flex; align-items:center; gap:10px }
.hdr-cta .btn { padding:10px 20px; font-size:.9rem }

.nav-toggle { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:6px; background:none; border:none }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--dark); border-radius:2px; transition:var(--trans) }
.nav-toggle.active span:nth-child(1) { transform:translateY(7px) rotate(45deg) }
.nav-toggle.active span:nth-child(2) { opacity:0 }
.nav-toggle.active span:nth-child(3) { transform:translateY(-7px) rotate(-45deg) }

/* ── Hero ── */
.hero { position:relative; background:var(--dark); min-height:88vh; display:flex; align-items:center; overflow:hidden }
.hero-bg { position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?w=1600&q=80') center/cover no-repeat; opacity:.18 }
.hero-overlay { position:absolute; inset:0; background:linear-gradient(110deg,var(--dark) 42%,rgba(37,52,63,.6) 75%,transparent 100%) }
.hero-content { position:relative; z-index:2; max-width:660px; padding:80px 0 }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,155,81,.18); border:1px solid rgba(255,155,81,.35);
  color:var(--orange); font-size:.8rem; font-weight:700; letter-spacing:.09em;
  text-transform:uppercase; padding:6px 16px; border-radius:30px; margin-bottom:24px
}
.hero h1 { color:#fff; margin-bottom:20px }
.hero h1 em { color:var(--orange); font-style:normal }
.hero .lead { color:var(--gray); font-size:1.12rem; margin-bottom:36px; max-width:520px }
.hero-btns { display:flex; gap:14px; flex-wrap:wrap }
.hero-stats { display:flex; gap:36px; flex-wrap:wrap; margin-top:52px; padding-top:36px; border-top:1px solid rgba(255,255,255,.11) }
.stat-n { font-size:2rem; font-weight:900; color:var(--orange); line-height:1 }
.stat-l { font-size:.8rem; color:var(--gray); margin-top:4px }

/* ── Trust bar ── */
.trustbar { background:var(--orange); padding:17px 0 }
.trust-items { display:flex; justify-content:center; align-items:center; gap:36px; flex-wrap:wrap }
.trust-item { display:flex; align-items:center; gap:9px; color:#fff; font-weight:700; font-size:.9rem }
.trust-item svg { width:19px; height:19px; fill:rgba(255,255,255,.9) }

/* ── Sections ── */
section.pad    { padding:82px 0 }
section.pad-sm { padding:56px 0 }
.bg-light { background:var(--light) }
.bg-dark  { background:var(--dark) }

/* ── Grid helpers ── */
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:26px }
.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(185px,1fr)); gap:20px }

/* ── Cards ── */
.card { background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow); border:1px solid rgba(191,201,209,.25); transition:var(--trans); overflow:hidden }
.card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg) }
.card-img { height:200px; overflow:hidden }
.card-img img { width:100%; height:100%; object-fit:cover; transition:var(--trans) }
.card:hover .card-img img { transform:scale(1.06) }
.card-body { padding:26px }
.card-icon { width:46px; height:46px; background:rgba(255,155,81,.12); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:14px }
.card-icon svg { width:24px; height:24px; fill:var(--orange) }
.card-link { display:inline-flex; align-items:center; gap:6px; color:var(--orange); font-weight:700; font-size:.9rem; margin-top:4px; transition:var(--trans) }
.card-link:hover { gap:10px }

/* ── Why grid ── */
.why-img { border-radius:var(--radius-lg); overflow:hidden; height:500px; position:relative }
.why-img img { width:100%; height:100%; object-fit:cover }
.why-badge { position:absolute; bottom:28px; left:28px; background:var(--orange); color:#fff; padding:16px 22px; border-radius:var(--radius); font-weight:800; font-size:1.05rem; line-height:1.3 }
.why-points { display:flex; flex-direction:column; gap:22px; margin-top:30px }
.wp { display:flex; gap:16px; align-items:flex-start }
.wp-icon { width:44px; height:44px; min-width:44px; background:rgba(255,155,81,.12); border-radius:10px; display:flex; align-items:center; justify-content:center }
.wp-icon svg { width:22px; height:22px; fill:var(--orange) }
.wp h4 { margin-bottom:3px; font-size:.98rem }
.wp p  { font-size:.9rem; margin:0 }

/* ── Area cards ── */
.area-card { background:#fff; border:1.5px solid rgba(191,201,209,.45); border-radius:var(--radius); padding:24px 18px; text-align:center; transition:var(--trans); display:block }
.area-card:hover { border-color:var(--orange); background:rgba(255,155,81,.05); transform:translateY(-3px); box-shadow:var(--shadow) }
.area-card svg { width:28px; height:28px; fill:var(--orange); margin:0 auto 12px }
.area-card h4 { font-size:.98rem; margin-bottom:4px }
.area-card span { font-size:.8rem; color:var(--text-lt) }

/* ── Reviews ── */
.review-card { background:#fff; border-radius:var(--radius-lg); padding:28px; box-shadow:var(--shadow); border:1px solid rgba(191,201,209,.22); position:relative }
.review-card::before { content:'\201C'; position:absolute; top:14px; right:22px; font-size:4rem; color:rgba(255,155,81,.14); font-family:Georgia,serif; line-height:1 }
.stars { display:flex; gap:3px; margin-bottom:14px }
.stars svg { width:15px; height:15px; fill:#F59E0B }
.review-text { font-size:.94rem; color:var(--text); margin-bottom:18px; font-style:italic }
.review-author { display:flex; align-items:center; gap:10px }
.avatar { width:38px; height:38px; background:var(--orange); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:.88rem; flex-shrink:0 }
.r-name { font-weight:700; font-size:.88rem }
.r-meta { font-size:.76rem; color:var(--text-lt) }

/* ── Rating box ── */
.rating-box { background:var(--orange); border-radius:var(--radius-lg); padding:34px 38px; display:flex; align-items:center; gap:30px; flex-wrap:wrap; margin-bottom:40px }
.rating-score { font-size:4rem; font-weight:900; color:#fff; line-height:1 }
.rating-info h3 { color:#fff; margin-bottom:6px }
.rating-stars { display:flex; gap:4px; margin-bottom:6px }
.rating-stars svg { width:21px; height:21px; fill:#fff }
.rating-count { color:rgba(255,255,255,.82); font-size:.88rem }

/* ── FAQ ── */
.faq-wrap { max-width:820px; margin:0 auto }
.faq-item { border:1px solid rgba(191,201,209,.38); border-radius:var(--radius); margin-bottom:11px; overflow:hidden; background:#fff }
.faq-q { width:100%; background:none; border:none; padding:19px 22px; display:flex; justify-content:space-between; align-items:center; cursor:pointer; text-align:left; font-family:'Barlow',sans-serif; font-weight:700; font-size:.98rem; color:var(--dark); transition:var(--trans) }
.faq-q:hover { background:rgba(255,155,81,.05) }
.faq-q.open  { background:rgba(255,155,81,.07); color:var(--orange) }
.faq-ico { width:26px; height:26px; min-width:26px; background:rgba(255,155,81,.12); border-radius:50%; display:flex; align-items:center; justify-content:center; transition:var(--trans) }
.faq-ico svg { width:12px; height:12px; fill:var(--orange); transition:transform .3s }
.faq-q.open .faq-ico { background:var(--orange) }
.faq-q.open .faq-ico svg { fill:#fff; transform:rotate(180deg) }
.faq-a { max-height:0; overflow:hidden; transition:max-height .36s ease }
.faq-a-inner { padding:0 22px 18px; color:var(--text-lt); font-size:.96rem; line-height:1.72 }
.faq-a-inner a { color:var(--orange) }

/* ── Page hero ── */
.page-hero { background:var(--dark); padding:68px 0; position:relative; overflow:hidden }
.page-hero::before { content:''; position:absolute; inset:0; background:url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=50') center/cover; opacity:.07 }
.page-hero .container { position:relative; z-index:2 }
.page-hero h1 { color:#fff; margin-bottom:14px }
.page-hero p  { color:var(--gray); font-size:1.08rem; max-width:560px; margin:0 }
.breadcrumb { display:flex; gap:8px; align-items:center; font-size:.83rem; color:var(--gray); margin-bottom:18px }
.breadcrumb a { color:var(--orange) }
.breadcrumb span { opacity:.5 }

/* ── CTA band ── */
.cta-band { background:linear-gradient(135deg,var(--dark) 0%,var(--dark2) 100%); padding:72px 0; text-align:center }
.cta-band h2 { color:#fff; margin-bottom:14px }
.cta-band p  { color:var(--gray); margin-bottom:30px; font-size:1.08rem; max-width:580px; margin-left:auto; margin-right:auto }

/* ── About specifics ── */
.about-img { border-radius:var(--radius-lg); overflow:hidden; height:520px }
.about-img img { width:100%; height:100%; object-fit:cover }
.stat-box { padding:28px; background:#fff; border-radius:var(--radius-lg); text-align:center; box-shadow:var(--shadow) }
.stat-box .n { font-size:2.8rem; font-weight:900; color:var(--orange); line-height:1 }
.stat-box .l { font-weight:700; color:var(--dark); margin-top:6px; font-size:.95rem }
.stat-box p  { font-size:.84rem; margin-top:6px }
.chip { display:inline-flex; align-items:center; background:rgba(255,155,81,.1); border:1px solid rgba(255,155,81,.22); color:var(--orange); font-size:.77rem; font-weight:600; padding:4px 12px; border-radius:30px; margin:3px }

/* ── FAQ page faq-section headings ── */
.faq-section-title { font-size:1.35rem; font-weight:800; color:var(--dark); margin-bottom:18px; padding-bottom:10px; border-bottom:2px solid rgba(255,155,81,.25) }

/* ── Footer ── */
footer { background:var(--dark); color:var(--gray) }
.footer-main { padding:60px 0 40px }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:40px }
.footer-brand p { font-size:.9rem; margin-top:16px; color:var(--gray); line-height:1.72 }
.footer-social { display:flex; gap:10px; margin-top:18px }
.footer-social a { width:36px; height:36px; background:rgba(255,255,255,.07); border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--gray); font-size:.75rem; transition:var(--trans) }
.footer-social a:hover { background:var(--orange); color:#fff }
.footer-col h4 { color:#fff; font-size:.93rem; font-weight:700; margin-bottom:16px }
.footer-col ul li { margin-bottom:7px }
.footer-col ul li a { font-size:.86rem; color:var(--gray); transition:var(--trans) }
.footer-col ul li a:hover { color:var(--orange); padding-left:4px }
.f-phone { display:flex; align-items:center; gap:8px; margin-bottom:14px }
.f-phone a { color:var(--orange); font-size:1.15rem; font-weight:800 }
.f-phone svg { width:18px; height:18px; fill:var(--orange) }
.f-addr  { font-size:.86rem; color:var(--gray); margin-bottom:8px; line-height:1.6 }
.f-hours { font-size:.83rem; color:var(--gray); line-height:1.7 }
.map-wrap { margin-top:18px; border-radius:10px; overflow:hidden; height:186px }
.map-wrap iframe { width:100%; height:100%; border:0 }
.footer-bot { border-top:1px solid rgba(255,255,255,.07); padding:20px 0 }
.footer-bot-inner { display:flex; justify-content:space-between; align-items:flex-start; gap:20px; flex-wrap:wrap }
.disclaimer { font-size:.71rem; color:rgba(191,201,209,.52); line-height:1.65; max-width:800px }
.copy { font-size:.79rem; color:rgba(191,201,209,.42); white-space:nowrap }

/* ── Responsive ── */
@media(max-width:1024px) {
  .footer-grid { grid-template-columns:1fr 1fr }
  .grid-2 { grid-template-columns:1fr; gap:40px }
  .why-img,.about-img { height:380px }
}
@media(max-width:768px) {
  section.pad { padding:56px 0 }
  .hero { min-height:auto }
  .hero-content { padding:60px 0 }
  nav { display:none; position:absolute; top:100%; left:0; right:0; background:#fff; padding:14px 20px; box-shadow:var(--shadow-lg); z-index:999 }
  nav.open { display:block }
  nav ul { flex-direction:column; gap:2px }
  .nav-toggle { display:flex }
  .hdr-cta .btn span { display:none }
  .hdr-cta .btn { padding:10px 14px }
  .footer-grid { grid-template-columns:1fr }
  .footer-bot-inner { flex-direction:column }
  .trust-items { gap:18px }
  .hero-btns { flex-direction:column }
  .hero-btns .btn { justify-content:center }
  .rating-box { flex-direction:column; gap:18px }
  .topbar .container { justify-content:center }
}
@media(max-width:480px) {
  h1 { font-size:1.75rem }
  h2 { font-size:1.45rem }
  .hero-stats { gap:18px }
  .grid-3 { grid-template-columns:1fr }
  .grid-4 { grid-template-columns:repeat(2,1fr) }
}

/* ── Dropdown menus ── */
.has-dropdown {
  position: relative;
  align-self: center;
  height: auto;
}

div.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 6px 0;
  z-index: 9999;
  margin-top: 0;
}



div.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: #2d3e4a;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #f5f5f5;
}

div.nav-dropdown a:last-child {
  border-bottom: none;
}

div.nav-dropdown a:hover {
  background: rgba(255,155,81,0.10);
  color: #FF9B51;
  padding-left: 24px;
}
