/* ==========================================================================
   Shade Pulse — Stylesheet
   Design tokens: warm desert palette (clay / gold / teal) on paper & ink.
   Type: Roboto (display) + Open Sans (body) + IBM Plex Mono (labels).
   ========================================================================== */

:root {
  /* Color tokens */
--ink: #000000;
  --ink-soft: #3A4440;
  --sand: #EDE6D6;
  --paper: #FAF8F3;
  --clay: #004890;
  --clay-dark: #004890;
  --gold: #D9A441;
  --teal: #004890;
  --teal-light: #3F6B63;
  --line: rgba(27, 35, 33, 0.12);
  --line-strong: rgba(27, 35, 33, 0.22);
  --white: #ffffff;

  /* Type */
  --font-display: "Roboto", Arial, sans-serif;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, Menlo, monospace;

  /* Layout */
  --container: 1280px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 26px;
  --shadow-card: 0 18px 40px -22px rgba(27, 35, 33, 0.35);
  --shadow-soft: 0 10px 26px -18px rgba(27, 35, 33, 0.28);

  --header-h: 64px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--clay);
  display: inline-block;
}
.transform-sec .eyebrow::before { background: var(--gold);
}
section { position: relative; }
#about, #products, #faq, #blog, #contact { scroll-margin-top: var(--header-h); }
.section-pad { padding: 80px 0; }
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
}

.section-head {
  max-width: 640px;
  margin-bottom: 38px;
  position: relative;
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 35px); margin-top: 14px; }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 17px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-watermark {
  position: absolute;
  top: -42px;
  left: -4px;
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 700;
  color: var(--line);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.section-head.center .section-watermark { left: 50%; transform: translateX(-50%); }
.section-head > *:not(.section-watermark) { position: relative; z-index: 1; }

.hl {
  background: linear-gradient(transparent 58%, var(--sand) 58%);
  padding: 0 3px;
}
@media (max-width: 720px) {
     .section-watermark {
        font-size: 42px;
        top: -20px;
    }
}
.fabric-groups h3{margin-top: 0px !important;}
/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 30px;
  border-radius: 1px;
  font-weight: 600;
  font-size: 15px;
  border: 1.5px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--clay); color: var(--paper); }
.btn-primary:hover { background: var(--clay-dark); }
.btn-outline { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost-light { border-color: rgba(250,248,243,0.4); color: var(--paper); }
.btn-ghost-light:hover { border-color: var(--paper); background: rgba(250,248,243,0.08); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--white); }
.btn-block { width: 100%; }
.btn-sm {
    padding: 8px 18px;
    font-size: 14px;
    margin: 4px 0px;
    border-radius: 5px;
}

/* ---------- Top utility bar ---------- */
.topbar {
    background: var(--white);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding: 20px 0px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.topbar-brand img { height: 42px; width: auto; }
.topbar-info { display: flex; align-items: center; gap: 36px; }
.info-item { display: flex; align-items: center; gap: 12px; }
.info-item i { font-size: 20px; color: var(--clay); }
.info-item .t {
    font-weight: 700;
    font-size: 13.5px;
    color: var(--ink);
    dynamic-range-limit: 10px;
    line-height: 13px;
}
.info-item .v { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.info-item .v a:hover { color: var(--clay); }

@media (max-width: 900px) {
  .topbar { display: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: -1px;
  z-index: 200;
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow .2s ease;    height: auto;
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); }
/* Background lives on a pseudo-element (not on .site-header itself) so that
   backdrop-filter doesn't create a containing block for the fixed-position
   .main-nav mobile menu — otherwise it collapses to the header's own box
   instead of covering the viewport. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
    height: auto;
    width: 140px;
    z-index: 9;
    position: relative;
}
.brand-mobile-only { display: none; }
@media (max-width: 900px) {
  .brand-mobile-only { display: block; }
}

.main-nav { display: flex; }
.main-nav > ul { display: flex; align-items: center; gap: 34px; }
.main-nav a.nav-link {
  font-weight: 600;
  font-size: 15px;
  padding: 10px 0;
  position: relative;
}
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0; height: 2px;
  background: var(--clay);
  transition: width .2s ease;
}
.main-nav a.nav-link:hover::after { width: 100%; }

.has-dropdown { position: relative; }
.dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.dropdown-toggle .chev { width: 9px; height: 9px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); margin-top: -3px; transition: transform .2s ease; }
.has-dropdown:hover .chev { transform: rotate(225deg); margin-top: 3px; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 240px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  font-weight: 500;
}
.dropdown-menu li a:hover { background: var(--sand); color: var(--clay); }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; transition: transform .25s ease, opacity .25s ease; }

/* ---------- Mobile nav ---------- */
@media (max-width: 980px) {
    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: var(--paper);
        padding: 20px 24px 40px;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 190;
        margin-top: -20px;
    }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; align-items: stretch; gap: 0;        width: 100%; }
  .dropdown-toggle .chev {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform .2s ease;
    display: block;
    position: absolute;
    right: 0px;
    top: 28px;
}
  .main-nav > ul > li { border-bottom: 1px solid var(--line); }
  .main-nav a.nav-link { display: block; padding: 16px 4px; font-size: 17px; }
  .dropdown-toggle { justify-content: space-between; width: 100%; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: var(--sand);
    max-height: 0; overflow: hidden; padding: 0 10px; margin: 0 0 0 0;
    transition: max-height .25s ease, padding .25s ease;
  }
  .has-dropdown.is-open .dropdown-menu { max-height: 500px; padding: 10px; margin-bottom: 6px; }
  .has-dropdown:hover .dropdown-menu { max-height: 0; } /* disable hover on touch */
  .has-dropdown.is-open .dropdown-menu {
        max-height: max-content;
    }
  .has-dropdown.is-open .chev { transform: rotate(225deg); margin-top: 3px; }
  .header-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-active span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .brand img {
    width: 100px;}
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    /* min-height: 680px; */
    /* display: flex; */
    /* align-items: flex-end; */
    /* padding: 90px 0 64px; */
    overflow: hidden;
    color: var(--paper);
}
.hero-swiper {
    /* position: absolute; */
    /* inset: 0; */
    width: 100%;
    height: 100%;
    height: 630px;
    overflow: hidden;
}
.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transform: scale(1);
  transition: transform 5.5s ease-out;
}
.hero-swiper .swiper-slide-active img {
  transform: scale(1.12);
}
.hero-swiper .swiper-pagination.swiper-pagination-fraction {
  z-index: 3;
  bottom: auto;
  top: 30px;
  left: 24px;
  width: auto;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--paper);
  background: rgba(27,35,33,0.45);
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
}
.hero-swiper .swiper-pagination-current { color: var(--gold); font-weight: 700; }

.hero-nav {
  position: absolute;
  right: 24px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-nav button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,248,243,0.4);
  background: rgba(27,35,33,0.25);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s ease, border-color .2s ease;
}
.hero-nav button:hover { background: var(--clay); border-color: var(--clay); }

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, #1b232159 0%, rgb(27 35 33 / 42%) 55%, rgb(27 35 33 / 44%) 100%);
}
.hero-content {
    position: absolute;
    z-index: 2;
    width: 100%;
    top: 22%;
    left: 0px;
    right: 0px;
    max-width: 100%;
    text-align: center;
}
.hero-copy {
    max-width: 720px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    /* position: absolute; */
    margin: auto;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 248, 243, 0.95);
    color: var(--ink);
    border: 1px solid rgba(250, 248, 243, 0.4);
    border-radius: 999px;
    padding: 8px 16px 8px 8px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    margin-bottom: 22px;
    margin: auto;
    margin-bottom: 20px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }
.hero h1 {
  font-size: clamp(34px, 5vw, 46px);
  color: var(--paper);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.1;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub {
    margin-top: 20px;
    font-size: 18px;
    color: rgba(250, 248, 243, 0.88);
    max-width: 100%;
    margin: auto;
}
.hero-cta {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    margin-top: 15px;
}
.hero-cta .btn-outline { border-color: rgba(250,248,243,0.5); color: var(--paper); }
.hero-cta .btn-outline:hover { border-color: var(--paper); background: rgba(250,248,243,0.1); }

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 44px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gold);
  font-weight: 700;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250,248,243,0.75);
}

@media (max-width: 720px) {
    .hero {
        min-height: 500px;
        padding: 0px 0 0px;
    }
    .hero-swiper {
    height: 500px;}
  .hero-nav { display: none; }
.hero-stats {
        gap: 10px 18px;
    }
    .hero-stat .num {
    font-size: 25px;}
    .hero h1 {
    font-size: clamp(27px, 5vw, 40px);}
}
.cta-split p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* ---------- Quick feature strip ---------- */
.feature-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.feature-strip ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-strip li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
}
.feature-strip li:last-child { border-right: none; }
.feature-strip .ico { font-size: 20px; }
.feature-strip img{
    width: 35px;
}
@media (max-width: 900px) {
  .feature-strip ul { grid-template-columns: repeat(2, 1fr); }
  .feature-strip li:nth-child(2) { border-right: none; }
  .feature-strip li { border-bottom: 1px solid var(--line); }
}

/* ---------- About ---------- */
.about-section {
  background-image: radial-gradient(var(--line) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.about-copy { position: relative; }
.about-watermark {
  position: absolute;
  top: -54px;
  left: -4px;
  font-family: var(--font-display);
  font-size: 108px;
  font-weight: 700;
  color: var(--line);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}
.about-copy > *:not(.about-watermark) { position: relative; z-index: 1; }
.about-copy p { color: var(--ink-soft); margin-top: 16px; }
.about-copy p strong { color: var(--ink); }

.about-media { position: relative; padding-bottom: 30px; }
.about-media-collage {
  display: flex;
  align-items: flex-start;
}
.about-media-collage img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}
.about-media-collage .collage-a {
  width: 62%;
  height: 460px;
  position: relative;
  z-index: 1;
}
.about-media-collage .collage-b {
  width: 48%;
  height: 380px;
  margin-left: -10%;
  margin-top: 80px;
  z-index: 2;
  border: 5px solid var(--paper);
}
.about-media .badge-float {
    position: absolute;
    left: -33px;
    bottom: 70px;
    right: auto;
    top: auto;
    z-index: 3;
    background: var(--clay);
    color: var(--paper);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    box-shadow: var(--shadow-card);
    width: 180px;
}
.about-media .badge-float .num { font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.about-media .badge-float .label {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    font-size: 17px;
    font-family: var(--font-display);
}
.about-media .badge-float .label  b{    font-size:25px;}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-media { order: -1; max-width: 420px; margin: 0 auto; }
  .about-watermark { font-size: 72px; top: -38px; }
}
@media (max-width: 480px) {
  .about-media-collage .collage-a { height: 320px; }
  .about-media-collage .collage-b { height: 260px; margin-top: 60px; }
  .about-media .badge-float { padding: 12px 16px; }
}

/* ---------- Process ---------- */
.process-section { background: var(--teal); color: var(--paper);background: var(--ink); }
.process-section .section-head p { color: rgba(250,248,243,0.75); }
.process-section .eyebrow { color: var(--gold); display: none;}
.process-section .eyebrow::before { background: var(--gold); }
.process-section h2 { color: var(--paper); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}

.process-card {
  background: rgba(250,248,243,0.06);
  border: 1px solid rgba(250,248,243,0.14);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  position: relative;
}
.process-card .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.process-card h3 { color: var(--paper); font-size: 21px; margin-top: 14px; }
.process-card p { color: rgba(250,248,243,0.72); margin-top: 10px; font-size: 15px; }
.process-card .step-icon { font-size: 26px; margin-bottom: 4px; }
.process-grid img{
    width: 50px;margin-bottom: 20px;
}
.why-grid img{
    width: 40px;
}
@media (max-width: 860px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .22s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--line-strong); }
.product-card .thumb { aspect-ratio: 4/3; overflow: hidden; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .thumb img { transform: scale(1.06); }
.product-card .body {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
}
.product-card .body-text h3 {
    font-size: 27px;
    margin-bottom: 14px;
}
.product-card .body-text p { color: var(--ink-soft); font-size: 13.5px; margin-top: 4px;    width: 100%;
    max-width: 330px; /* ya jitni width chahiye */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
.product-card .card-link {
    flex-shrink: 0;
    color: var(--line-strong);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color .2s ease;
}
.product-card .card-link .arrow {
    transition: transform .2s ease;
    font-size: 20px;
    line-height: 1;
    position: absolute;
    top: bottom;
    bottom: 21px;
    right: 13px;
}
.product-card:hover .card-link { color: var(--clay); }
.product-card:hover .card-link .arrow { transform: translateX(3px); }

@media (max-width: 980px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ---------- Product gallery ---------- */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
}
.gallery-item { text-align: center; }
.gallery-frame {
  position: relative;
  aspect-ratio: 4/3;
  margin-bottom: 18px;
}
.gallery-frame::before {
  content: "";
  position: absolute;
  inset: 14% 8% 0 8%;
  background: var(--sand);
  border-radius: var(--radius-sm);
  z-index: 0;
}
.gallery-frame img {
  position: relative;
  z-index: 1;
  width: 86%;
  height: 90%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}
.gallery-item:hover .gallery-frame img { transform: translateY(-6px); }
.gallery-name { font-weight: 700; color: var(--clay); font-size: 15px; }

@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ---------- Product Showcase (Products page) ---------- */
.showcase-intro { max-width: 820px; margin: 0 auto 20px; text-align: center; color: var(--ink-soft); font-size: 17px; }
.showcase-list { display: flex; flex-direction: column; gap: 100px; margin-top: 80px; }

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-row.rev .showcase-media { order: 2; }
.showcase-row.rev .showcase-content { order: 1; }

.showcase-media { position: relative; }
.showcase-frame { position: relative; }
.showcase-frame::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  background: var(--sand);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.showcase-row.rev .showcase-frame::before { inset: 22px 22px -22px -22px; }
.showcase-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform .5s ease;
}
.showcase-row:hover .showcase-frame img { transform: scale(1.03); }

.showcase-tag {
  position: absolute;
  z-index: 2;
  top: -18px;
  left: -18px;
  background: var(--clay);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 11px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.showcase-row.rev .showcase-tag { left: auto; right: -18px; }

.showcase-content .ico-badge {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--sand);
  color: var(--clay);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.showcase-content h3 { font-size: clamp(24px, 3vw, 30px); margin-top: 2px; }
.showcase-content p.desc { color: var(--ink-soft); margin-top: 14px; font-size: 16px; max-width: 480px; }
.showcase-features { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.showcase-features li { display: flex; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.showcase-features li i {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--clay);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
}
.showcase-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.showcase-actions .btn-wa { border-color: var(--line-strong); color: var(--ink); }
.showcase-actions .btn-wa:hover { border-color: #25D366; color: #1a9c4c; }

@media (max-width: 900px) {
  .showcase-list { gap: 64px; margin-top: 56px; }
  .showcase-row { grid-template-columns: 1fr; gap: 40px; }
  .showcase-row.rev .showcase-media,
  .showcase-row.rev .showcase-content { order: 0; }
  .showcase-frame::before, .showcase-row.rev .showcase-frame::before { inset: 16px -16px -16px 16px; }
  .showcase-content p.desc { max-width: 100%; }
}
@media (max-width: 480px) {
  .showcase-tag { font-size: 11.5px; padding: 9px 14px; top: -12px; left: -12px; }
  .showcase-row.rev .showcase-tag { right: -12px; }
}

/* ---------- Product Detail page ---------- */
/* CTA strip */
.detail-cta {
  background: linear-gradient(120deg, var(--ink) 0%, #0c2c63 55%, var(--clay) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.detail-cta h3 {
  color: var(--paper);
  font-size: clamp(19px, 2.2vw, 24px) !important;
  max-width: 640px;
  font-weight: 600;    line-height: 1.19 !important;
}
.detail-cta .actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 720px) {
  .detail-cta { padding: 30px 24px; }
}

/* Advantages */
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.advantage-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.advantage-card:hover { box-shadow: var(--shadow-soft); border-color: var(--line-strong); }
.advantage-card .ico {
  flex-shrink: 0;
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-size: 21px;
}
.advantage-card h3 { font-size: 17.5px; }
.advantage-card p { color: var(--ink-soft); font-size: 14px; margin-top: 6px; }
@media (max-width: 760px) {
  .advantage-grid { grid-template-columns: 1fr; }
}

/* Stats block */
.stat-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 280px; }
.stat-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.stat-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%); }
.stat-media .cap {
  position: relative; z-index: 1; height: 100%;
  display: flex; align-items: flex-end;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  padding: 30px;
}
.stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-tile {
  background: var(--clay);
  color: var(--paper);
  border-radius: var(--radius-md);
  padding: 26px 20px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.stat-tile .num { font-family: var(--font-display); font-size: 32px; font-weight: 700; }
.stat-tile .label {
  font-family: var(--font-mono); font-size: 11.5px;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 6px; opacity: 0.9;
}
@media (max-width: 860px) {
  .stat-block-grid { grid-template-columns: 1fr; }
  .stat-media { min-height: 200px; }
}
@media (max-width: 480px) {
  .stat-tiles { gap: 12px; }
  .stat-tile { padding: 20px 12px; }
  .stat-tile .num { font-size: 25px; }
}

/* Dark contact variant */
.quote-split.dark { background: var(--ink); }
.quote-split.dark .quote-panel h2 { color: var(--paper); }
.quote-split.dark .quote-panel p.sub { color: rgba(250,248,243,0.72); margin-top: 10px; margin-bottom: 10px; }
.quote-split.dark .field input,
.quote-split.dark .field textarea {
  background: rgba(250,248,243,0.07);
  color: var(--paper);
  box-shadow: none;
  border: 1px solid rgba(250,248,243,0.18);
}
.quote-split.dark .field input::placeholder,
.quote-split.dark .field textarea::placeholder { color: rgba(250,248,243,0.5); }
.quote-split.dark .field input:focus,
.quote-split.dark .field textarea:focus { box-shadow: 0 0 0 2px var(--gold); }
.quote-split.dark .form-status { color: var(--paper); }
.quote-split.dark .form-status.success { color: var(--gold); }
.quote-split.dark .quote-media::after { background: linear-gradient(270deg, rgba(15,20,19,0) 55%, var(--ink) 100%); }

/* ---------- CTA banner ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
   align-items: center;    margin-bottom: 70px;
}
.cta-media { position: relative; overflow: hidden; }
.cta-media img { width: 100%; height: 100%; object-fit: cover;height: 580px; }
.cta-panel {
    background: var(--clay);
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 90%;
    margin-right: -100px;
    z-index: 1;
    margin-left: auto;
}
.cta-panel h2 { color: var(--paper); font-size: clamp(24px,3vw,32px); max-width: 480px; margin-top: 14px; }
.cta-panel p { color: rgba(250,248,243,0.75); margin-top: 14px; max-width: 480px; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

@media (max-width: 860px) {
  .cta-split { grid-template-columns: 1fr; min-height: auto; }
  .cta-media { min-height: 260px; }
  .cta-panel { padding: 44px 26px; }
      .cta-split {
        grid-template-columns: 1fr;
        min-height: auto;
        max-width: 100%;
    }
    .cta-split p {
    white-space: initial;
    /* overflow: hidden; */
    text-overflow: initial;
}

}

/* ---------- Interesting Facts ---------- */
.facts-section {
  position: relative;
  overflow: hidden;
  padding: 150px   0;
  color: var(--paper);
  text-align: center;
}
.facts-media { position: absolute; inset: 0; }
.facts-media img { width: 100%; height: 100%; object-fit: cover; }
.facts-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,35,33,0.35) 0%, rgba(27,35,33,0.58) 100%);
}
.facts-content { position: relative; z-index: 1; }
.facts-heading { color: var(--paper); font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 50px; }
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}
.fact-item i { font-size: 30px; color: var(--gold); margin-bottom: 14px; }
.fact-item .num { font-family: var(--font-display);     font-size: 40px;
    font-weight: 600;color: var(--paper); }
.fact-item .label {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250,248,243,0.75);
  margin-top: 4px;
}
@media (max-width: 560px) {
  .facts-grid { gap: 22px 14px; }
  .fact-item i { font-size: 24px; }
  .fact-item .num { font-size: 26px; }
}

.facts-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 760px) {
  .facts-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Spec table ---------- */
.spec-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.spec-row { display: grid; grid-template-columns: 240px 1fr; }
.spec-row:nth-child(even) { background: var(--sand); }
.spec-row .k {
  padding: 16px 24px;
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clay);
  border-right: 1px solid var(--line);
}
.spec-row .v { padding: 16px 24px; color: var(--ink-soft); font-size: 15px; }
@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; }
  .spec-row .k { border-right: none; border-bottom: 1px solid var(--line); }
}

/* ---------- Fabric & color swatches ---------- */
.fabric-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fabric-group h3 { font-size: 19px; margin-top: 0; }
.swatch-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.swatch { display: flex; flex-direction: column; align-items: center; gap: 8px; width: 80px; text-align: center; }
.swatch .chip {
  width: 46px; height: 46px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--line);
  border: 3px solid var(--white);
}
.swatch .name { font-size: 12px; font-weight: 600; }
@media (max-width: 760px) {
  .fabric-groups { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Comparison table ---------- */
.compare-table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--line); }
.compare-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.compare-table th, .compare-table td {
  padding: 15px 16px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  background: var(--white);
}
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table thead th {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 600; }
.compare-table td.highlight { background: var(--sand); font-weight: 600; }
.compare-table thead th.highlight { background: var(--clay); }

/* ---------- Process step icon (font-icon variant) ---------- */
.process-card .step-icon i { font-size: 32px; color: var(--gold); margin-bottom: 16px; display: block; }

/* ---------- Standalone 4-up stat row (no media) ---------- */
.stat-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 760px) {
  .stat-row-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Product model cards ---------- */
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.model-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.model-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sand);
  color: var(--clay);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.model-card h3 { font-size: 19px; }
.model-card p { color: var(--ink-soft); font-size: 14.5px; margin-top: 10px; }
.model-card ul { margin-top: 16px; }
.model-card ul li { position: relative; padding-left: 22px; margin-top: 8px; color: var(--ink-soft); font-size: 13.5px; }
.model-card ul li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--clay); }
.model-card ul li strong { color: var(--ink); }
@media (min-width: 861px) {
  .model-card--wide { grid-column: 1 / -1; max-width: calc(50% - 12px); }
}
@media (max-width: 860px) {
  .model-grid { grid-template-columns: 1fr; }
}

/* ---------- Photo type cards (product catalog grid) ---------- */
.type-group { margin-top: 40px; }
.type-group:first-child { margin-top: 0; }
.type-group-label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 18px;
}
.type-group-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.type-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.type-card .type-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.type-card .type-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.type-card:hover .type-media img { transform: scale(1.05); }
.type-card .type-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.type-card .type-badge.clay { background: var(--clay); }
.type-card .type-badge.gold { background: var(--gold); color: var(--ink); }

.type-card .type-body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.type-card .type-model {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.type-card h3 { font-size: 14.5px; line-height: 1.25; margin-top: 3px; }
.type-card .type-subtitle {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 3px;
  line-height: 1.4;
}
.type-card p {
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.55;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}
.type-card ul { margin-top: 12px; flex: 1; }
.type-card ul li {
  position: relative;
  padding-left: 16px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 11.5px;
  line-height: 1.4;
}
.type-card ul li::before { content: ""; position: absolute; left: 0; top: 6px; width: 5px; height: 5px; border-radius: 50%; background: var(--clay); }

/* Compact spec rows (label:value), like a product spec sheet */
.type-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  flex: 1;
}
.type-specs .spec .k {
  display: block;
  font-family: var(--font-mono);
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--clay);
  font-weight: 700;
}
.type-specs .spec .v {
  display: block;
  font-size: 10.5px;
  color: var(--ink);
  margin-top: 2px;
  line-height: 1.3;
}

/* Colour swatches */
.type-swatches { display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.type-swatches .chip {
  width: 13px; height: 13px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
  border: 2px solid var(--white);
  outline: 1px solid var(--line);
}
.type-swatches .label { font-size: 9.5px; color: var(--ink-soft); margin-left: 2px; }

.type-card .btn {
  margin-top: 14px;
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 11px 16px;
}
.type-card .btn:hover { background: var(--clay); }
.type-card.featured .btn { background: var(--gold); color: var(--ink); }
.type-card.featured .btn:hover { background: #c08e30; }

@media (max-width: 1100px) {
  .type-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .type-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .type-card .type-body { padding: 18px; }
  .type-card p { -webkit-line-clamp: 4; line-clamp: 4; }
}

/* ---------- Why choose us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px 24px;
  border-radius: 10px;
  background: var(--sand);
  border: 1px solid var(--line);
}
.why-card .ico {
  width: 52px; height: 52px;
  border-radius: 14px;
    color: rgb(27 35 33 / 7%);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
}
.why-card h3 { font-size: 18px; }
.why-card p { color: var(--ink-soft); font-size: 14.5px; margin-top: 8px; }
@media (max-width: 980px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--sand); }
.testi-row-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.testi-track { flex: 1; min-width: 0; }
.testi-row {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  min-width: 0;
}
.testi-avatar {
  flex-shrink: 0;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
}
.testi-body { padding-top: 4px; min-width: 0; flex: 1; }
.testi-body p.quote { font-size: 16px; color: var(--ink-soft); max-width: 620px; }
.testi-body .name { margin-top: 14px; font-weight: 700; font-size: 15px; }
.testi-body .loc { font-size: 12.5px; color: var(--ink-soft); }

.testi-side {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  padding: 4px 0;
}
.testi-nav { display: flex; flex-direction: column; gap: 8px; }
.testi-nav button {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.testi-nav button:hover { background: var(--clay); border-color: var(--clay); color: var(--paper); }
.testi-quote-icon { font-size: 40px; color: var(--gold); opacity: 0.5; }

@media (max-width: 720px) {
  .testi-row-wrap { flex-direction: column; align-items: stretch; gap: 24px; }
  .testi-track { width: 100%; }
  .testi-side { flex-direction: row; align-items: center; justify-content: space-between; align-self: auto; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 940px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 17.5px;
  font-weight: 600;
  color: var(--ink);
}
.faq-question .plus {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  position: relative;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.faq-question .plus::before, .faq-question .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.faq-question .plus::before { width: 12px; height: 2px; }
.faq-question .plus::after { width: 2px; height: 12px; transition: opacity .2s ease; }
.faq-item.is-open .plus { background: var(--clay); border-color: var(--clay); transform: rotate(180deg); }
.faq-item.is-open .plus::before, .faq-item.is-open .plus::after { background: var(--paper); }
.faq-item.is-open .plus::after { opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer p { padding: 0 4px 22px; color: var(--ink-soft); font-size: 15px; max-width: 720px; }

/* ---------- Contact / Quote ---------- */
.quote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--sand);
}
.quote-media {
  position: relative;
  min-height: 640px;
  overflow: hidden;
}
.quote-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-media::after {
    content: "";
    position: absolute;
    inset: 0;
      background: linear-gradient(90deg, rgba(237, 230, 214, 0) 60%, #ede6d6e0 100%);
}
.quote-panel {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-panel > h2 { margin-bottom: 30px; }
.quote-form { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 15px 22px;
  border-radius: 999px;
  border: none;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 14.5px;
  transition: box-shadow .18s ease;    border-radius: 5px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: 0 0 0 2px var(--clay);
}
.field textarea { resize: vertical; min-height: 100px; border-radius: 5px; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.success { color: var(--teal); }
.quote-panel .btn {
    padding: 7px 33px;}
@media (max-width: 900px) {
  .quote-split { grid-template-columns: 1fr; }
  .quote-media { min-height: 420px; }
  .quote-panel { padding: 50px 26px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
gap: 40px 20px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid #004890;
    padding-bottom: 15px;
    /* border: 1px solid #ddd; */
    box-shadow: 0px 0px 5px #ccc;
    overflow: hidden;
    border-radius: 5px;
}
.blog-contt {
    padding: 0px 20px;
}
.blog-card .thumb {
    aspect-ratio: 18 / 10;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}
.blog-contt{
    padding: 0px 20px;
}
    .gslide-image img.zoomable {
        cursor: -webkit-zoom-in;
        cursor: zoom-in;
        width: 70% !important;
    }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 18px; line-height: 1.32; }
.blog-card p {  color: var(--ink-soft);
    font-size: 14.5px;
    margin-top: 12px;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.6;
    max-height: calc(1.6em * 3); }
.card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: var(--clay);
  color: var(--paper);
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  width: fit-content;
  transition: background .2s ease, transform .2s ease;
}
.card-link-btn:hover { background: var(--clay-dark); transform: translateX(2px); }
.card-link-btn i { font-size: 12px; }

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
}
.page-banner-media { position: absolute; inset: 0; }
.page-banner-media img { width: 100%; height: 400px; object-fit: cover; }
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,35,33,0.55) 0%, rgba(27,35,33,0.72) 100%);
}
.page-banner-content { position: relative; z-index: 1; }
.page-banner h1 {
  color: var(--paper);
  font-size: clamp(30px, 4vw, 40px);
  text-transform: uppercase;
  font-weight: 700;
}
.breadcrumb {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(250,248,243,0.85);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; opacity: 0.6; }
@media (max-width: 720px) {
  .page-banner { min-height: 200px; }
}

/* ---------- Simple content page blocks ---------- */
.simple-page p { color: var(--ink-soft); margin-top: 16px; }
.simple-page p strong { color: var(--ink); }
.simple-page ul { margin-top: 16px; padding-left: 0; }
.simple-page ul li {
  position: relative;
  padding-left: 26px;
  margin-top: 10px;
  color: var(--ink-soft);
}
.simple-page {max-width: 90%;
    margin: 0 auto;}
.simple-page ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--clay);
}
.simple-page h3 { margin-top: 34px; font-size: 21px; }

/* ---------- Blog listing pagination ---------- */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}
.blog-pagination a, .blog-pagination span {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.blog-pagination a:hover { border-color: var(--clay); color: var(--clay); }
.blog-pagination .current { background: var(--clay); border-color: var(--clay); color: var(--paper); }
.blog-pagination .dots { border: none; }

/* ---------- Blog detail article ---------- */
.blog-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.blog-article .meta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.blog-article .cover {
  margin-top: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-article .cover img {
    width: 100%;
    height: 440px;
    display: block;
    object-fit: cover;
}
.blog-article p { color: var(--ink-soft); margin-top: 16px; font-size: 16px; }
.blog-article h3 { margin-top: 34px; font-size: 21px; }
.blog-article blockquote {
  margin: 26px 0;
  padding: 20px 26px;
  border-left: 3px solid var(--clay);
  background: var(--sand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-soft);
}
.blog-sidebar-card {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.glightbox-clean .gdesc-inner {
    padding: 22px 20px;
    DISPLAY: NONE !important;
}
.blog-sidebar-card h4 { font-size: 15px; text-transform: uppercase; letter-spacing: .04em; font-family: var(--font-mono); }
.blog-sidebar-list { margin-top: 18px; display: flex; flex-direction: column; gap: 0px; }
.blog-sidebar-list a {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 8px;
}
.blog-sidebar-list .thumb { width: 64px; height: 64px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.blog-sidebar-list .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-sidebar-list .txt h5 {
    font-size: 14px;
    line-height: 1.35;
    margin: 5px 0px;
    font-weight: 500;
}
.blog-sidebar-list .txt .meta { font-size: 11px; margin-top: 4px; }

@media (max-width: 900px) {
  .blog-detail-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(250,248,243,0.72); padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250,248,243,0.12);
}
.footer-brand img { height: 36px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(250,248,243,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--clay); border-color: var(--clay); }
.footer-col h4 { color: var(--paper); font-size: 14.5px; text-transform: uppercase; letter-spacing: .06em; font-family: var(--font-mono); font-weight: 600; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; }
.footer-col a:hover { color: var(--gold); }
.footer-col ul li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; }
.footer-col ul li i { color: var(--gold); font-size: 13px; width: 14px; text-align: center; flex-shrink: 0; }
.footer-col ul li a { display: flex; align-items: center; gap: 9px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Sticky mobile actions ---------- */
.sticky-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 150;
}
.sticky-actions a {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease;
}
.sticky-actions a:hover { transform: scale(1.08); }
.sticky-actions .call {
    background: var(--ink);
    color: var(--paper);
    position: fixed;
    left: 20px;border: 1px solid #fff;
}
.sticky-actions .whatsapp { background: #25D366; color: #fff; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.transform-sec { overflow: hidden; padding-top: 50px;}

/* ---------- Utility ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } 
h2{font-size: 33px;}
}
@media(max-width:1300px){
  .hero-content {
    top: 16%;}
    h2 {
    font-size: 35px !important;
}
.cta-panel {
    max-width: 95%;}
    
    .hero-content {
        top: 50%;
        transform: translateY(-50%);
    }
    .hero-swiper {
    height: 500px;}
  }

  @media(max-width:900px){

    .site-header {    padding: 10px 0px;
}
  }
@media(max-width:760px){
  .about-media .badge-float {
    left: -13px;
    bottom: 20px;
    padding: 18px 14px;
    width: 150px;
}
.glightbox-clean .gnext {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 40px;
    height: 50px;
}
.glightbox-clean .gprev {
    position: absolute;
    top: 50%;
    left: 10px;
    width: 40px;
    height: 50px;
}
    h2 {
        font-size: 27px !important;
        line-height: 34px;
    }
.product-card .body-text h3 {
    font-size: 25px;
    margin-bottom: 8px;
}

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

.cta-media img {
    height: 320px;
}
.cta-panel {
    padding: 50px 20px;
    max-width: 100%;
    margin-left: auto;margin-right: 0px;
}
.form-row {
    gap: 0px;
}
.page-banner h1 {
    color: var(--paper);
    font-size: clamp(25px, 3vw, 47px);
    text-transform: uppercase;
    font-weight: 700;
}
.about-media .badge-float .label b {
    font-size: 19px;
    line-height: 1.2;
}
.facts-section {
    padding: 60px 0;}
    .section-head {
    margin-bottom: 28px;}
}

.wpcf7-response-output {
    margin: auto!important;
    position: absolute!important;
    bottom: 72px!important;
    left: 60%!important;
}

.pagination-links {
    display: flex;
    gap: 6px;
}