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

:root {
  --brand-main: #2f4858;
  --brand-deep: #1b2e3a;
  --accent-color: #f5b301;
  --secondary-color: #ff6f61;
  --light-bg: #f7f9fb;
  --border-color: #e4e8ec;
  --text-main: #1c2b33;
  --text-light: #5a6a73;
  --radius: 10px;
  --shadow: 0 8px 25px rgba(0,0,0,.08);
}

/* GLOBAL RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  font-size: 1.125rem;
  letter-spacing: .01em;
  color: var(--text-main);
  background:
    radial-gradient(circle at 20% 0%, #f3f7fb 0%, transparent 40%),
    radial-gradient(circle at 80% 100%, #f5f8fc 0%, transparent 40%),
    #ffffff;
}

p {
  line-height: 1.8;               /* slightly taller for readability */
  margin-bottom: clamp(18px, 2vw, 28px); /* more breathing room */
}

html {
  scroll-behavior: smooth;
}


h1,h2,h3, h4 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  margin-bottom: clamp(18px, 2.2vw, 32px);
  line-height: 1.25;
}

h1 { font-size: clamp(28px, 5vw, 48px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 24px); }

h1 + p, h2 + p, h3 + p, h4 + p {
  margin-top: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(20px, 2vw, 28px);
}

/* Lists */
ul, ol {
  margin-bottom: clamp(18px, 2vw, 28px);
  padding-left: 1.5em;
  line-height: 1.75;
}

li {
  margin-bottom: clamp(8px, 1vw, 14px);
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
   height: auto;
}


a {
  color: var(--brand-main);
  text-decoration: none;

  
}

/* keep normal links colored on hover */
a:not(.btn):hover {
  color: var(--accent-color);
}


p a, li a, dd a {
  text-decoration: underline;
  text-decoration-color: var(--brand-main);
  text-decoration-thickness: 1.5px;
}


.shell {
  max-width: 1180px;
  margin: auto;
  padding: 0 clamp(24px, 4vw, 40px);
}

.section {
      padding: clamp(70px, 9vw, 120px) 0;
}

.section h2 {
  margin-bottom: clamp(14px, 2vw, 20px);
}

.section--light {
  background: var(--light-bg);
}

.section-lead {
  color: var(--text-light);
  margin-bottom: clamp(24px, 3vw, 40px);
}
.section + .section {
  position: relative;

}

.section + .section::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  opacity: .75;
}



/* SKIP LINK */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 1000;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--brand-main);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
}

.skip-link:focus-visible {
  left: 20px;
  top: 20px;
  width: auto;
  height: auto;
  padding: 10px 15px;
  background: var(--brand-main);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
}

/* FAQ SECTION SPACING */
.faq-list dt {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
  color: var(--brand-main);
}

.faq-list dd {
  margin-bottom: clamp(18px, 2vw, 26px);
  line-height: 1.75;
  color: var(--text-light);
  max-width: 720px;
}

/* HEADER */
.top-bar {
  background: white;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 20; /* keep above trust strip */
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.brand-block {
  display: flex;
  flex-direction: column;
}

.brand-block__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 18px;
  margin-left: clamp(8px, 1.5vw, 18px);
}

.brand-logo { width: 40px;}

.brand-block__tagline {
  font-size: 13px;
  color: var(--text-light);
  margin-left: clamp(8px, 1.5vw, 18px);
}


.contact-block__label {
  font-size: 12px;
  color: var(--text-light);
    margin-bottom: 2px;
  line-height: 1.4; /* tighter, cleaner */
}

.contact-block__phone {
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-main);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
}

/* NAVIGATION */
.primary-nav {
  background: var(--brand-main);
  position: relative;
  z-index: 15;
}


.primary-nav__list {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 14px 0;
}

.primary-nav__list a { color: white; font-weight: 500; transition: color 0.3s ease; }
.primary-nav__list a:hover { color: var(--accent-color); }

/* TRUST STRIP */
.trust-strip {
  background: var(--brand-main);
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  background: #1b2e3a; /* darker variant of brand-main */


  /* Visual separation from nav/header */
  margin-top: 5px; /* small gap from nav */
  border-top: 3px solid var(--accent-color); /* accent-colored line */
  
   box-shadow: 0 8px 15px rgba(0,0,0,0.15);
  position: relative;
  top: 0;
  z-index: 25;
  margin: 0 auto 20px auto;
  border-radius: var(--radius);
}

.trust-strip p {
  margin: 0;
}

/* HERO */
.hero-section { padding: 80px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 4vw, 55px);
  align-items: center;
}

/* HERO ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-grid__copy h1,
.hero-grid__copy .hero-grid__subtitle,
.hero-grid__copy .hero-grid__actions {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-grid__copy .hero-grid__subtitle { animation-delay: 0.2s; }
.hero-grid__copy .hero-grid__actions { animation-delay: 0.4s; }

.hero-grid__media img {
  transform: scale(0.98);
  transition: transform 0.4s ease;
   box-shadow: 0 20px 50px rgba(0,0,0,.15);
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.hero-grid__copy {
  min-height: 300px; /* avoids jump while fonts load */
}

.hero-grid__media img:hover { transform: scale(1); }

.hero-grid__subtitle { font-size: clamp(16px, 2vw, 20px); margin: clamp(16px, 2vw, 24px) 0; color: var(--text-light); }

.hero-grid__local { margin-bottom: 25px; }

.hero-grid__actions { display: flex; gap: 15px; margin-bottom: 12px; }

.hero-grid__note { font-size: clamp(12px, 1.5vw, 14px); color: var(--text-light); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  min-height: 48px;
}

.btn--primary { background: var(--accent-color); color: #000;  }
.btn--primary:hover {
  background: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.btn--outline { border: 2px solid var(--brand-main); color: var(--brand-main); }
.btn--outline:hover { background: var(--brand-main); color: white; }

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 35px;
  padding: clamp(18px, 2vw, 28px);
}

.feature-card {
  background: white;
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

.feature-card h3 { margin-bottom: 10px; font-size: 18px; }

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 40px;
}

.service-box {
  border: 1px solid var(--border-color);
  padding: clamp(20px, 2vw, 28px);
  border-radius: var(--radius);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  border-color: var(--accent-color);
}

.service-box h3 { margin-bottom: 10px; font-size: 18px; }

.service-box__link {
  margin-top: 10px;
  display: inline-block;
  color: var(--brand-main);
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-box p {
  margin-bottom: clamp(10px, 1vw, 14px);
}

.service-box__link:hover { color: var(--accent-color); transform: translateX(3px); }

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp(18px, 2vw, 30px);
  margin-top: 35px;
}

.review-card {
  background: white;
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card p {
  line-height: 1.7;
}

.faq-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.review-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.12); }

.review-card__stars { color: #f5b301; margin-bottom: 10px; }

.review-card__meta { margin-top: 15px; font-size: 14px; color: var(--text-light); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(90deg, var(--brand-main), #234051);
  color: white;
  padding: 40px 0;
}

.cta-band__inner { display: flex; justify-content: space-between; align-items: center; }

/* SERVICE AREA */
.area-list { columns: 2; margin-top: 20px; color: var(--text-light); }

/* Breadcrumbs */
/* Breadcrumb container */
.breadcrumb {
  background: linear-gradient(90deg, #eaf3f7, #f5f5f5); /* subtle gradient */
  padding: 8px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* soft shadow */
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  margin: 25px 0;
  transition: box-shadow 0.3s ease;
}

.breadcrumb:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1); /* subtle hover lift */
}

/* List reset */
.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

/* Items */
.breadcrumb__item {
  color: #1b2e3a;
  position: relative;
  transition: color 0.2s;
}

/* Links */
.breadcrumb__item a {
  color: var(--brand-main);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.25s;
}

/* Extra left margin for the first breadcrumb link */
.breadcrumb__item:first-child a {
  margin-left: 6px; 
}

.breadcrumb__item a:hover {
  color: var(--accent-color);
}

/* Separator */
.breadcrumb__item:not(:last-child)::after {
  content: "›";
  margin: 0 8px;
  color: #7a7a7a;
  font-weight: 600;
}

/* Current page */
.breadcrumb__item--current {
  font-weight: 600;
  color: #1b2e3a;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 5px;
  }
}

/* GALLERY */
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 35px; }

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover { transform: scale(1.03); box-shadow: var(--shadow); }

.media-card figcaption { font-size: 13px; margin-top: 6px; color: var(--text-light); }

/* LIGHTBOX MODAL (Enhanced with arrows) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-direction: column;
}

.lightbox__img {
  max-width: 90%;
  max-height: 85%;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

.lightbox__caption {
  color: #fff;
  font-size: 14px;
  text-align: center;
  max-width: 90%;
}

/* Close Button */
.lightbox__close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.lightbox__close:hover { color: var(--accent-color); }

/* Navigation Arrows */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
  transition: color 0.3s ease;
}

.lightbox__nav:hover { color: var(--accent-color); }

.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }

/* Hide by default (we'll toggle with JS) */
.lightbox.hidden { display: none; }

/* QUOTE FORM */
.quote-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.quote-form { display: grid; gap: 18px; }

.field label { font-size: 14px; margin-bottom: 5px; display: block; }

.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  font-family: inherit;
}

/* FOOTER */
.site-footer { background: #111; color: #bbb; padding: 50px 0; font-size: 14px; }

.footer-main { max-width: 600px; margin-bottom: 20px; }

.footer-main a:hover { color: var(--accent-color); }

.footer-main a { color: #eee; }

.footer-note { font-size: 13px; margin-top: 10px; }

.footer-meta { border-top: 1px solid #333; padding-top: 15px; font-size: 12px; }

/* BACK TO TOP */
.back-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent-color);
  padding: 10px 15px;
  border-radius: var(--radius);
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.back-top:hover {
  background: var(--brand-main);
  color: white;
  transform: scale(1.1);
}

ul li::marker {
  color: var(--accent-color);
  font-size: 1.15em;
}



li {
   margin-bottom: clamp(8px, .9vw, 12px);
}


.faq-list dt {
  transition: color .25s ease;
}

.faq-list dt:hover {
  color: var(--accent-color);
}

.faq-list dt:not(:first-child) {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

/* RESPONSIVE */
@media(max-width:950px){
  .hero-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; gap: 15px; }
}


@media (max-width: 768px) {

.top-bar__inner {
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px clamp(16px, 5vw, 24px); /* slightly smaller for mobile */
}

.brand-block {
  flex: 1;
}

.contact-block {
  order: 3;
  width: 100%;
  text-align: center;
}

.contact-block__phone {
  font-size: 22px;
}

.menu-toggle {
  display: block;
}

.primary-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.primary-nav.open {
  max-height: 400px;
}

.primary-nav__list {
  flex-direction: column;
  gap: 0;
}

.primary-nav__list li {
  border-top: 1px solid rgba(255,255,255,.2);
}

.primary-nav__list a {
  display: block;
  padding: 14px 0;
}

.hero-section {
  padding: 50px 0;
}

.hero-grid {
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.hero-grid__actions {
  flex-direction: column;
  gap: 12px;
}

.hero-grid__actions .btn {
  width: 100%;
}

.hero-grid__media img {
  max-height: 320px;
  object-fit: cover;
}

.media-grid {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 30px);
}

.quote-layout {
  grid-template-columns: 1fr;
  gap: 30px;
}

.field input,
.field textarea {
  font-size: 16px;
}

 h1, h2, h3, h4, p, figcaption {
    text-align: center;
  }


  /* Center list bullets */
.hero-grid ul,
.hero-grid ol {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
}

  ul li, ol li {
       /* make list items inline-block to center nicely */
    margin: 0 5px;               /* spacing between bullets */
  }

  .faq-list dt {
  font-weight: 700;
  font-size: 1.15rem;
  margin-top: 1.5rem;
  text-align: center;
  text-wrap: balance;
}

.faq-list dd {
  margin-top: 0.4rem;
  line-height: 1.6;
  text-align: center;
  text-wrap: balance;
}

.media-card figcaption {
  text-align: center;
}

.service-box__link{
display:block;
text-align:center;
margin-top:12px;
}

.service-box h3, .review-card {
text-align:center;
}

.left {
  text-align: left;
}

.brand-block__tagline {
  text-align: left;
}

.footer-main strong{
display:block;
text-align:center;
margin-bottom:8px;
}

}



@media(max-width:650px){
  .menu-toggle { display: block; }
  .primary-nav__list { flex-direction: column; display: none; }
  .primary-nav.open .primary-nav__list { display: flex; }
  .feature-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }

  .breadcrumb {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .breadcrumb__item:not(:last-child)::after {
    margin: 0 5px;
  }

  .breadcrumb__item:first-child a {
    margin-left: 0; /* remove extra margin on small screens */
  }
}

@media(max-width:500px){
  .lightbox__image { max-width: 95%; max-height: 70%; }
  .footer-main { text-align: center; }
}

@media (max-width: 360px) {
  .area-list {
    columns: 2;
    column-gap: 12px;
  }

  .area-list li {
    font-size: 0.85rem;
    line-height: 1.35;
    margin-bottom: 4px;
  }
}