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

:root {
  --gold: #f9a825;
  --gold-dark: #e6910a;
  --gold-light: #ffc107;
  --dark-navy: #0a1d37;
  --dark-nav: #081629;
  --dark-2: #162433;
  --text-dark: #1a1a2e;
  --text-muted: #666;
  --light-bg: #f4f5f7;
  --white: #fff;
  --border: #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

/* ===================================================
   SITE HEADER — Byron WordPress Theme Style
   =================================================== */

/* Header wrapper */
#site-header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

#site-header {
  max-width: 1170px;
  margin: 0 auto;
  margin-top: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.header-container {
  width: 100%;
}

/* ---- Top row: logo | info | button ---- */
.site-header-inner {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  gap: 15px;
  background: #fff;
}

/* Logo */
#site-logo {
  flex-shrink: 0;
}

#site-logo-inner {
  max-width: 160px;
  display: flex;
  align-items: center;
}

#site-logo-inner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Header info blocks */
.header-info {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.header-info .content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px 0 45px;
  border-left: 1px solid #eee;
  line-height: 1.4;
  position: relative;
}

.header-info .content-wrap:nth-child(1)::before { content: '\f095'; } /* phone */
.header-info .content-wrap:nth-child(2)::before { content: '\f0e0'; } /* envelope */
.header-info .content-wrap:nth-child(3)::before { content: '\f3c5'; } /* map-marker-alt */

.header-info .content-wrap::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.4rem;
}

.header-info .content-wrap:last-child {
  border-right: 1px solid #eee;
}

.header-info .prefix {
  font-size: 0.68rem;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
  display: block;
  margin-left: 0;
}

.header-info .content {
  font-size: 0.75rem;
  color: var(--dark-navy);
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  white-space: normal;
  word-break: break-all;
  margin-left: 0;
}

.header-info .email.content {
  font-size: 0.78rem;
}

/* Get Quote button */
.header-button {
  flex-shrink: 0;
  margin-left: auto;
}

.header-button a {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 32px;
  letter-spacing: 0.4px;
  transition: all 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.header-button a:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ---- Bottom row: nav ---- */
.wrap-inner {
  background: var(--dark-navy);
  display: flex;
  align-items: stretch;
  border-radius: 0 0 10px 10px;
  padding: 0 20px;
  transition: all 0.3s ease;
}

.wrap-inner.is-sticky {
  position: fixed;
  top: 0;
  width: 1170px;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
}

.main-nav {
  display: flex;
  align-items: stretch;
}

.main-nav .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.main-nav .menu li {
  display: flex;
  align-items: stretch;
}

.main-nav .menu li a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 22px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  height: 56px;
  transition: all 0.3s;
  border-bottom: 4px solid transparent;
  text-decoration: none;
}

.main-nav .menu li a span {
  pointer-events: none;
}

.main-nav .menu li a:hover,
.main-nav .menu li.current-menu-item a {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(255, 255, 255, 0.04);
}

/* Search trigger in header */
.header-search-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.header-search-trigger {
  color: #fff;
  display: flex;
  align-items: center;
  transition: color 0.3s;
}

.header-search-trigger:hover {
  color: var(--gold);
}

.header-search-trigger svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* Mobile nav button hidden on desktop */
.mobile-button {
  display: none !important;
}

/* --- Legacy classes still used by other pages --- */
.btn-get-quote {
  display: inline-block;
  background: var(--gold);
  color: #fff !important;
  border: none;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  padding: 13px 30px;
  font-size: 0.9rem;
  transition: all 0.3s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-get-quote:hover {
  background: var(--gold-dark);
  color: #fff;
}

/* ===== OLD DARK NAVBAR (Bootstrap) — kept for pages not yet migrated ===== */
.main-navbar {
  background: var(--dark-nav);
  padding: 0;
}

.main-navbar .navbar-nav .nav-link {
  color: #fff !important;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0 20px !important;
  height: 56px;
  display: flex !important;
  align-items: center;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.main-navbar .navbar-nav .nav-link:hover,
.main-navbar .navbar-nav .nav-link.active {
  color: var(--gold) !important;
  border-bottom-color: var(--gold);
}

.navbar-search-btn {
  color: #fff;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 18px 16px;
}

.navbar-search-btn:hover {
  color: var(--gold);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ===================================================
   HERO SLIDER
   =================================================== */
.hero-slider-section {
  position: relative;
  height: 800px; /* Match original slider height */
  margin-top: 0; /* Changed from -60px since header is absolute */
}

/* ===================================================
   INTERNAL PAGE HERO
   =================================================== */
/* ===================================================
   INTERNAL PAGE HERO
   =================================================== */
.page-hero {
  position: relative;
  background: #f8f9fa; /* Exact light grey background from live site */
  padding-top: 133px; /* Exact top padding */
  padding-bottom: 93px; /* Exact bottom padding */
  text-align: center;
  color: #222;
  margin-top: 180px; /* Offset for the absolute header to prevent overlap */
}

/* Remove overlay since we use solid background now */
.page-hero::before {
  display: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Barlow', sans-serif;
  font-size: 34px;
  line-height: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.page-hero .title-underline {
  width: 70px;
  height: 5px;
  background: #f5ad0d;
  margin: 0 auto 36px auto;
}

.page-hero .breadcrumb {
  justify-content: center;
  background: transparent;
  padding: 0;
  margin: 0;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.page-hero .breadcrumb-item a {
  color: #222;
  text-decoration: none;
  transition: color 0.3s;
}

.page-hero .breadcrumb-item a:hover {
  color: #f5ad0d;
}

.page-hero .breadcrumb-item.active {
  color: #222;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #222;
  padding: 0 10px;
}



@media(max-width:991px) {
  .hero-slider-section {
    height: 600px;
    margin-top: 0;
  }
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-tagline {
  color: var(--gold);
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
}

.hero-title {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  opacity: 0;
}

.hero-subtitle {
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0;
}

.btn-hero:hover {
  background: #030f27;
  color: #fff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-up {
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Swiper Nav */
.swiper-button-next, .swiper-button-prev {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 1.2rem;
}

/* ===== SERVICES LIST SECTION ===== */
.services-list-section {
  padding: 80px 0;
  background: #fff;
}

.services-list-section .section-subtitle {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-list-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.services-list-section .lead-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.services-list-section .free-estimate {
  color: var(--gold);
  font-weight: 600;
}

.services-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.services-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.check-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.btn-our-services {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  padding: 12px 28px;
  font-size: 0.9rem;
  display: inline-block;
  transition: all 0.3s;
  width: auto;
}

.btn-our-services:hover {
  background: var(--gold-dark);
  color: #fff;
}

.services-images-col {
  position: relative;
}

.services-img-main {
  width: 60%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.services-img-secondary {
  width: 55%;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: absolute;
  bottom: -30px;
  right: 0;
  z-index: 3;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600'%3E%3Cg fill='none' stroke='%23ccc' stroke-width='1' opacity='0.4'%3E%3Crect x='50' y='50' width='300' height='400'/%3E%3Crect x='100' y='100' width='200' height='300'/%3E%3Cline x1='50' y1='250' x2='350' y2='250'/%3E%3Cline x1='200' y1='50' x2='200' y2='450'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
  opacity: 0.3;
}

.how-it-works .step-num-bg {
  font-family: 'Jost', sans-serif;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.step-item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 10px 0;
}

.step-circle {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(230, 168, 23, 0.35);
}

.step-number {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
}

.step-title {
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* ===== ABOUT / Anasora SECTION ===== */
.about-section {
  background: var(--dark-navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.about-image-col {
  position: relative;
}

.about-worker-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}

.about-play-btn:hover {
  background: var(--gold);
  color: #fff;
}

.about-content-col {
  padding: 80px 60px 80px 50px;
  position: relative;
  z-index: 2;
}

.about-tagline {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #fff;
  margin-bottom: 28px;
}

.about-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-bottom: 3px solid transparent;
  color: rgb(26 26 26 / 60%);
  padding: 14px 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.about-tab-btn.active,
.about-tab-btn:hover {
  color: #000;
  border-bottom-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.about-tab-content {
  margin-top: 0;
}

.about-tab-pane {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
}

.about-tab-pane.active {
  display: block;
}

.about-tab-pane p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.9;
  margin: 0;
}

/* ===== SERVICES CARDS DARK ===== */
.services-cards-section {
  background: var(--dark-2);
  padding: 90px 0;
}

.section-badge-gold {
  display: inline-block;
  background: rgba(230, 168, 23, 0.15);
  color: var(--gold);
  padding: 5px 16px;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.services-cards-section h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.service-card-dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 28px 22px;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-dark:hover {
  background: rgba(230, 168, 23, 0.1);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.service-icon-gold {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-card-dark h5 {
  color: #fff;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.service-card-dark p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

.service-link-gold {
  color: var(--gold);
  font-size: 0.83rem;
  font-weight: 600;
  margin-top: auto;
}

.service-link-gold:hover {
  color: var(--gold-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
  position: relative;
  padding: 90px 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.82);
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 1;
  font-size: 1rem;
  margin: 12px 0 28px;
}

.btn-cta-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  padding: 14px 36px;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: all 0.3s;
}

.btn-cta-gold:hover {
  background: var(--gold-dark);
  color: #fff;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
  padding: 90px 0;
  background: #fff;
}

.projects-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
}

.project-card-item {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.project-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.project-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.project-card-item:hover .project-img-wrap img {
  transform: scale(1.05);
}

.project-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s;
}

.project-card-item:hover .project-img-overlay {
  opacity: 1;
}

.project-read-more {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  border: 2px solid #fff;
  padding: 10px 24px;
  border-radius: 4px;
}

.project-info-bar {
  background: var(--dark-navy);
  padding: 16px 20px;
}

.project-info-bar h6 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0;
  font-family: 'Jost', sans-serif;
}

.project-tag-gold {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ===================================================
   FOOTER (Original Theme Match)
   =================================================== */
.main-footer {
  background: #0d1b2a;
  color: #8c98a4;
  padding: 80px 0 0 0;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  line-height: 1.8;
}

.footer-heading {
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer-desc {
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #8c98a4;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-links li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-contact-links li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer-contact-links i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 5px;
}

.footer-contact-links a,
.footer-contact-links span {
  color: #8c98a4;
  text-decoration: none;
}

.footer-contact-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  margin-top: 50px;
  padding: 16px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.83rem;
  margin: 0;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') center/cover no-repeat;
  position: relative;
  padding: 90px 0 50px;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
}

.page-hero .inner {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 12px;
}

.page-hero .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumb-item.active {
  color: var(--gold);
}

.page-hero .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== ABOUT PAGE ===== */
.stats-bar {
  background: var(--gold);
  padding: 36px 0;
}

.stats-bar .stat-num {
  font-family: 'Jost', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}

.stats-bar .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.feature-check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.feature-check-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.feature-check-title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.feature-check-desc {
  color: var(--text-muted);
  font-size: 0.83rem;
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-detail-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-detail-card .svc-icon {
  width: 54px;
  height: 54px;
  min-width: 54px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-detail-card h5 {
  font-size: 0.98rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.service-detail-card p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 1;
}

.btn-quote-outline {
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 8px 18px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-block;
  transition: all 0.3s;
  margin-top: auto;
}

.btn-quote-outline:hover {
  background: var(--gold);
  color: #fff;
}

/* ===== CONTACT PAGE ===== */
.contact-info-wrap {
  background: var(--dark-navy);
  border-radius: 8px;
  padding: 40px;
  height: 100%;
}

.contact-icon-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-icon-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-icon-val {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Jost', sans-serif;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.form-field {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: all 0.3s;
  background: #fafafa;
}

.form-field:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(230, 168, 23, 0.15);
  background: #fff;
}

.form-label {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 6px;
  display: block;
}

.btn-submit-gold {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 14px 36px;
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-gold:hover {
  background: var(--gold-dark);
}

/* SECTION COMMON */
.section-pad {
  padding: 90px 0;
}

.section-title-dark {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--text-dark);
}

.section-subtitle-gold {
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ===================================================
   RESPONSIVE DESIGN
   =================================================== */
@media(max-width:1199px) {
  .header-info .content-wrap { padding: 0 15px; }
  .main-nav .menu li a { padding: 0 15px; }
}

.mobile-menu-toggle { display: none; }

@media(max-width:991px) {
  #site-header-wrap { position: fixed; background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
  #site-header { margin: 0; width: 100%; border-radius: 0; box-shadow: none; overflow: visible; }
  .site-header-inner { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; flex-wrap: nowrap; background: #fff; }
  .header-info, .header-button { display: none !important; }
  
  #site-logo-inner { max-width: 180px; }
  
  .mobile-menu-toggle { display: block; color: #333; font-size: 1.6rem; cursor: pointer; padding: 5px; border: none; background: transparent; }
  
  .wrap-inner { display: none; padding: 0; flex-direction: column; overflow: visible; border-radius: 0; background: #fff; position: absolute; width: 100%; top: 100%; left: 0; box-shadow: 0 10px 15px rgba(0,0,0,0.1); }
  .wrap-inner.active { display: flex; }
  .wrap-inner.is-sticky { width: 100%; left: 0; position: absolute; top: 100%; }
  .main-nav { display: none; width: 100%; }
  .main-nav.active { display: block; }
  .main-nav .menu { flex-direction: column; flex-wrap: wrap; padding: 0; margin: 0; }
  .main-nav .menu li a { white-space: normal; padding: 14px 20px; border-bottom: 1px solid #eee; height: auto; font-size: 0.95rem; color: var(--dark-navy); }
  .main-nav .menu li a:hover, .main-nav .menu li.current-menu-item a { background: #f9f9f9; color: var(--gold); border-bottom-color: #eee; }
  .main-nav .menu li:last-child a { border-bottom: none; }
  .header-search-wrap { display: none; }
  
  .about-content-col { padding: 50px 30px; }
  .services-images-col img:nth-child(2) { display: none !important; }
  .about-worker-img { height: 350px; }
  .services-img-main { width: 100% !important; }
  
  .page-hero { margin-top: 80px; }
  .hero-slider-section { margin-top: 0; }
}

@media(max-width:767px) {
  .section-pad { padding: 60px 0; }
  .hero-slider-section { height: auto; min-height: 500px; margin-top: 0; }
  .hero-content { padding: 120px 0 80px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .btn-hero { padding: 12px 24px; font-size: 1rem; }
  
  .page-hero { padding-top: 60px; padding-bottom: 60px; margin-top: 70px; }
  .page-hero h1 { font-size: 28px; line-height: 36px; }
  
  .about-content-col { padding: 40px 20px; }
  .contact-info-wrap, .contact-form-wrap { padding: 28px 20px; }
  .about-tabs, .d-flex.border-bottom { flex-wrap: wrap; }
  .about-tab-btn { flex: 1 1 100% !important; text-align: center; }
  .services-checklist { grid-template-columns: 1fr; }
  .step-item { flex-direction: column; text-align: center; align-items: center; }
  .step-desc { margin-top: 10px; }
  .how-it-works .step-num-bg { display: none; }
  .footer-contact-links li { flex-direction: column; align-items: flex-start; text-align: left; }
  
  #site-logo-inner { max-width: 150px; }
}

@media(max-width:575px) {
  .header-info .content-wrap { flex-direction: column; }
  .header-info .content-wrap::before { margin-right: 0; margin-bottom: 5px; }
}