/* ==========================================================================
   Iron Ridge Roofing — Global Stylesheet
   Built Strong. Protecting What Matters.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour */
  --ink:        #10100f;
  --charcoal:   #1b1b19;
  --charcoal-2: #222220;
  --charcoal-3: #2c2c29;
  --paper:      #faf8f3;
  --cream:      #f3f0e9;
  --gold:       #d5a83f;
  --gold-light: #e8c876;
  --gold-deep:  #a77b16;
  --line:       #ded8cc;
  --line-dark:  #3a3a36;
  --muted:      #68655f;
  --muted-dark: #a5a29a;
  --white:      #ffffff;

  /* Type */
  --font-body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;

  /* Layout */
  --shell: 1360px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --gutter: 64px;

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 700; }

::selection { background: var(--gold); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--gold);
  color: var(--ink);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 13px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.shell {
  width: min(var(--shell), calc(100% - var(--gutter)));
  margin-inline: auto;
}

.section { padding: 110px 0; }
.section--tight { padding: 80px 0; }

.kicker,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11.5px;
  font-weight: 700;
}
.kicker {
  color: var(--gold-deep);
  display: block;
  margin-bottom: 18px;
}
.kicker--light { color: var(--gold); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #dcd9d3;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.h-xl {
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 700;
}
.h-lg {
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: 1.0;
  letter-spacing: -.04em;
  font-weight: 700;
}
.h-md {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -.025em;
}
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -.01em;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 58ch;
}
.lead--light { color: var(--muted-dark); }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 54px;
}
.section-heading > p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
  margin: 0;
  flex: 0 1 420px;
}
.section-heading--light > p { color: var(--muted-dark); }
.section-heading h2 { margin: 0; }

/* --------------------------------------------------------------------------
   4. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.btn:hover { transform: translateY(-2px); }

.btn--gold  { background: var(--gold); color: var(--ink); }
.btn--gold:hover  { background: var(--gold-light); box-shadow: 0 12px 28px -12px rgba(213,168,63,.75); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--cream); }
.btn--dark  { background: var(--charcoal); color: var(--white); }
.btn--dark:hover  { background: #000; box-shadow: 0 12px 28px -14px rgba(0,0,0,.6); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--outline:hover { border-color: var(--ink); }
.btn--block { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid rgba(0,0,0,.28);
  padding-bottom: 8px;
  transition: gap .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.text-link svg { width: 17px; height: 17px; }
.text-link:hover { gap: 18px; border-color: var(--gold); color: var(--gold-deep); }
.text-link--light { border-color: rgba(255,255,255,.4); color: #fff; }
.text-link--light:hover { color: var(--gold); }

/* Arrow / utility icon defaults */
.i-arrow { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* --------------------------------------------------------------------------
   5. Service icon sprite defaults
   -------------------------------------------------------------------------- */
.icon {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 15px; height: 15px; stroke-width: 1.7; }
.icon--md { width: 26px; height: 26px; stroke-width: 1.55; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--ink);
  color: #b9b6ae;
  font-size: 12px;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 42px;
}
.topbar__list { display: flex; gap: 26px; align-items: center; }
.topbar__list li { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.topbar__list svg { width: 16px; height: 16px; flex: 0 0 auto; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.topbar a:hover { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgb(250 248 243);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-header--float { position: sticky; }
.site-header.is-stuck {
  position: fixed;
  background: rgba(16,16,15,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: dropIn .35s var(--ease);
}
@keyframes dropIn { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav {
  height: 119px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 195px; height: auto; }

.nav__links {
  display: flex;
  gap: 34px;
  margin-left: auto;
  font-size: 16px;
  font-weight: 600;
  color: #d8d5cf;
}
.nav__links a { 
  position: relative; 
  padding: 6px 0; 
  transition: color .2s var(--ease); 
  color: #1b1b19;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .28s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }

.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1b1b19;
  font-weight: 800;
  font-size: 22px;
}
.nav__phone svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.nav__phone:hover { color: var(--gold); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.3);
  background: #000;
  border-radius: 4px;
  margin-left: auto;
  padding: 0;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 13px;
  width: 20px; height: 1.6px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle span:nth-child(1) { top: 17px; }
.nav__toggle span:nth-child(2) { top: 22.5px; }
.nav__toggle span:nth-child(3) { top: 28px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 12px 0 26px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: #e6e3dd;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.6; }
.mobile-menu .btn { margin-top: 22px; }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  margin: 5px 16px 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  background: var(--charcoal);
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(96deg, rgba(6,6,5,.95) 0%, rgba(6,6,5,.72) 44%, rgba(6,6,5,.15) 78%),
    linear-gradient(180deg, rgba(0,0,0,.55) 0%, transparent 32%, rgba(0,0,0,.68) 100%),
    url("../assets/roof-hero.jpg");
  background-size: cover, cover, cover;
  background-position: center, center, 62% center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(122deg, rgba(213,168,63,.09), transparent 42%);
  pointer-events: none;
}

.hero--home { min-height: 880px; display: flex; flex-direction: column; }
.hero__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px 0 240px;
}
.hero h1 { margin: 26px 0 28px; max-width: 15ch; }
.hero__body > p {
  max-width: 600px;
  color: #d5d3ce;
  font-size: 17.5px;
  line-height: 1.72;
  margin: 0;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-trust {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(20,20,18,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  overflow: hidden;
}
.hero-trust > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 30px;
  border-right: 1px solid rgba(255,255,255,.13);
}
.hero-trust > div:last-child { border-right: 0; }
.hero-trust strong { font-size: 30px; color: var(--gold); line-height: 1; font-family: var(--font-display); }
.hero-trust span { font-size: 11.5px; line-height: 1.5; color: #c7c4bd; }
.hero-trust .stars { color: var(--gold); letter-spacing: 4px; font-size: 13px; }
.hero-trust .is-stack { flex-direction: column; align-items: flex-start; gap: 6px; }

/* Inner page hero */
.hero--page { min-height: 440px; display: block; }
.hero--page .hero__body { display: block; flex: none; }
.hero--page .hero__body { padding: 104px 0 78px; }
.hero--page h1 { font-size: clamp(42px, 5.4vw, 78px); margin-bottom: 20px; }
.hero--page .hero__body > p { max-width: 620px; font-size: 16.5px; }

.crumbs {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #b2afa8;
  margin-top: 26px;
}
.crumbs a:hover { color: var(--gold); }
.crumbs span { color: #6e6b64; }

/* --------------------------------------------------------------------------
   8. Intro / about split
   -------------------------------------------------------------------------- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr .78fr;
  gap: 40px;
  align-items: stretch;
}
.intro__copy p { color: var(--muted); line-height: 1.78; max-width: 46ch; }
.intro__copy .btn { margin-top: 26px; }

.figure {
  position: relative;
  min-height: 540px;
  border-radius: 24px;
  overflow: hidden;
  background: #35342f;
}
.figure img { width: 100%; height: 100%; object-fit: cover; }
.figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.42), transparent 55%);
}

.badge-float {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  padding: 18px 24px;
  background: var(--cream);
  border-radius: 15px;
  color: var(--ink);
  display: flex;
  gap: 15px;
  align-items: center;
  width: 91%;
  right: 20px;
}

.badge-float strong { 
  font-size: 38px; 
  color: var(--gold-deep); 
  font-family: var(--font-display); 
  line-height: 1; 
  font-weight: 900;
}

.badge-float span { 
  font-size: 15px; 
  line-height: 1.55; 
  letter-spacing: .06em; 
}

.why-list { display: flex; flex-direction: column; gap: 12px; }
.why-list article {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 31px 38px;
  display: flex;
  gap: 18px;
  background: var(--white);
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.why-list article:hover { border-color: var(--gold); transform: translateY(-3px); }
.why-list .num { 
  display: none;
  color: var(--gold-deep);
  font-size: 28px;
  font-weight: 700;
  position: relative;
  margin-top: -6px;
}
.why-list h3 { margin: 0 0 9px; font-size: 17px; letter-spacing: -.01em; }
.why-list p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.65; }

/* --------------------------------------------------------------------------
   9. Feature cards (core services)
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-card {
  position: relative;
  min-height: 340px;
  border-radius: var(--radius-md);
  background: var(--charcoal);
  color: #fff;
  padding: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -40% -60% auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(213,168,63,.18), transparent 70%);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card:hover::before { opacity: 1; }
.feature-card--gold { background: var(--gold-deep); color: var(--ink); }
.feature-card--gold .icon { stroke: var(--ink); }
.feature-card--gold p { color: #2e2308; }
.feature-card--gold .feature-card__link { border-color: rgba(0,0,0,.25); }
.feature-card--gold .card-num { color: #4b3a14; }

.card-num { position: absolute; right: 24px; top: 24px; font-size: 11px; color: #8e8b83; font-weight: 700; }
.feature-card .icon { margin: 42px 0 32px; width: 46px; height: 46px; }
.feature-card h3 { font-size: 22px; margin: 0 0 12px; letter-spacing: -.02em; }
.feature-card p { font-size: 13.5px; line-height: 1.65; color: #a8a59e; margin: 0; }
.feature-card__link {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  transition: gap .25s var(--ease);
}
.feature-card__link svg { width: 17px; height: 17px; }

/* --------------------------------------------------------------------------
   10. Dark service catalogue
   -------------------------------------------------------------------------- */
.panel-dark {
  background: #171715;
  color: #fff;
  margin: 40px 16px;
  border-radius: var(--radius-lg);
  padding: 105px 0;
}
.panel-dark--flush { margin: 0 16px; }

.service-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}
.service-group {
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  padding: 30px;
}
.service-group__head {
  display: grid;
  grid-template-columns: 34px 58px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 24px;
  margin-bottom: 6px;
}
.service-group__head .num { font-size: 11px; color: #8f8a7d; font-weight: 700; }
.service-group__head .icon { width: 40px; height: 40px; }
.service-group__head h3 { font-size: 22px; margin: 0; letter-spacing: -.02em; }

.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13.5px;
  color: #c9c6bf;
  transition: color .2s var(--ease);
}
.service-list li:hover { color: #fff; }
.service-list li:hover .mini-icon { border-color: var(--gold); background: rgba(213,168,63,.12); }
.mini-icon {
  width: 30px; height: 30px;
  border: 1px solid #4b4b45;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.mini-icon .icon { width: 15px; height: 15px; }

/* Detailed service cards (services page) */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-tile {
  background: var(--charcoal-2);
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.service-tile:hover { border-color: var(--gold); transform: translateY(-4px); background: #272724; }
.service-tile .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 15px;
  background: rgba(213,168,63,.1);
  border: 1px solid rgba(213,168,63,.25);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-tile .icon { width: 27px; height: 27px; }
.service-tile h3 { font-size: 17px; margin: 0 0 10px; letter-spacing: -.015em; }
.service-tile p { margin: 0; font-size: 13.5px; line-height: 1.68; color: #a5a29a; }

/* Light variant used on the light-background sections */
.service-tile--light {
  background: var(--white);
  border-color: var(--line);
}
.service-tile--light:hover { background: var(--white); border-color: var(--gold); }
.service-tile--light h3 { color: var(--ink); }
.service-tile--light p { color: var(--muted); }

/* --------------------------------------------------------------------------
   11. Process
   -------------------------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.process-grid article {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  margin-left: -1px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.process-grid article:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); margin-left: 0; }
.process-grid article:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.process-grid article:hover { background: var(--cream); z-index: 2; }
.process-grid .num { font-size: 18px; color: var(--gold-deep); font-weight: 700; }
.process-grid h3 { font-size: 20px; margin: 0 0 12px; letter-spacing: -.02em; }
.process-grid p { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin: 0; }
.process-grid .step-arrow {
  position: absolute;
  right: 22px; top: 28px;
  width: 18px; height: 18px;
  stroke: #b6b2a9;
  fill: none;
  stroke-width: 1.6;
}
.step-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #f1ead9;
  display: grid;
  place-items: center;
  margin: 46px 0 24px;
}
.step-icon .icon { width: 28px; height: 28px; }

/* --------------------------------------------------------------------------
   12. Proof / split feature band
   -------------------------------------------------------------------------- */
.proof {
  margin: 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #171715;
  color: #fff;
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  min-height: 700px;
}
.proof__media { position: relative; overflow: hidden; }
.proof__media img { width: 100%; height: 100%; object-fit: cover; }
.proof__copy { padding: 78px 70px; align-self: center; }
.proof__copy h2 { margin: 0 0 22px; }
.proof__copy > p { color: var(--muted-dark); line-height: 1.75; margin: 0; }
.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 32px 0;
  border-block: 1px solid var(--line-dark);
}
.proof-stats > div { display: flex; gap: 14px; align-items: center; padding: 22px 0; }
.proof-stats strong { font-size: 32px; color: var(--gold); font-family: var(--font-display); line-height: 1; }
.proof-stats span { font-size: 10.5px; text-transform: uppercase; line-height: 1.55; color: #a5a29a; letter-spacing: .06em; }

.check-list li {
  padding: 11px 0;
  color: #c9c6bf;
  font-size: 14px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.check-list svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; flex: 0 0 auto; margin-top: 3px; }
.check-list--dark li { color: var(--muted); }
.proof__copy .btn { margin-top: 30px; }

/* --------------------------------------------------------------------------
   13. Values / credentials grid
   -------------------------------------------------------------------------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.value-card .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: #f1ead9;
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.value-card .icon { width: 27px; height: 27px; stroke: var(--gold-deep); }
.value-card h3 { font-size: 19px; margin: 0 0 11px; letter-spacing: -.02em; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-strip > div {
  padding: 36px 30px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-strip > div:last-child { border-right: 0; }
.stat-strip strong { display: block; font-size: 42px; color: var(--gold); font-family: var(--font-display); line-height: 1; margin-bottom: 10px; }
.stat-strip span { font-size: 12px; color: #a5a29a; text-transform: uppercase; letter-spacing: .08em; line-height: 1.5; }

/* Placeholder gallery blocks */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #e7e2d7;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,.6);
}
.gallery-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.5), transparent 55%);
}
/* placeholder styling — swap the inner div for an <img> when photos are ready */
.gallery-item--placeholder {
  display: grid;
  place-items: center;
  border: 1px dashed #bdb7a9;
  background:
    repeating-linear-gradient(45deg, #efeade 0 12px, #e8e2d4 12px 24px);
}
.gallery-item--placeholder::after { display: none; }
.gallery-item--placeholder .ph {
  text-align: center;
  color: #8a8478;
  padding: 20px;
}
.gallery-item--placeholder .ph svg { width: 34px; height: 34px; stroke: #a79f8d; fill: none; stroke-width: 1.4; margin: 0 auto 12px; }
.gallery-item--placeholder .ph strong { display: block; font-size: 13px; color: #6f6a5f; margin-bottom: 5px; }
.gallery-item--placeholder .ph span { font-size: 11.5px; letter-spacing: .04em; }

/* --------------------------------------------------------------------------
   14. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.faq__title p { color: var(--muted); line-height: 1.75; }
.faq__title a { color: var(--gold-deep); font-weight: 700; }
.faq__list details { border-top: 1px solid var(--line); }
.faq__list details:last-child { border-bottom: 1px solid var(--line); }
.faq__list summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 46px 1fr 30px;
  align-items: center;
  padding: 24px 0;
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  transition: color .2s var(--ease);
}
.faq__list summary:hover { color: var(--gold-deep); }
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary .num { font-size: 14px; color: var(--gold-deep); font-weight: 700; }
.faq__list summary .plus {
  font-size: 22px;
  font-weight: 400;
  justify-self: end;
  transition: transform .25s var(--ease);
  line-height: 1;
}
.faq__list details[open] summary .plus { transform: rotate(45deg); }
.faq__list details p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0 40px 26px 46px;
}

/* --------------------------------------------------------------------------
   15. CTA band + contact
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  margin: 0 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: #fff;
  padding: 96px 0;
  text-align: center;
  isolation: isolate;
}
.cta-band__media {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(180deg, rgba(8,8,7,.86), rgba(8,8,7,.9)),
    url("../assets/roof-band.jpg");
  background-size: cover;
  background-position: center;
}
.cta-band h2 { margin: 20px auto 20px; max-width: 18ch; }
.cta-band p { color: var(--muted-dark); max-width: 56ch; margin: 0 auto; line-height: 1.75; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.contact-band {
  background: linear-gradient(112deg, #b58722, #e2ba52);
  border-radius: 26px;
  padding: 66px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: end;
}
.contact-band .kicker { color: #3b2c0d; }
.contact-band h2 { margin: 0 0 18px; }
.contact-band p { color: #4d3b13; margin: 0; max-width: 40ch; line-height: 1.7; }
.contact-options { display: grid; gap: 12px; }
.contact-options a {
  background: var(--charcoal);
  color: #fff;
  border-radius: 15px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.contact-options a:hover { transform: translateX(4px); background: #000; }
.contact-options span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; color: #a5a29a; grid-column: 1; }
.contact-options strong { font-size: 17px; margin-top: 6px; grid-column: 1; word-break: break-word; }
.contact-options svg { grid-column: 2; grid-row: 1 / 3; width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; }

/* --------------------------------------------------------------------------
   16. Contact page — form + info
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-card h2 { font-size: 30px; letter-spacing: -.025em; margin: 0 0 10px; }
.form-card > p { color: var(--muted); font-size: 14.5px; margin: 0 0 30px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; color: #55524c; }
.field label .req { color: #c0392b; }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2368655f' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 17px; padding-right: 42px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(213,168,63,.18);
}
.error-msg { font-size: 12px; color: #c0392b; font-weight: 600; display: none; }
.error-msg.is-shown { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0392b; background: #fdf5f4; }
.field.has-error .error-msg { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; grid-column: 1 / -1; margin-top: 4px; }
.consent input { width: 18px; height: 18px; accent-color: var(--gold-deep); margin-top: 2px; flex: 0 0 auto; }
.consent label { font-size: 12.5px; color: var(--muted); line-height: 1.6; text-transform: none; letter-spacing: 0; font-weight: 400; }

.form-note { font-size: 12px; color: var(--muted); margin: 16px 0 0; line-height: 1.6; }

.form-success {
  display: none;
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 14px;
  background: #f0f7ef;
  border: 1px solid #bcd9b8;
  color: #2f5c2a;
  font-size: 14px;
  line-height: 1.6;
}
.form-success.is-visible { display: block; }
.form-success strong { display: block; margin-bottom: 4px; font-size: 15px; }

.info-stack { display: grid; gap: 12px; }
.info-card {
  background: var(--charcoal);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
}
.info-card h3 { font-size: 18px; margin: 0 0 20px; letter-spacing: -.02em; }
.info-row { display: flex; gap: 16px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.11); }
.info-row:first-of-type { border-top: 0; padding-top: 0; }
.info-row .icon-wrap {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(213,168,63,.12);
  border: 1px solid rgba(213,168,63,.28);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.info-row .icon { width: 18px; height: 18px; }
.info-row span { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; color: #a5a29a; margin-bottom: 5px; }
.info-row strong { font-size: 15px; font-weight: 700; word-break: break-word; }
.info-row a:hover { color: var(--gold); }

.info-card--gold { background: linear-gradient(120deg, #b58722, #e2ba52); color: var(--ink); }
.info-card--gold h3 { color: var(--ink); }
.info-card--gold p { font-size: 14px; color: #3d2f0e; line-height: 1.7; margin: 0 0 20px; }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 300px;
  background: #e7e2d7;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.map-embed iframe { width: 100%; min-height: 300px; border: 0; display: block; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #11110f; color: #fff; padding: 66px 0 26px; margin-top: 40px; }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: 46px;
  align-items: start;
}
.footer-brand img { width: 190px; height: auto; margin-bottom: 20px; }
.footer-brand p { color: #8b8880; font-size: 13px; line-height: 1.7; margin: 0 0 20px; max-width: 34ch; }

.footer-col > span {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: #8d8a82;
  letter-spacing: .14em;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-col li { padding: 6px 0 5px; }
.footer-col a, .footer-col p { font-size: 13.5px; color: #c5c2bb; line-height: 1.75; margin: 0; }
.footer-col a:hover { color: var(--gold); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.footer-badges span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid #3a3a36;
  border-radius: 999px;
  padding: 7px 13px;
  color: #b0ada6;
}
.footer-bottom {
  border-top: 1px solid #2a2a27;
  padding-top: 24px;
  margin-top: 46px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #78756e;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.back-top {
  border: 1px solid #3a3a36;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 12px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.back-top:hover { border-color: var(--gold); color: var(--gold); }

/* Floating mobile call bar */
.call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(16,16,15,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.call-bar .btn { flex: 1; padding: 14px 10px; font-size: 12.5px; }

/* --------------------------------------------------------------------------
   18. Reveal on scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   19. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  :root { --gutter: 48px; }
  .intro { grid-template-columns: 1fr 1fr; }
  .why-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .proof__copy { padding: 60px 46px; }
  .faq { gap: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: block; }
  .nav .btn { display: none; }
  .nav { height: 88px; }
  .topbar__list li:not(:first-child) { display: none; }

  .hero--home { min-height: 780px; }
  .hero__body { padding: 104px 0 190px; }
  .hero-trust { grid-template-columns: 1fr 1fr; width: calc(100% - 48px); }
  .hero-trust > div { padding: 20px 22px; }

  .section-heading { flex-direction: column; align-items: flex-start; gap: 26px; }
  .section-heading > p { flex: 1 1 auto; max-width: 100%; }

  .service-groups { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid article { border-radius: 0 !important; margin: -1px 0 0 -1px; }
  .proof { grid-template-columns: 1fr; }
  .proof__media { min-height: 420px; }
  .faq { grid-template-columns: 1fr; }
  .contact-band { grid-template-columns: 1fr; padding: 48px 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip > div:nth-child(2) { border-right: 0; }
  .stat-strip > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .call-bar { display: flex; }
  body { padding-bottom: 74px; }
}

@media (max-width: 700px) {
  :root { --gutter: 32px; --radius-lg: 20px; }
  .section { padding: 55px 0; }
  .section--tight { padding: 58px 0 20px; }

  .topbar__inner { justify-content: center; height: 38px; }
  .topbar__inner > .topbar__list:last-child { display: none; }
  .topbar__list { gap: 14px; }
  .brand img { width: 138px; }

  .hero { margin: 8px; }
  .hero--home { min-height: 720px; }
  .hero__body { padding: 76px 0 45px; }
  .hero h1 { font-size: 46px; }
  .hero__body > p { font-size: 15.5px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .text-link { justify-content: center; }
  .hero-trust { position: static; transform: none; width: auto; margin: 0 8px 8px; grid-template-columns: 1fr; border-radius: 16px; }
  .hero--page { min-height: 380px; }
  .hero--page .hero__body { padding: 66px 0 54px; }

  .intro { grid-template-columns: 1fr; gap: 26px; }
  .figure { min-height: 380px; }
  .why-list { grid-template-columns: 1fr; }
  .feature-grid, .service-detail-grid, .value-grid, .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: 0; padding: 26px 24px 30px; }
  .step-icon { margin: 26px 0 20px; }

  .panel-dark { margin: 16px 8px; padding: 70px 0; border-radius: 20px; }
  .service-group { padding: 22px; }
  .service-list { grid-template-columns: 1fr; }
  .service-group__head { grid-template-columns: 28px 50px 1fr; }

  .proof { margin: 0 8px; }
  .proof__media { min-height: 300px; }
  .proof__copy { padding: 44px 26px; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stats > div { border-bottom: 1px solid var(--line-dark); }
  .proof-stats > div:last-child { border-bottom: 0; }

  .faq { gap: 34px; }
  .faq__list summary { grid-template-columns: 34px 1fr 26px; font-size: 15px; }
  .faq__list details p { margin: 0 0 24px 34px; }

  .cta-band { margin: 0 8px; padding: 66px 0; }
  .contact-band { padding: 40px 24px; border-radius: 20px; }
  .form-card { padding: 28px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat-strip > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-strip > div:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   20. Print
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .topbar, .call-bar, .cta-band, .hero__media { display: none !important; }
  body { background: #fff; color: #000; }
  .panel-dark, .proof, .contact-band, .site-footer { background: #fff !important; color: #000 !important; }
}

/* --------------------------------------------------------------------------
   21. Dark-panel overrides (FAQ + accents on #171715 sections)
   -------------------------------------------------------------------------- */
.panel-dark .faq__list summary { color: #fff; }
.panel-dark .faq__list summary .num { color: var(--gold); }
.panel-dark .faq__list summary:hover { color: var(--gold); }
.panel-dark .faq__list details p { color: var(--muted-dark); }
.panel-dark .faq__list details,
.panel-dark .faq__list details:last-child { border-color: var(--line-dark); }
.panel-dark .check-list li { color: #c9c6bf; }




/*--------------------------------------------------------------------*/
.mob-icon{
  /*filter: invert(60%) sepia(28%) saturate(794%) hue-rotate(4deg) brightness(103%) contrast(105%);*/
  width: 26px;
  position: relative;
  margin-top: -4px;
  margin-right: -3px;
}


.nav-email-aaa{
  display: flex;
  gap: 10px;
}

.nav-email{
  filter: invert(60%) sepia(28%) saturate(794%) hue-rotate(4deg) brightness(103%) contrast(105%);
  width: 16px;
  height: 16px;
}



/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.dropdown-arrow {
    font-size: 14px;
    transition: transform 0.25s ease;
}


.nav-dropdown__menu{
  opacity: 0;
}

/* Dropdown */
.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    width: 240px;

    padding: 10px 0;

    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

    transform: translateX(-50%) translateY(10px);

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;

    z-index: 999;
}

/* Hover */
.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown links */
.nav-dropdown__menu a {
    display: block;
    padding: 12px 20px;

    color: #222;
    text-decoration: none;

    transition: background 0.2s ease, padding-left 0.2s ease;
}

.nav-dropdown__menu a:hover {
    background: #f5f5f5;
    padding-left: 25px;
}








/* ==========================================
   MARQUEE GALLERY
========================================== */

.gallery-marquee {
    width: 100%;
    overflow: hidden;
    padding: 0px 0;
    /*background: #fff;*/
}

.gallery-marquee__track {
    display: flex;
    width: max-content;
    gap: 20px;

    animation: galleryMarquee 50s linear infinite;
}

.gallery-marquee__item {
    width: 400px;
    height: 400px;

    flex-shrink: 0;

    overflow: hidden;
    border-radius: 8px;
}

.gallery-marquee__item img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.gallery-marquee__item:hover img {
    transform: scale(1.05);
}


/* Continuous movement */

@keyframes galleryMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .gallery-marquee {
        padding: 0px 0 15px;
    }

    .gallery-marquee__track {
        gap: 12px;
        animation-duration: 28s;
    }

    .gallery-marquee__item {
        width: 245px;
        height: 245px;
        border-radius: 6px;
    }

}



.lula-tag{
  height: 82px;
  margin-bottom: 8px;
}


.holaa{}

.holaa img{
  width: 70px;
  filter: invert(82%) sepia(74%) saturate(1378%) hue-rotate(324deg) brightness(89%) contrast(87%);
}


.fola h3{
  font-size: 18px;
}

.fola p{
  font-size: 14px;
  margin: 0;
}


/*----------- Services Page ----------------*/
/*==========================================*/
.include-image {
  width: 100%;
  display: flex;
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.include-image li {
  width: 33.33%;
}

.include-image li img {
  height: 360px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1340px;
  }
}
.container {
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col-lg-12{
  flex: 0 0 auto;
  width: 100%;
}


.services-main-area h2{
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: -.04em;
  font-weight: 700;
}

.services-main-area p{
  margin-top: 10px;
  margin-bottom: 28px; 
}




.dropdown-menu{
  position: absolute;
  min-width: 270px;
  padding: 0px 0px;
  background-color: #faf8f3;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotateX(0deg) translateY(10px);
  transform: rotateX(0deg) translateY(10px);
  transform-origin: top;
  transform-style: preserve-3d;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  z-index: 99;
  margin-top: 10px;
  padding-bottom: 6px;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}

.dropdown-menu li{
  padding: 12px 15px 12px 25px;
}

.dropdown-menu li a{

}


.dropdown:hover .dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg) translateY(0px);
  transition: all 300ms ease;
}














@media screen and (max-width: 460px){
  .mob-none{display: none !important;}
  .mob-nav-call{
    justify-content: center !important;
  } 
  .mob-banner-ptag{font-size: 12px !important;}
  .services-main-area h2 {font-size: 28px;line-height: 1.2;}
  .include-image li {width: 50%;}
  .include-image li img {height: 260px;}
  .contact-options strong {font-size: 15px;}
  .section-heading {margin-bottom: 20px; gap: 15px;}
  .mb-ptzero{padding-top: 0;}




}