/*
Theme Name: PMALA
Theme URI: https://example.com/pmala
Author: Hur Abbas
Description: A bold, conversion-focused WordPress landing page theme for event production and projection mapping companies.
Version: 2.5.0
Requires at least: 6.4
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pmala
Tags: custom-logo, custom-menu, featured-images, one-column, block-styles, accessibility-ready
*/

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background: #fff;
  color: #0d0d0d;
  display: block;
  height: auto;
  left: 8px;
  top: 8px;
  padding: 12px 18px;
  width: auto;
  z-index: 100000;
  text-decoration: none;
  border-radius: 6px;
  clip: auto !important;
  clip-path: none;
}

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --black: #080808;
  --ink: #0d0d0d;
  --panel: #131313;
  --panel-2: #191919;
  --accent: #F2622E;
  --accent-hi: #FF6B35;
  --accent-dark: #d8511f;
  --paper: #ffffff;
  --stone: #F1F0EE;
  --stone-2: #E9E7E4;
  --muted: #8b8b8b;
  --muted-2: #9a9a9a;
  --line-dark: rgba(255, 255, 255, .13);
  --line-light: #E3E1DE;
  --container: 1240px;
  --r-sm: 8px;
  --r: 10px;
  --r-lg: 14px;
  --r-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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

/* ============================================================
   SCROLL REVEAL
   `.reveal-init` is added by JS only, so content stays visible
   with no JS / if IntersectionObserver is unsupported.
   Base `.reveal` fades up; add `.reveal-left`, `.reveal-right`,
   `.reveal-scale` or `.reveal-fade` alongside it for variation.
   ============================================================ */
.reveal.reveal-init {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1.1s cubic-bezier(.16, 1, .3, 1), transform 1.1s cubic-bezier(.16, 1, .3, 1);
}

.reveal.reveal-init.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-left.reveal-init {
  transform: translateX(-56px);
}

.reveal-right.reveal-init {
  transform: translateX(56px);
}

.reveal-scale.reveal-init {
  transform: scale(.9) translateY(18px);
}

.reveal-fade.reveal-init {
  transform: none;
}

.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.stagger-5 { transition-delay: .4s; }
.stagger-6 { transition-delay: .48s; }
.stagger-7 { transition-delay: .56s; }

/* Shared bits ------------------------------------------------ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  background: #fff;
  border: 1px solid var(--line-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #1a1a1a;
}

.section-dark .eyebrow {
  background: #fff;
  border-color: transparent;
  color: #0b0b0b;
}

h2.title {
  margin: 18px 0 0;
  font-size: clamp(30px, 3.55vw, 50px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 700;
}

.lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  max-width: 390px;
  text-align: right;
}

.section-dark .lede {
  color: #9b9b9b;
}

.head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: var(--r-sm);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 26px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: #F2622E;
  color: #c9c9c9;
  font-size: 11.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

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

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  font-size:14px;
}

.topbar-item svg {
  width: 12px;
  height: 12px;
  flex: none;
}

.topbar-item svg * {
  stroke: #fff;
}

.topbar-item a {
  transition: color .2s ease;
  color: #fff;
}

.topbar-item a:hover {
  color: #fff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.coords {
  letter-spacing: .02em;
  color: #fff;
  white-space: nowrap;
  font-size: 14px;
}

.topbar-socials {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-socials a {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3px;
  transition: border-color .2s ease, background .2s ease;
}

.topbar-socials a:hover {
  border-color: var(--accent);
  background: rgba(242, 98, 46, .16);
}

.topbar-socials svg {
  width: 10px;
  height: 10px;
  fill: #fff;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: transparent;
    position: absolute;
    z-index: 220;
    left: 0;
    right: 0;
}

.header .container {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: .03em;
    color: #fff;
}

.logo .custom-logo {
  max-height: 42px;
  width: auto;
}

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

.nav a {
  font-size: 16px;
  font-weight: 500;
  color: #e4e4e4;
  position: relative;
  padding: 4px 0;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

.nav-overlay {
  display: none;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-sm);
  background: linear-gradient(90deg, rgba(201, 201, 201, 0.3) 0%, rgba(227, 227, 227, 0.3) 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease;
}

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

.burger {
  display: none;
  position: relative;
  width: 40px;
  height: 36px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 9px 10px;
  z-index: 210;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.burger span:last-child {
  margin-bottom: 0;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  text-align: center;
  background: url("/wp-content/uploads/2026/07/Hero-section.png") center/cover no-repeat;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 6, .55) 0%, rgba(6, 6, 6, .3) 45%, rgba(6, 6, 6, .7) 100%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 120px 24px 150px;
  max-width: 780px;
  margin: 0 auto;
}

.hero h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(36px, 5vw, 72px);
    line-height: 1em;
    letter-spacing: -.03em;
    font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent-hi);
}

.hero p {
  margin: 20px auto 0;
  max-width: 430px;
  color: #FFFFFFA6;
  font-size: 16px;
  line-height: 1.65;
}

.hero .btn-accent {
  margin-top: 26px;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
    background: #F2622E;
    border-top: 1px solid rgba(255, 255, 255, .07);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden;
    padding: 15px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: slide 34s linear infinite;
}

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

.marquee-group {
  display: flex;
  align-items: center;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 34px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.marquee-item svg {
  width: 13px;
  height: 13px;
  flex: none;
}

.marquee-item svg path {
  stroke: #fff;
}

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

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

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio {
  background: #fff;
  padding: 60px 0 60px;
}

.portfolio-video {
  margin-top: 44px;
  border-radius: 4px;
  overflow: hidden;
  background: #e6e4e1;
}

.portfolio-video video {
  display: block;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.gallery {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #e6e4e1;
  height: 230px;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.g-item:hover img {
  transform: scale(1.05);
}

/* ============================================================
   EXPERTISE
   ============================================================ */
.section-dark {
  background: var(--black);
  color: #fff;
}

.expertise {
  padding: 96px 0 120px;
}

.expertise .title {
  color: #fff;
}

.exp-body {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 260px 1fr 420px;
  gap: 40px;
  align-items: start;
}

.exp-menu {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.exp-menu button {
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  color: #8d8d8d;
  font-size: 16px;
  font-weight: 500;
  padding: 14px 18px;
  cursor: pointer;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}

.exp-menu button:hover {
  color: #d7d7d7;
}

.exp-menu button.is-active {
  color: #fff;
  background: var(--panel);
  border-color: var(--line-dark);
  font-weight: 600;
}

.exp-video {
  position: sticky;
  top: 100px;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--panel);
}

.exp-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.exp-stream {
  display: flex;
  flex-direction: column;
}

.exp-block {
  min-height: 340px;
  padding: 40px 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .42;
  transition: opacity .5s ease;
}

.exp-block.is-active {
  opacity: 1;
}

.exp-num {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--r-pill);
  background: var(--panel-2);
  border: 1px solid var(--line-dark);
  color: #cfcfcf;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 20px;
}

.exp-text {
  margin: 0;
  font-size: 26px;
  line-height: 1.55;
  letter-spacing: -.01em;
  color: #999999;
  font-weight: 400;
}

.exp-text b {
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--stone);
  padding: 90px 0 100px;
  overflow: hidden;
}

.t-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.t-arrows {
  display: flex;
  gap: 10px;
}

.t-arrows button {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  border: 1px solid #d5d3cf;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.t-arrows button:hover {
  background: #0b0b0b;
  border-color: #0b0b0b;
  color: #fff;
}

.t-arrows svg {
  width: 15px;
  height: 15px;
}

.t-arrows button:hover svg path {
  stroke: #fff;
}

.t-viewport {
  margin-top: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 48px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 48px), transparent 100%);
}

.t-viewport::-webkit-scrollbar {
  display: none;
}

.t-track {
  display: flex;
  gap: 14px;
  padding-right: 24px;
}

.t-card {
  flex: 0 0 396px;
  min-height: 420px;
  background: #fff;
  border-radius: var(--r);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
}

.t-quote {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  color: #0D120E;
  font-weight: 500;
  letter-spacing: -0.4px;
}

.t-person {
  display: flex;
  align-items: center;
  gap: 11px;
}

.t-person img {
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  object-fit: cover;
  flex: none;
  background: #ddd;
}

.t-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.t-role {
  font-size: 14px;
  color: #8b8b8b;
  line-height: 1.35;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 96px 0 110px;
}

.process .title {
  color: #fff;
}

.steps {
  margin-top: 48px;
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.step {
  position: relative;
  flex: 1 1 0;
  min-height: 372px;
  border-radius: 16px;
    border: 1px solid #FFFFFF14;
  background: transparent;
  padding: 24px;
  text-align: left;
  color: #fff;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: flex-grow .7s cubic-bezier(.4, 0, .2, 1), background .45s ease, border-color .3s ease, transform .35s ease, box-shadow .35s ease;
  will-change: flex-grow;
  overflow: hidden;
}

.step:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 98, 46, .35);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .32);
}

.step+.step::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(255, 255, 255, .09);
  transition: opacity .4s ease;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
    width: 40px;
    height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(242, 98, 46, .5);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .02em;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
}

.step:hover .step-num {
  transform: scale(1.08);
  background: rgba(242, 98, 46, .12);
  border-color: var(--accent);
}

.step-title {
  margin-top: 24px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #86868a;
  transition: color .35s ease;
}

.step.is-open .step-title {
  color: #fff;
}

.step-desc {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF82;
    max-width: 300px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .4s ease .1s, transform .4s ease .1s;
}

.step-arrow {
    align-self: flex-start;
    width: 35px;
    height: 35px;
    opacity: .75;
    transition: opacity .35s ease, transform .35s ease;
}

.step-arrow path {
  stroke: #fff;
}

.step-body {
  margin-top: auto;
}

.step.is-open {
  flex-grow: 2.6;
  background: #262626;
  border-color: var(--line-dark);
}

.step.is-open .step-desc {
  opacity: 1;
  transform: none;
}

.step.is-open .step-arrow {
  opacity: 0;
  transform: translateY(6px);
}

.step.is-open+.step::before {
  opacity: 0;
}

.step:hover .step-arrow {
  transform: translate(3px, -3px);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: #fff;
  padding: 96px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

.contact h2.title {
  max-width: 420px;
}

.contact-copy {
  margin: 18px 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #000000;
}

.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks li {
display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #767C8C;
    font-weight: 400;
}

.checks svg {
    width: 25px;
    height: 25px;
  flex: none;
}

.checks svg circle {
  stroke: var(--accent);
}

.checks svg path {
  stroke: var(--accent);
}

.form-card {
  background: var(--stone);
  border-radius: var(--r);
  padding: 26px !important;
}

.form-card .forminator-row {
  display: flex !important;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 16px !important;
}

.form-card .forminator-col {
  flex: 1 1 0;
  min-width: 160px;
  width: auto !important;
  padding: 0 !important;
}

.form-card .forminator-field {
  margin-bottom: 0 !important;
}

.form-card .forminator-row:last-child {
  margin-bottom: 0 !important;
}

.form-card .forminator-module-edit-link {
  display: none !important;
}

.form-card .forminator-label {
  display: block;
  font-size: 11.5px !important;
  font-weight: 600 !important;
  color: #4a4a4a !important;
  margin-bottom: 7px !important;
  line-height: 1.4 !important;
}

.form-card .forminator-input,
.form-card select,
.form-card .forminator-textarea {
  width: 100% !important;
  background: #fff !important;
  border: 1px solid #E1DFDC !important;
  border-radius: var(--r-sm) !important;
  padding: 12px 13px !important;
  height: auto !important;
  font-size: 12.5px !important;
  line-height: 1.4 !important;
  color: #1a1a1a !important;
  box-shadow: none !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-card .forminator-textarea {
  min-height: 96px !important;
  resize: vertical;
}

.form-card .forminator-input::placeholder,
.form-card .forminator-textarea::placeholder {
  color: #a8a8a8 !important;
}

.form-card select {
  appearance: none;
  color: #7d7d7d;
  background-image: none;
  cursor: pointer;
}

.form-card .forminator-input:focus,
.form-card select:focus,
.form-card .forminator-textarea:focus {
  outline: none !important;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(242, 98, 46, .12) !important;
}

/* Select2 (Forminator's JS-enhanced dropdown) */
.form-card .select2-container {
  width: 100% !important;
  font-family: inherit;
}

.form-card .select2-selection--single {
  height: auto !important;
  display: flex !important;
  align-items: center;
  background: #fff !important;
  border: 1px solid #E1DFDC !important;
  border-radius: var(--r-sm) !important;
  padding: 12px 40px 12px 13px !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-card .select2-selection__rendered {
  padding: 0 !important;
  font-size: 12.5px !important;
  line-height: 1.4 !important;
  color: #1a1a1a !important;
}

.form-card .select2-selection__placeholder {
  color: #7d7d7d !important;
}

.form-card .select2-selection__arrow {
  height: auto !important;
  top: 50% !important;
  right: 13px !important;
  transform: translateY(-50%);
}

.form-card .select2-selection__arrow b {
  display: none;
}

.form-card .select2-selection__arrow .forminator-icon-chevron-down {
  color: #8b8b8b;
  font-size: 11px;
}

.form-card .select2-container--open .select2-selection--single,
.form-card .select2-container--focus .select2-selection--single {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(242, 98, 46, .12) !important;
}

/* Select2 dropdown panel is appended to <body>, so these rules stay unscoped */
.select2-dropdown {
  border: 1px solid #E1DFDC !important;
  border-radius: var(--r-sm) !important;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.select2-results__option {
  font-size: 12.5px !important;
  padding: 10px 13px !important;
  color: #1a1a1a;
}

.select2-results__option--highlighted[aria-selected] {
  background: var(--accent) !important;
  color: #fff !important;
}

/* Date/time fields with a leading icon */
.form-card .forminator-input-with-icon {
  position: relative;
}

.form-card .forminator-input-with-icon .forminator-input {
  padding-right: 40px !important;
}

.form-card .forminator-input-with-icon > [class*="forminator-icon-"] {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #8b8b8b;
  font-size: 14px;
  z-index: 2;
}

.form-card .forminator-description {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #9a9a9a;
}

.form-card .forminator-button-submit {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100% !important;
  height: auto !important;
  background: var(--accent) !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: var(--r-sm) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 14px 26px !important;
  margin-top: 6px;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease;
}

.form-card .forminator-button-submit:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

.form-card .forminator-response-message {
  margin: 12px 0 0;
  font-size: 11.5px;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--stone);
  padding: 88px 0 96px;
  text-align: center;
}

.faq .title {
  margin-top: 16px;
}

.faq-sub {
  margin: 16px auto 0;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: #000000;
}

.faq-list {
  margin: 42px auto 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.faq-item {
  background: #fff;
  border: 1px solid #E6E4E1;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s ease;
}

.faq-item.is-open {
  border-color: #d6d3cf;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: 0;
  padding: 17px 18px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #141414;
  text-align: left;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: var(--r-pill);
  background: #111;
  display: grid;
  place-items: center;
  transition: background .3s ease, transform .35s ease;
}

.faq-toggle svg {
  width: 11px;
  height: 11px;
}

.faq-toggle svg path {
  stroke: #fff;
}

.faq-item.is-open .faq-toggle {
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.3, .7, .2, 1);
}

.faq-a p {
  margin: 0;
  padding: 0 60px 18px 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #6b6b6b;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  background: url("/wp-content/uploads/2026/07/Group-1000004050.png") center/cover no-repeat;
  overflow: hidden;
}

.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, .62), rgba(8, 8, 8, .72));
  z-index: 1;
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 90px 24px;
  max-width: 640px;
}

.cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.15;
  letter-spacing: -.025em;
  font-weight: 700;
}

.cta p {
    margin: 16px auto 0;
    color: #c8c8c8;
    font-size: 16px;
    line-height: 1.65;
}

.cta .btn-accent {
  margin-top: 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: #fff;
  padding: 64px 0 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

.footer-col {
  flex: 0 0 auto;
}

.footer-about + .footer-col {
  margin-left: auto;
}

.footer-about {
  max-width: 290px;
}

.footer .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-about p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #FFFFFF;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  transition: background .25s ease, border-color .25s ease;
}

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

.footer-socials svg {
  width: 13px;
  height: 13px;
  fill: #dcdcdc;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col a,
.footer-col li {
font-size: 14px;
    color: #A8AEBF;
    transition: color .2s ease;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-contact svg {
  width: 12px;
  height: 12px;
  flex: none;
}

.footer-contact svg * {
  stroke: var(--accent);
}

.footer-bottom {
    margin-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 20px 0 22px;
    text-align: center;
    font-size: 16px;
    color: #fff;
}

/* ============================================================
   INNER PAGES (page.php / single.php / index.php / 404.php)
   ============================================================ */
.content-area {
  background: #fff;
  padding: 110px 0;
}

.entry-card {
  max-width: 760px;
  margin: 0 auto;
}

.entry-card .eyebrow {
  margin-bottom: 18px;
}

.entry-card h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 700;
}

.entry-card h1 a {
  transition: color .2s ease;
}

.entry-card h1 a:hover {
  color: var(--accent);
}

.entry-card .wp-post-image {
  border-radius: var(--r);
  margin: 0 0 32px;
  width: 100%;
  height: auto;
}

.entry-content {
  font-size: 15px;
  line-height: 1.75;
  color: #3a3a3a;
}

.entry-content p {
  margin: 0 0 20px;
}

.entry-content img {
  border-radius: var(--r);
  margin: 24px 0;
  max-width: 100%;
  height: auto;
}

.entry-content a {
  color: var(--accent);
  text-decoration: underline;
}

.entry-card .btn-accent {
  margin-top: 8px;
}

.pagination {
  display: flex;
  gap: 10px;
  margin-top: 48px;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line-light);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px) {
  .exp-body {
    grid-template-columns: 220px 1fr;
  }

  .exp-stream {
    grid-column: 2;
  }

  .contact-grid {
    gap: 44px;
  }

  .t-card {
    flex-basis: 340px;
  }
}

@media (max-width:900px) {
  .topbar-left .topbar-item:nth-child(2) {
    display: none;
  }


  .coords {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #0d0d0d;
    border-left: 1px solid var(--line-dark);
    padding: 100px 28px 28px;
    overflow-y: auto;
    box-shadow: -16px 0 40px rgba(0, 0, 0, .35);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.3, .7, .2, 1);
    z-index: 200;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    font-size: 24px;
    line-height: 1.8em;
    font-weight: 500;
    color: #fff !important;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 190;
  }

  .nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .process , .contact{
    padding: 60px 0 60px;
  }

  .burger {
    display: block;
  }

  .header .btn-nav {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero-inner {
    padding: 90px 24px 100px;
  }

  .portfolio-video video {
    height: 220px;
  }

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

  .head-row {
    align-items: flex-start;
  }

  .lede {
    text-align: left;
    max-width: none;
  }

  .exp-body {
   display: block;
  }

  .exp-menu {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 6px;
  }

  .exp-menu button {
    white-space: nowrap;
    border-color: var(--line-dark);
        font-size: 14px;
        padding: 10px 12px;
  }

  .exp-video {
    position: static;
  }

  .exp-video video {
    aspect-ratio: 16 / 9;
  }

  .form-card{
    padding: 25px 10px 0px !important;
  }

  .exp-block {
    min-height: auto;
    padding: 22px 0;
    opacity: 1;
  }

  .exp-text {
    font-size: 18px;
  }

  .steps {
    flex-direction: column;
  }

  .step {
    flex: none;
    min-height: auto;
    overflow: visible;
    border: 1px solid var(--line-dark);
    background: #262626;
  }

  .step-title {
    color: #fff;
  }

  .step-desc {
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .step-arrow {
    display: none;
  }

  .step+.step::before {
    display: none;
  }

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

  .footer-grid {
    gap: 32px;
  }

  .footer-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .footer-col {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-about + .footer-col {
    margin-left: 0;
  }
}

@media (max-width:560px) {
  .t-card {
    flex-basis: 82vw;
    min-height: 360px;
  }

  .faq-q {
    font-size: 14px;
  }

  .footer-col {
    flex: 1 1 100%;
  }
}

@media (max-width:480px) {
  .logo {
    font-size: 24px;
  }

  .hero-inner {
    padding: 70px 20px 80px;
  }

  .cta-inner {
    padding: 60px 20px;
  }

  .step-num {
    width: 34px;
    height: 34px;
  }

  .step-arrow {
    width: 28px;
    height: 28px;
  }

  .faq-a p {
    padding: 0 18px 18px;
  }

  .t-card {
    flex-basis: 88vw;
  }

  .form-card .forminator-col {
    min-width: 0;
    flex-basis: 100%;
    margin: 0 !important;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero-video,
  .cta-video {
    display: none;
  }
}

span.forminator-icon-chevron-down {
    display: none !important;
}
.forminator-ui.forminator-custom-form[data-design=default] .forminator-input-with-icon .forminator-input{
      padding-left: 35px !important;
}