/* ============================================
   PARADISE GRAPHICS - MAIN STYLESHEET
   ============================================ */

/* ============================================
   FONTS IMPORT
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/* ============================================
   CSS VARIABLES / CUSTOM PROPERTIES
   ============================================ */
:root {
  --ink: #141414;
  --light: #f5f4f1;
  --accent: #c8401a;
  --border: #e2e0db;
  --muted: #5b5956;
  --white: #ffffff;
  --card-bg: #f8f7f4;
  --card-border: #ddd6ca;
  --card-border-hover: #c8c0b3;
  --font-heading: 'Lato', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--light);
  color: var(--ink);
  line-height: 1.5;
  font-size: 1.05rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-divider {
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
  font-style: italic;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.2vw, 1.25rem);
  line-height: 1.45;
  max-width: 58ch;
  font-style: italic;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-accent:hover {
  background: #a93817;
  border-color: #a93817;
}

.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 400;
  background: color-mix(in srgb, var(--light) 95%, var(--white) 5%);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  will-change: transform;
}

.topbar {
  background: #efede8;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  max-height: 52px;
  overflow: hidden;
  transition: max-height 0.26s ease, opacity 0.22s ease, border-color 0.22s ease;
}

.site-header.topbar-hidden .topbar {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom-color: transparent;
}

.topbar-inner {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.topbar-contacts {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.03em;
  font-style: italic;
  transition: color 0.25s ease;
}

.topbar-contacts a:hover,
.topbar-social a:hover {
  color: var(--accent);
}

.topbar-contacts i {
  font-size: 0.7rem;
  color: var(--accent);
}

.topbar-social {
  display: flex;
  gap: 8px;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  color: var(--ink);
  transition: all 0.25s ease;
}

.topbar-social a:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.main-nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

@media (max-width: 1200px) {
  .nav-inner {
    display: flex;
    justify-content: space-between;
  }
}

.brand img {
  max-height: 73px;
  width: clamp(70px, 8vw, 85px);
  object-fit: cover;
  object-position: left center;
  /* border: 1px solid var(--border); */
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
}

.nav-links>li>a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  /* color: var(--muted); */
  transition: color 0.25s ease;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--ink);
}

.dropdown {
  position: relative;
}

.dropdown-icon {
  margin-left: 8px;
  font-size: 0.74rem;
  transition: transform 0.2s ease;
}

.dropdown>a[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  display: block;
  min-width: 260px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid var(--border);
  background: #f8f7f4;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 80;
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (min-width: 1201px) {
  .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .dropdown:hover>a .dropdown-icon {
    transform: rotate(180deg);
  }
}

.dropdown-menu li+li {
  margin-top: 4px;
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 0.84rem;
  color: var(--muted);
  border-radius: 4px;
}

.dropdown-menu a:hover {
  background: #f0ece5;
  color: var(--ink);
}

.hamburger {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: all 0.25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  justify-self: start;
}

nav {
  justify-self: center;
}

.enquirey-btn {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .enquirey-btn {
    display: none;
    /* Hide standard button on mobile, it will be in the nav drawer */
  }
}

.banner-section {
  position: relative;
}

.carousel {
  max-width: 1920px;
  height: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.carousel__slide {
  flex: 0 0 100%;
  height: 700px;
  min-height: 700px;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  height: 113%;
  object-fit: cover;
  filter: contrast(1.1) saturate(0.93);
}

.slide-overlay {
  position: absolute;
  left: min(6vw, 90px);
  bottom: clamp(32px, 9vh, 90px);
  max-width: min(620px, 88vw);
  padding: clamp(20px, 3.5vw, 40px);
  border: 1px solid rgba(226, 224, 219, 0.75);
  background: color-mix(in srgb, var(--light) 90%, transparent 10%);
}

.banner-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  /* line-height: 1.1; */
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(18px);
}

.carousel__slide.active .banner-title {
  animation: titleRise 1s ease forwards;
}

.slide-overlay .eyebrow,
.slide-overlay>p:not(.eyebrow),
.slide-overlay .btn {
  opacity: 0;
  transform: translateY(14px);
}

.carousel__slide.active .slide-overlay .eyebrow {
  animation: titleRise 0.7s ease 0.1s forwards;
}

.carousel__slide.active .slide-overlay>p:not(.eyebrow) {
  animation: titleRise 0.8s ease 0.2s forwards;
}

.carousel__slide.active .slide-overlay .btn {
  animation: titleRise 0.85s ease 0.35s forwards;
}

.reveal-heading {
  overflow: hidden;
}

.reveal-heading .word-wrap {
  display: inline-block;
  overflow: hidden;
  padding-right: 0.07em;
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.reveal-heading .word {
  display: inline-block;
  transform: translate3d(0, 120%, 0);
  opacity: 0;
  filter: blur(2px);
  transition: transform 0.82s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.68s ease, filter 0.65s ease;
  transition-delay: calc(var(--word-index, 0) * 38ms);
}

.reveal-heading.is-visible .word {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  filter: blur(0);
}

.slide-overlay p {
  color: #2a2a2a;
  max-width: 55ch;
}

.slide-overlay .btn {
  margin-top: 24px;
}

@keyframes titleRise {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel__button {
  position: absolute;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--light) 88%, var(--white) 12%);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel__button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.carousel__button--prev {
  right: 78px;
}

.carousel__button--next {
  right: 16px;
}

.ticker {
  overflow: hidden;
  padding: 20px 0;
  background: #f8f6f3;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.ticker__track span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--ink);
  position: relative;
  padding: 0 38px;
  white-space: nowrap;
}

.ticker__track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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



/* ============================================
   LOGO TICKER
   ============================================ */
.logo-ticker {
  overflow: hidden;
  padding: 40px 0;
  background: transparent;
  width: 100%;
}

.logo-ticker__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 30s linear infinite;
  gap: 60px;
  align-items: center;
}

.logo-ticker .logo-card {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin: 0;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo-ticker .logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.logo-ticker .logo-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(1) opacity(0.7); */
  transition: all 0.3s ease;
}

.logo-ticker .logo-card:hover img {
  filter: grayscale(0) opacity(1);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

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

.section h2 {
  font-size: clamp(2.7rem, 5vw, 6rem);
  max-width: 17ch;
  /* line-height: 0.98; */
}

.section-head {
  margin-bottom: 36px;
}

.process-section .section-head h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  line-height: 0.94;
}

.process-section {
  position: relative;
  background:
    radial-gradient(1200px 320px at 70% -120px, rgba(200, 64, 26, 0.12) 0%, rgba(200, 64, 26, 0) 65%),
    linear-gradient(180deg, #f8f5ef 0%, #f1ede5 100%);
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(20, 20, 20, 0.04) 1px, transparent 1px);
  background-size: 52px 100%;
  pointer-events: none;
  opacity: 0.3;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(18px, 2.5vw, 30px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.process-head {
  margin-bottom: 0;
  position: sticky;
  top: 106px;
}

.process-head-shell {
  border: 1px solid #2f2b24;
  background: linear-gradient(165deg, #201d19 0%, #161411 100%);
  padding: clamp(22px, 2.6vw, 34px);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.process-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9bca9;
  margin-bottom: 12px;
}

.process-head-shell h2 {
  color: #f8f2e8;
}

.process-head-shell .lead {
  color: #d5cbbb;
  max-width: 33ch;
}

.process-benefits {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.process-benefits li {
  position: relative;
  padding-left: 14px;
  color: #efe5d6;
  font-size: 0.96rem;
  line-height: 1.45;
}

.process-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.process-cta {
  margin-top: 22px;
  width: fit-content;
  min-width: 228px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  position: relative;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(165deg, #fffdf8 0%, #f5f0e7 100%);
  box-shadow:
    0 12px 28px rgba(27, 23, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  padding: 22px 22px 24px;
  min-height: 220px;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

/* .process-card::before {
  content: attr(data-step);
  position: absolute;
  right: 14px;
  top: 8px;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(35, 32, 27, 0.07);
} */

.process-card::after {
  content: none;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 18px 36px rgba(24, 22, 18, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  background: linear-gradient(165deg, #fffdf9 0%, #f8f3eb 100%);
}

.process-card-top {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 30px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.08);
  color: #1c1a18;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.process-card-top i {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: rgba(200, 64, 26, 0.12);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  color: var(--accent);
}

.process-card h3 {
  font-size: clamp(1.62rem, 2.2vw, 2.2rem);
  margin-bottom: 10px;
  max-width: 12ch;
  line-height: 1.02;
}

.process-card p {
  color: #4d4a44;
  font-size: 1.02rem;
  line-height: 1.58;
  max-width: 30ch;
}

.about-grid {
  display: grid;
  gap: clamp(24px, 4vw, 56px);
  grid-template-columns: 1fr 1fr 0.8fr;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-btn {
  width: fit-content;
  margin-top: 10px;
}

.about-image-wrap {
  margin: 0;
  border: 1px solid var(--border);
  /* background: linear-gradient(150deg, #f8f7f4 0%, #ece7de 100%); */
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(16px, 2vw, 24px);
}

.about-image {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: contrast(1.08);
}

.about-stats {
  display: grid;
  gap: 12px;
}

.stat-card {
  border: 1px solid var(--card-border);
  padding: 20px;
  background: var(--card-bg);
}

.stat__number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  color: var(--ink);
}

.card-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-grid-single {
  grid-template-columns: minmax(0, 430px);
  justify-content: center;
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-card,
.text-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 18px;
  transition: transform 0.26s ease, border-color 0.26s ease, background 0.26s ease;
}

.media-card:hover,
.text-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-border-hover);
  background: #fbfaf7;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  /* background: #f4f1ea; */
}

.media-card h3,
.text-card h3 {
  font-size: 1.25rem;
}

.media-card p,
.text-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.text-link {
  margin-top: 16px;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-btn {
  margin-top: 16px;
  width: 100%;
}

.universal-card {
  border: 1px solid #d7d1c6;
  background: #fbf9f4;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  padding: 0;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.universal-card:hover {
  transform: translateY(-4px);
  border-color: #bdb4a6;
  box-shadow: 0 14px 26px rgba(20, 20, 20, 0.08);
}

.universal-card::before {
  content: none;
}

.universal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  /* background: #d8d4cb; */
  border: 0;
  margin: 0;
}

.universal-card-body {
  display: grid;
  gap: 12px;
  padding: 26px 22px 24px;
  background: #f9f8f5;
}

.universal-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.25;
}

.universal-card p {
  color: #3f3f3d;
  font-size: 1.02rem;
  line-height: 1.45;
}

.universal-card-btn {
  margin-top: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid #9f998e;
  border-radius: 0;
  background: transparent;
  color: #1f1f1f;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.universal-card-btn:hover {
  border-color: #141414;
  background: #141414;
  color: #fff;
}

.product-card,
.equip-card,
.blog-card {
  border-color: #d7d1c6;
}

.product-card {
  background: #fbf9f4;
}

.product-card img {
  border: 0;
}

.product-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
}

.product-card::before,
.equip-card::before,
.blog-card::before {
  content: none;
}

.equip-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-card .eyebrow {
  margin: 2px 0 6px;
  font-size: 0.66rem;
}

.product-card .card-btn {
  margin-top: 10px;
  border-color: #9f998e;
}

.product-card:hover .card-btn {
  background: #141414;
  border-color: #141414;
  color: #fff;
}

.blog-card {
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border: 0;
  margin: 0;
}

.blog-btn {
  margin-top: 10px;
  width: fit-content;
  min-height: 42px;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
}

.blog-card:hover .blog-btn {
  background: #141414;
  border-color: #141414;
  color: var(--white);
}

.gallery-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid a {
  display: block;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: contain;
  background: #f5f2ec;
  border: 1px solid var(--border);
  transition: transform 0.35s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}

/* FAQ Section Merged into advanced definition below */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: start;
  gap: clamp(26px, 5vw, 80px);
}

.contact-points {
  margin-top: 24px;
  display: grid;
  gap: 8px;
}

.contact-intro h2 {
  max-width: 14ch;
}

.contact-form {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 26px;
}

.contact-points a {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
  color: var(--muted);
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-points a:hover {
  transform: translateY(-3px);
  border-color: #c4bcaf;
  color: var(--ink);
}

.contact-points i {
  color: var(--accent);
}

.contact-feature-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.contact-feature {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  min-height: 92px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 7px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.contact-feature i {
  color: var(--accent);
}

.contact-feature span {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contact-feature:hover {
  transform: translateY(-3px);
  border-color: #c7beb1;
}

.form-row {
  margin-bottom: 14px;
}

.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--muted);
}

.form-control {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cbc6be;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

.form-control:focus {
  outline: none;
  border-color: var(--ink);
}

.form-control::placeholder {
  color: #8f8a82;
  opacity: 1;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.captcha-group {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.captcha-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.captcha-question-box {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid #1f1452;
  background: linear-gradient(135deg, #1f1452 0%, #2a1d6b 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(31, 20, 82, 0.25);
  min-width: 140px;
  font-size: 1.15rem;
}

.captcha-text {
  font-family: 'Courier New', Courier, monospace;
}

.captcha-refresh {
  min-height: 48px;
  border: 2px solid #1f1452;
  background: #1f1452;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(31, 20, 82, 0.25);
}

.captcha-refresh:hover {
  background: #2a1d6b;
  border-color: #2a1d6b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(31, 20, 82, 0.35);
}

.captcha-refresh:active {
  transform: translateY(0);
}

.captcha-answer {
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
  max-width: 200px;
}

.form-error {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  color: #c13221;
}

.alert.alert-success {
  border: 1px solid #8cb292;
  background: #eaf5ec;
  color: #1b4d23;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-wrap {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease;
}

.faq-question::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"]::after {
  content: '\f068';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  background: color-mix(in srgb, var(--light) 40%, transparent);
}

.faq-answer.active {
  max-height: 500px;
  /* Large enough for content */
  padding-bottom: 0;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  background: linear-gradient(180deg, #f3f1ed 0%, #ece8e0 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 22px;
}

.footer-brand-logo {
  width: 240px;
  height: auto;
  margin-bottom: 14px;
}

.footer-brand-text {
  color: var(--muted);
  max-width: 42ch;
}

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 9px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid #cdc7bd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-col h4 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #d9d3c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.back-top {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.subpage-hero {
  padding: 41px 0 65px;
  /* background: #1f1452; */
  color: #f3f2fb;
  background: linear-gradient(110deg, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.58) 46%, rgba(20, 20, 20, 0.7) 100%), url(../images/cta-img/pexels-alleksana-6607599.jpg) center / cover no-repeat fixed;
}

/* .subpage-hero-inner {
  max-width: 900px;
} */

.subpage-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  /* max-width: 16ch; */
  /* line-height: 0.95; */
  color: #f4f3ff;
}

.subpage-hero .eyebrow {
  color: #c8c3e6;
}

.subpage-hero .lead {
  color: #dfdcf0;
}

.hero-breadcrumb {
  margin-top: 12px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 0.96rem;
  color: #fff;
}

.hero-breadcrumb a {
  color: #fff;
}

.hero-breadcrumb span:last-child {
  color: #c8c3e6;
}

.subpage-grid {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
}

.subpage-grid.two-col {
  grid-template-columns: 1.05fr 0.95fr;
}


.clean-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.clean-list li+li {
  margin-top: 8px;
}

figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}


.logo-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  gap: 14px;
}

.logo-track {
  display: flex;
  gap: 14px;
  animation: scroll-x 20s linear infinite;
  white-space: nowrap;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 7px));
  }
}

.logo-carousel .logo-card {
  min-width: 200px;
  max-width: 200px;
  flex-shrink: 0;
}

.logo-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-card {
  margin: 0;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  min-height: 95px;
  display: grid;
  place-items: center;
  padding: 0px;
  transition: transform 0.26s ease, border-color 0.26s ease;
}

.logo-card:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-hover);
}

.logo-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.article-content h3 {
  margin-top: 20px;
}

.universal-cta {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.universal-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(20, 20, 20, 0.78) 0%, rgba(20, 20, 20, 0.58) 46%, rgba(20, 20, 20, 0.7) 100%),
    url(../images/cta-img/pexels-ekrulila-33428414.jpg) center/cover no-repeat fixed;
  z-index: 0;
}

.universal-cta .container {
  position: relative;
  z-index: 1;
}

.universal-cta h2,
.universal-cta .lead {
  color: #f6f4ef;
}

.universal-cta .btn-outline {
  border-color: #f6f4ef;
  color: #f6f4ef;
}

.universal-cta .btn-outline:hover {
  background: #f6f4ef;
  color: #141414;
}

.universal-cta-inner {
  max-width: 900px;
}

.universal-cta .lead {
  margin-top: 8px;
}

.cta-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gallery-grid-large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inquiry-modal {
  border-radius: 0;
  border: 1px solid var(--border);
  background: #f8f6f1;
}

.inquiry-modal .modal-header,
.inquiry-modal .modal-footer {
  border-color: var(--border);
}

.inquiry-modal .modal-title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
}

.inquiry-modal .btn-close {
  filter: grayscale(1);
}

.map-wrap {
  margin-top: 16px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 8px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.service-highlight-card {
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  padding: 20px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

.service-highlight-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.service-highlight-content h2 {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  margin-bottom: 10px;
}

.service-highlight-content p {
  color: var(--muted);
}

.service-highlight-content .btn {
  margin-top: 16px;
}

.product-card,
.equip-card,
.universal-card,
.value-card,
.step-card {
  opacity: 0;
  transform: translateY(20px);
}

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

  .hamburger {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: min(1200px, 92vw);
    background: #f8f6f2;
    border: 1px solid var(--border);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    margin-top: 6px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .inquiry-btn {
    display: none;
  }

  .about-grid,
  .contact-grid,
  .footer-grid,
  .subpage-grid.two-col,
  .service-highlight-card {
    grid-template-columns: 1fr;
  }

  .process-head {
    position: static;
    top: auto;
    margin-bottom: 26px;
  }

  .process-layout {
    grid-template-columns: 1fr;
  }

  .card-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid::before {
    display: none;
  }

  .carousel,
  .carousel__slide {
    height: 620px;
    min-height: 620px;
  }

  .logo-grid,
  .gallery-grid-large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .section {
    padding: 82px 0;
  }

  .process-head-shell {
    padding: 24px 20px;
  }

  .process-card {
    min-height: auto;
  }

  .card-grid,
  .gallery-grid,
  .card-grid-three,
  .logo-grid,
  .gallery-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-row.two-col {
    grid-template-columns: 1fr;
  }

  .contact-feature-grid {
    grid-template-columns: 1fr;
  }

  .carousel__button {
    width: 46px;
    height: 46px;
  }

  .carousel__button--prev {
    right: 66px;
  }

  .carousel,
  .carousel__slide {
    height: 520px;
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 86px;
    height: 48px;
  }

  .main-nav-wrap {
    min-height: 72px;
  }

  .nav-links {
    top: 72px;
  }

  .carousel__slide {
    height: 460px;
    min-height: 460px;
  }

  .slide-overlay {
    left: 12px;
    right: 12px;
    max-width: calc(100% - 24px);
  }

  .card-grid,
  .card-grid-four,
  .gallery-grid,
  .process-grid,
  .card-grid-three,
  .logo-grid,
  .gallery-grid-large {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: clamp(1.7rem, 10vw, 2.4rem);
  }

  .btn {
    min-height: 42px;
    font-size: 0.76rem;
    padding: 9px 16px;
  }

  .footer-brand-logo {
    width: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.msd-navbar .msd-nav-link {
  color: black important;
}


/* ============================================
   MODALS ENHANCEMENT
   ============================================ */
.modal-content.enquirey-modal {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: var(--light);
}

.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-logo {
  height: 35px;
  width: auto;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--ink);
}

.modal-body {
  padding: 24px;
}

.modal-footer {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

/* Navigation Semantic HTML Support */
.main-nav-wrap nav {
  display: contents;
}