:root {
  --brand-main: #2f4858;        /* deep blue-gray, original */
  --brand-deep: #1b2e3a;        /* super dark for text & nav */
  --accent-color: #f5b301;      /* primary yellow */
  
  --secondary-color: #ff6f61;   /* energetic coral */
  --tertiary-color: #4dd0e1;    /* bright cyan/turquoise */
  --highlight-color: #ffe082;   /* light golden highlight */
  
  --page-bg: #f5f5f6;
  --surface-bg: #ffffff;
  --text-main: #222222;
  --text-muted: #555555;
  
  --radius-base: 10px;
  --shadow-soft: 0 10px 24px rgba(0,0,0,0.08);
  --transition-fast: 0.25s ease;
  --shadow-elevated:
  0 1px 2px rgba(0,0,0,0.04),
  0 12px 30px rgba(0,0,0,0.06);
  
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--page-bg);
  color: var(--text-main);
  line-height: 1.75;
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.85; /* slightly more spacing for readability */
}

p, .section-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem); /* bigger min & max */
  line-height: 1.85;
}


/* Links */
a {
  color: var(--brand-main);
  text-decoration: none;
  font-weight: 600;
  
}


a:hover {
  text-decoration: none;
}

#link-alt-color {
  color:#ffffff;
}


/* Layout shell */
.shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

h1 {
  font-weight: 700;

}

h2 {
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 0.75rem; /* space below h2 */
}

h3 { 
  font-weight: 600;
  font-size: clamp(1.25rem, 2vw, 1.5rem); 
 }

 h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.02em;
}

p {

  font-weight: 400;
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.8;

}

main p a {
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 2px;
}

img {
  max-width: 100%;
  height: auto;
}


/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: #000;
  color: #fff;
  padding: 0.5rem 0.75rem;
  z-index: 1000;
}
.skip-link:focus {
  left: 0.75rem;
}

/* Top bar */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 900;
  background-color: #ffffff;
  border-bottom: 1px solid #e3e3e3;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: clamp(0.75rem, 2vw, 1.1rem);
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* aligns tagline with logo text */
}

.brand-block__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  color: var(--brand-deep);
}
.brand-block__tagline {
  margin: 0.15rem 0 0;
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  color: var(--text-muted);
}

.contact-block {
  text-align: right;
}
.contact-block__label {
  margin: 0;
  font-size: clamp(0.8rem, 1.3vw, 0.95rem);
  color: var(--text-muted);
}
.contact-block__phone {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--brand-deep);
}

.section h2 {
  color: var(--brand-deep);
}

.section h2 i {
  color: var(--accent-color);
}

/* Menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--brand-deep);
  cursor: pointer;
}

/* Nav */
.primary-nav {
  background-color: #f9fafb;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
}
.primary-nav__list {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  padding-block: clamp(0.5rem, 1.5vw, 0.8rem);
  margin: 0;
}
.primary-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--text-muted);
  border-radius: 999px;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  padding: 0.8rem 1rem;
}
.primary-nav__list a:hover,
.primary-nav__list a:focus-visible {
  background-color: rgba(47,72,88,0.08);
  color: var(--brand-deep);
}


.breadcrumb {
  font-size: 0.9rem;
  margin: 1rem 0;
  color: #555;
}

.breadcrumb-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.breadcrumb-list li::after {
  content: "/";
  margin: 0 0.5rem;
  color: #aaa;
}

.breadcrumb-list li:last-child::after {
  content: "";
}

.breadcrumb-list a {
  text-decoration: none;
  color: #2f4858;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
  color: var(--accent-color);
}


/* Trust strip */
.trust-strip {
  background: linear-gradient(
  to right,
  rgba(245,179,1,0.08),
  rgba(245,179,1,0.04)
);
  color: #222;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  padding-block: 0.6rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-strip strong {
  color: var(--brand-deep);
}

/* Hero */
.hero-section {
  background: linear-gradient(135deg, #2f4858 0%, #1b2e3a 100%);
  color: #ffffff;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  border-bottom: 4px solid var(--accent-color);
  
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.hero-grid__copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.5px;
}
.hero-grid__subtitle {
  margin-top: 0.75rem;
  max-width: 32rem;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.6;
}
.hero-grid__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.hero-grid__note {
  margin-top: 0.75rem;
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  opacity: 0.9;
}
.hero-grid__media img {
  width: 100%;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-soft);
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: clamp(0.7rem, 1.8vw, 1rem) clamp(1.2rem, 3vw, 2rem);
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  letter-spacing: 0.5px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), color var(--transition-fast);
}
.btn--primary {
   background: linear-gradient(135deg, #f5b301, #ffcc33);
  color: #111;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: 700;
  letter-spacing: 0.6px;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.25);
}

.btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}


.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}

/* Sections */
.section {
  padding-block: clamp(4rem, 7vw, 6rem);
}
.section--light {
  background-color: #ffffff;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.section--default {
  background-color: var(--page-bg);
}
.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin-top: 0;
}

.section-lead {
  max-width: 40rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--text-muted);

}



/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
}
.feature-card {
  background-color: var(--surface-bg);
  border-radius: var(--radius-base);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}

.feature-card p,
.service-box p,
.review-card blockquote {
  font-size: clamp(1.05rem, 1.4vw, 1.15rem); /* larger for content cards */
  line-height: 1.85;
}

.feature-card ul li {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
}
.service-box {
  position: relative;
  background-color: var(--surface-bg);
  border-radius: var(--radius-base);
  padding: 1.1rem 1.2rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  border-left: 4px solid var(--accent-color);
  background: #ffffff;
  transition: background 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  
}
.service-box h3 {
  margin-top: 0;
}
.service-box__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('/fonts/fa-solid-900.woff2') format('woff2');
  font-display: swap;
}


/* Reviews */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: 1.5rem;
}
.review-card {
  background-color: var(--surface-bg);
  border-radius: var(--radius-base);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.05);
  border-left: 4px solid var(--accent-color);
  background: #ffffff;
}
.service-box:hover,
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.review-card__stars {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: #f5b301;
  letter-spacing: 2px;
}
.review-card blockquote {
  margin: 0.25rem 0 0.75rem;
  font-style: italic;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #1b2e3a 0%, #14232c 100%);
  border-top: 4px solid var(--accent-color);
  border-bottom: 4px solid var(--accent-color);
  color: #ffffff;
  padding: clamp(2.25rem, 4vw, 3rem) 1.5rem;
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

/* Areas */
.area-list {
  columns: 2;
  column-gap: 2.5rem;
  padding-left: 1.2rem;
}

/* Gallery */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: 1.5rem;
}
.media-card {
  position: relative;
  border-radius: var(--radius-base);
  border: 2px solid rgba(0,0,0,0.05);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background-color: #000;
  aspect-ratio: 16 / 9;
}
.media-card img {
  width: 100%;
  height: 100%;              /* fill the card’s aspect ratio */
  display: block;
  object-fit: cover;         /* keeps images from stretching */
}

.media-card figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.media-card:hover figcaption {
  transform: translateY(0);
}

.media-card figcaption::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--accent-color);
  margin: 0.25rem auto 0;
  border-radius: 2px;
}

.media-card:hover {
  box-shadow: 0 10px 24px rgba(245, 179, 1, 0.4); /* accent-color shadow */
  transform: translateY(-4px);
}


/* Centered row */
.centered-row {
  margin-top: 1.5rem;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
  overflow-y: auto;
}
.lightbox[hidden] {
  display: none;
}
.lightbox--open {
  display: flex;
  flex-direction: column; /* stack close button, image, caption */
  padding: 1rem;
}

.lightbox__image {
  width: 100%;
  height: auto;
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;      /* show full image in modal */
  border-radius: var(--radius-base);
}


.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2.2rem;
  color: #ffffff;
  cursor: pointer;
}
.lightbox__caption {
  margin: 0.75rem;
  color: #ffffff;
  text-align: center;
  font-size: clamp(0.85rem, 3vw, 1rem);
}

/* Quote form */
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: flex-start;
}
.quote-form {
  background-color: var(--surface-bg);
  border-radius: var(--radius-base);
  padding: 1.2rem 1.3rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.field {
  margin-bottom: 0.9rem;
}
.field label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}
.field input,
.field textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 6px;
  border: 1px solid #cccccc;
  font: inherit;
}
.form-success {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--brand-deep);
}

/* Footer */
.site-footer {
  background: #111111;
  color: #dddddd;
  padding-block: 2.5rem 1.5rem;
}


.footer-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer-main p {
  margin: 0.25rem 0;
}
.footer-note {
  font-size: 0.85rem;
  color: #aaaaaa;
}
.footer-meta {
  align-self: flex-end;
  font-size: 0.85rem;
  color: #aaaaaa;
}
.back-top {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #bbbbbb;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease
}

.site-footer a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.site-footer .footer-main p a:hover {
  color: var(--accent-color, #f5b301); /* your accent color */
  transform: translateY(-2px); /* subtle lift on hover */
}

/* Hero fade & slide */
.hero-grid__copy {
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeIn 0.6s ease forwards;
  
}

.hero-grid__media img {
  opacity: 0;
  transform: translateX(50px);
  animation: slideFadeIn 1s forwards;
  animation-delay: 0.5s;
}

@keyframes slideFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


.feature-card {
  border-top: 4px solid var(--accent-color);
  background: #ffffff;
  transition: transform 0.4s, box-shadow 0.4s, background 0.4s;
  opacity: 0;
}
.feature-card.visible {
  transform: translateY(0);
  opacity: 1;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  background: #ffffff;
}

.feature-card,
.service-box,
.review-card {
  padding: 1.5rem 1.6rem;
  border-radius: var(--radius-base);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 0.4s, box-shadow 0.4s;
}

.feature-card p,
.service-box p,
.review-card blockquote {
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.section + .section {
  margin-top: 2rem;
}

.hero-trust {
  text-align: center;
}

.brand-block__logo .brand-logo {
  width: 60px; /* adjust size to fit nicely */
  height: auto;
  display: block;
   transform: scaleX(-1);
}


@media (prefers-reduced-motion: reduce) {
  .hero-grid__copy,
  .hero-grid__media img {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Responsive */
@media (min-width: 1200px) {
  .media-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; /* more breathing room */
      justify-content: center; /* centers the cards if row not full */
  }

  .media-card {
    aspect-ratio: 16 / 9;
  }
}



@media (max-width: 780px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  
  .area-list {
    columns: 1;
    padding: 0;
    list-style: none;
  }

  .area-list li::before {
    content: "• ";
    color: var(--accent-color);
  }

  .area-list li {
  margin-bottom: 0.6rem;
  }

  .section,
.hero-section,
.footer-main {
  text-align: center;
  text-wrap: balance;
}

.section-lead {
    margin: 0.75rem auto 0;
  text-align: center;
}


  .footer-shell {
    justify-content: center;
  }

  .hero-grid__subtitle {
    margin: 0.75rem auto 0;
  }

  .hero-grid__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-grid__actions {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero-grid__actions .btn {
    width: 100%;
    max-width: 300px; /* optional to prevent too wide */
    text-align: center;
  }


  .hero-grid__media img,
  .media-card img {
    height: auto;
    object-fit: cover;
  }

   .brand-block__logo .brand-logo {
  
  height: auto;
  display: block;
    transform: scaleX(-1);
    text-wrap: balance;
  }


}


@media (max-width: 720px) {
  .primary-nav {
    display: none;
  }
  .primary-nav.primary-nav--open {
    display: block;
  }
  .primary-nav__list {
    flex-direction: column;
     padding-left: 0;     /* removes default 40px browser padding */
    margin: 0;
  }

  .primary-nav__list a {
    display: block;
    width: 100%;
  }
  
  .menu-toggle {
    display: inline-block;
  }
  
  
  
}

@media (max-width: 520px) {
  .top-bar__inner {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .contact-block {
    text-align: left;
  }

  
}

