:root {
  --primary: #F5B301;
  --primary-light: #FFD56A;
  --dark: #111111;
  --black: #000000;
  --bg-light: #F5F5F5;
  --text-muted: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, a, button {
  font-family: 'Inter', sans-serif;
}


html,
body {
  height: 100%;
   font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

body {
  font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

/* ================================
   HEADER
================================ */
.zr-header {
  background: #ffffff;
  border-bottom: 3px solid var(--primary);
  padding: 14px 0;
  z-index: 999;
}


.zr-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
}

/* ================================
   BUTTONS
================================ */
.zr-btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #000;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245,179,1,0.45);
  color: #000;
}

.zr-btn-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
  padding: 10px 26px;
  border-radius: 8px;
  background: transparent;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.zr-btn-outline:hover {
  background: var(--dark);
  color: #ffffff;
}

/* ================================
   DARK GRADIENT BANNER
================================ */

.zr-hero {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(245,179,1,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,213,106,0.2), transparent 45%),
    linear-gradient(135deg, #0b0b0b, #161616);
}
.zr-bg-image {
  position: absolute;
  inset: 0;
  background: url("../img/banner.jpg") center/cover no-repeat;
  opacity: 0.3; /* 👈 low opacity */
  z-index: 0;
}
.zr-hero .container {
  position: relative;
  z-index: 2;
}

/* Soft glowing circles */
.zr-hero::before,
.zr-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
}

.zr-hero::before {
  width: 320px;
  height: 320px;
  background: rgba(245,179,1,0.45);
  top: -80px;
  left: -80px;
}

.zr-hero::after {
  width: 260px;
  height: 260px;
  background: rgba(255,213,106,0.35);
  bottom: -60px;
  right: -60px;
}

/* Ensure content stays above glow */
.zr-hero .container {
  position: relative;
  z-index: 2;
}

/* ================================
   TEXT STYLE (LIGHT)
================================ */
.zr-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
}

.zr-title span {
  color: var(--primary);
}

.zr-subtitle {
 
  font-size: 17px;
  color: #cccccc;
  line-height: 1.7;
  max-width: 850px;
  margin: 25px auto;
}

/* ================================
   STATS (LIGHT)
================================ */
.zr-stats h3 {
  color: #fff;
    font-weight: 700;
}

.zr-stats p {
   color: var(--primary);
}

/* ================================
   BUTTONS ON DARK
================================ */
.zr-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.zr-btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .zr-title {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .zr-title {
    font-size: 32px;
  }

  .zr-hero {
    padding: 90px 0;
  }
}


/* ================================
   HERO GLOW ANIMATION
================================ */

.zr-hero {
  background: #0b0b0b;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

/* Animated glowing circles */
.zr-hero::before,
.zr-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.75;
  animation: glowZoom 10s ease-in-out infinite;
}

/* Left glow */
.zr-hero::before {
  background: radial-gradient(circle, var(--primary), transparent 65%);
  top: -140px;
  left: -140px;
}

/* Right glow */
.zr-hero::after {
  background: radial-gradient(circle, var(--primary-light), transparent 65%);
  bottom: -140px;
  right: -140px;
  animation-delay: 5s;
}

/* Glow animation */
@keyframes glowZoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.25) translate(30px, -30px);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Content above glow */
.zr-hero .container {
  position: relative;
  z-index: 2;
}

/* Title */
.zr-title {
  font-size: 46px;
  font-weight: 800;
  color: #ffffff;
}

.zr-title span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.zr-subtitle {
  color: rgba(255,255,255,0.75);
}

/* Stats */
.zr-stats h3 {
   color: #fff;
}

.zr-stats p {
 
  color: var(--primary);
}


/* ================================
   ABOUT SECTION
================================ */

.zr-about {
  padding: 60px 0;
  background: #ffffff;
}

/* Image Box */
.zr-about-img {
  width: 100%;
  height: 320px;
  background: #cfcfcf;
  border-radius: 12px;
}

/* Title */
.zr-about-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
}

.zr-about-title span {
  color: var(--primary);
}

/* Accent underline */
.zr-about-title::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--primary);
  left: 0;
  bottom: -8px;
  border-radius: 4px;
}

/* Text */
.zr-about-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-top: 25px;
  max-width: 520px;
}

/* Responsive */
@media (max-width: 991px) {
  .zr-about {
    padding: 70px 0;
  }

  .zr-about-title {
    font-size: 28px;
  }

  .zr-about-img {
    height: 260px;
  }
}
/* ================================
   COUNTER SECTION
================================ */

.zr-counter-sec {
    background: #fef8e7;
    padding: 35px 0;
}

.zr-counter-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
}

.zr-counter-subtitle {
  font-size: 15px;
  color: #333;
  margin-top: 6px;
}

/* Counter Layout */
.zr-counter-wrap {
  margin-top: 40px;
  position: relative;
}

.zr-counter-item {
  position: relative;
}

/* Vertical dividers */
.zr-counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: #777;
}

/* Numbers */
.zr-counter-item h3 {
  font-size: 36px;
  font-weight: 800;
  color: #000;
}



/* Label */
.zr-counter-item p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 4px;
  color: #000;
}

/* Responsive */
@media (max-width: 767px) {
  .zr-counter-item:not(:last-child)::after {
    display: none;
  }

  .zr-counter-item {
    margin-bottom: 25px;
  }
}

/* ================================
   FEATURES SECTION
================================ */

.zr-features {
  padding: 60px 0;
  background: #ffffff;
}

.zr-features-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
}

/* Feature Card */
.zr-feature-card {
  /* background: linear-gradient(
    135deg,
    rgba(245,179,1,0.08),
    rgba(255,213,106,0.18)
  ); */
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
#box-1{
  background-color: #f4faff;
  border: 1px solid #d5e9fa;
}
#box-2{
  background-color: #fef8e7;
  border: 1px solid #fbefcc;
}
#box-3{
  background-color: #fff4f4;
  border: 1px solid #facccc;
}
#box-4{
  background-color: #f9fff2;
  border: 1px solid #a6d670;
}
/* Hover */
.zr-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(116, 116, 116, 0.25);
}

/* Icon */
.zr-feature-icon {
  width: 56px;
  height: 56px;
  background: #000;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* Title */
.zr-feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

/* Text */
.zr-feature-card p {
  font-size: 15px;
  color: #444;
  margin-top: 8px;
  line-height: 1.6;
}

/* CTA Buttons */
.zr-feature-cta {
  margin-top: 45px;
}

/* Responsive */
@media (max-width: 767px) {
  .zr-features {
    padding: 60px 0;
  }
}

/* ================================
   POWER SECTION (DARK)
================================ */

.zr-power {
  position: relative;
  padding: 70px 0;
  background: 
              #0b0b0b;
  overflow: hidden;
}

/* Glow blobs
.zr-power::before,
.zr-power::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.6;
  animation: powerGlow 12s ease-in-out infinite;
} */

/* .zr-power::before {
  background: var(--primary);
  top: -120px;
  left: -120px;
}

.zr-power::after {
  background: var(--primary-light);
  bottom: -120px;
  right: -120px;
  animation-delay: 6s;
} */

@keyframes powerGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Content above glow */
.zr-power .container {
  position: relative;
  z-index: 2;
}

/* Title */
.zr-power-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
}

.zr-power-title span {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle */
.zr-power-subtitle {
  max-width: 720px;
  margin: 12px auto 0;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
}

/* Cards */
.zr-power-card {
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
  backdrop-filter: blur(10px);
}

/* Hover */
.zr-power-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(245,179,1,0.25);
}

/* Icon */
.zr-power-icon {
  width: 54px;
  height: 54px;
  background: #000;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

/* Card Title */
.zr-power-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

/* Card Text */
.zr-power-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 767px) {
  .zr-power {
    padding: 60px 0;
  }

  .zr-power-title {
    font-size: 31px;
  }
  .zr-power-card{

  background: rgba(255, 255, 255, 0.1);
  }
}

/* ================================
   QC AUDIT SECTION
================================ */

.zr-qc {
  padding: 60px 0;
  background: #ffffff;
}

.zr-qc-heading {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
}

/* LEFT CARD */
.zr-qc-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border: 1px solid #eee;
}

.zr-qc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.zr-qc-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.zr-qc-title i {
  color: var(--primary);
  font-size: 18px;
}

.zr-qc-title small {
  display: block;
  font-size: 12px;
  color: #666;
}

.zr-qc-score {
  background: #e9f9ef;
  color: #1b8f4a;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 20px;
}

/* QC LIST */
.zr-qc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zr-qc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 8px;
}

.zr-qc-list li.success {
  background: #f1fbf5;
  color: #1b8f4a;
}

.zr-qc-list li.warning {
  background: #fff4e5;
  color: #b86a00;
}

.zr-qc-footnote {
  font-size: 12px;
  color: #666;
  margin-top: 12px;
}

/* RIGHT CONTENT */
.zr-qc-content h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
}

.zr-qc-content h3 span {
  color: #6c757d;
}

.zr-qc-content p {
  font-size: 16px;
  color: #444;
  margin-top: 12px;
  line-height: 1.6;
}

.zr-qc-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* Highlight Box */
.zr-qc-highlight {
  display: flex;
  gap: 14px;
  background: #f5f6f8;
  padding: 16px;
  border-radius: 12px;
  margin-top: 18px;
}

.zr-qc-highlight i {
  color: var(--primary);
  font-size: 20px;
}

.zr-qc-highlight p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #555;
}

/* Responsive */
@media (max-width: 991px) {
  .zr-qc {
    padding: 60px 0;
  }

  .zr-qc-heading {
    font-size: 26px;
  }

  .zr-qc-content h3 {
    font-size: 26px;
  }
  .zr-qc-content p {
    font-size: 15px;
    color: #444;
    text-align: justify;
    margin-top: 12px;
    line-height: 1.6;
}
.edit-permit {
    padding: 0px 0 60px;
    background: #fff;
    font-family: 'Segoe UI', sans-serif;
}
.editor-mockup {
    position: relative;
    border-radius: 14px;
    padding: 10px;
}
.custom-footer .container{
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center!important;
}
}

@media (max-width: 768px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
  .zr-header .container .flex-head{
  flex-wrap: wrap;
    justify-content: center !important;
    gap: 10px;
}

}

.edit-permit{
  padding:40px 0 60px;
  background:#fff;
  font-family:'Segoe UI', sans-serif;
}

.edit-permit h2{
  font-size:36px;
  font-weight:800;
  margin-bottom:8px;
}

.edit-permit p{
  color:#555;
  font-size:16px;
}

.small-label{
  font-size:12px;
  font-weight:700;
  color:#ff8c00;
  letter-spacing:1px;
}

.edit-permit h4{
  font-size:26px;
  font-weight:800;
  margin:12px 0;
}

.edit-permit h4 span{
  color:#6b7280;
}

.desc{
  font-size:15px;
  color:#444;
  margin-bottom:22px;
  line-height:1.6;
}

/* LIST */
.edit-list{
  list-style:none;
  padding:0;
}

.edit-list li{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:5px;
  font-weight: 500;
  padding: 5px;
  font-size:14px;
  color:#111;
  background: #fff;
}

.edit-list i{
  color:#444444;
  font-size:16px;
  padding: 10px;
  background-color: #ededed;
}

/* RIGHT MOCKUP */
.editor-mockup{
  position:relative;
 
  border-radius:14px;
  padding:20px;
  
}

.editor-mockup img{
  width:100%;
  border-radius:10px;
}

.auto-tag{
  position:absolute;
  right:18px;
  top:18px;
  background:#ffb703;
  color:#000;
  font-size:11px;
  padding:4px 10px;
  border-radius:20px;
  font-weight:600;
}

/* BOTTOM FEATURES */
.permit-feature{
  background:#f4f5f7;
  padding:18px;
  border-radius:10px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:17px;
  font-weight:600;
}

.permit-feature i{
  font-size:20px;
  color:#5b6bff;
}

/* RESPONSIVE */
@media(max-width:991px){
  .edit-permit h2{
    font-size:28px;
  }
}

.faq-section{
  padding:60px 0;
  background:#f8f9fb;
  font-family:'Segoe UI', sans-serif;
}

.faq-title{
  font-size:34px;
  font-weight:800;
  color:#111;
}

.faq-subtitle{
  font-size:15px;
  color:#6b7280;
}

/* Accordion Card */
.faq-accordion .accordion-item{
  border:none;
  margin-bottom:14px;
  border-radius:12px;
  overflow:hidden;
  background:#ffffff;
  box-shadow:0 10px 28px rgba(0,0,0,0.05);
}

/* Button */
.faq-accordion .accordion-button{
  background:#ffffff;
  color:#111;
  font-size:16px;
  font-weight:600;
  padding:18px 22px;
}

.faq-accordion .accordion-button:not(.collapsed){
  background: #fff0cb;
    color: #c78d00;
}

.faq-accordion .accordion-button:focus{
  box-shadow:none;
}

/* Icon */
.faq-accordion .accordion-button::after{
  background-size:14px;
}

/* Body */
.faq-accordion .accordion-body{
  background:#ffffff;
  font-size:15px;
  color:#444;
  padding:18px 22px;
  line-height:1.6;
}

/* Mobile */
@media(max-width:768px){
  .faq-title{
    font-size:28px;
  }
  .zr-logo img{
    width: 200px!important;
  }
  .zr-header{
    padding: 10px 10px;
  }
  .zr-title {
    font-size: 28px;
  }
  .zr-subtitle br{
    display: none;
  }
  .zr-hero{
    padding: 50px 0 64px;
  }
  .zr-about-text{
    font-size: 14px;
    text-align: justify;
  }
  .zr-counter-item h3 {
    font-size: 30px;
    font-weight: 800;
    color: #000;
}
.zr-feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}
.fixed-top{
  position: inherit!important;
}

}

.btn-dark{
  border: 2px solid #0b0b0b;
  color: #0b0b0b;
}

.btn-dark:hover{
  border: 2px solid #0b0b0b;;
  background-color: #0b0b0b;;
  color: #fff;
}

.cta-form-section{
  padding:60px 0;
  /* background:
    radial-gradient(circle at top left, rgba(255,140,0,0.15), transparent 40%),
    radial-gradient(circle at bottom right, rgba(79,70,229,0.18), transparent 40%),
    #0b0f1a; */
  /* color:#fff; */
  font-family:'Segoe UI', sans-serif;
}

.cta-form-section h2{
  font-size:38px;
  font-weight:800;
  margin-bottom:10px;
  color: #000;
}

.cta-form-section p{
  font-size:16px;
  color:#525252;
}

/* FORM */
.cta-form{
  max-width:820px;
  margin:0 auto;
}

/* INPUT */
.cta-input{
  background:transparent;
  border:none;
  border-bottom:1.5px solid rgba(255,255,255,0.4);
  border-radius:0;
  padding:14px 4px;
  font-size:15px;
  color:#fff;
}

.cta-input::placeholder{
  color:#9aa3c7;
}

.cta-input:focus{
  outline:none;
  box-shadow:none;
  border-bottom-color:#ff8c00;
  background:transparent;
  color:#fff;
}

/* SELECT */
.cta-input option{
  color:#000;
}

/* BUTTON */
.cta-btn{
  background:linear-gradient(135deg,#ff8c00,#ffb703);
  border:none;
  padding:14px 42px;
  border-radius:30px;
  font-size:15px;
  font-weight:700;
  color:#000;
  transition:.3s;
}

.cta-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(255,183,3,0.4);
}

/* MOBILE */
@media(max-width:768px){
  .cta-form-section h2{
    font-size:28px;
  }
}
.custom-footer {
  background-color: #f1f1f1;
  color: #000;
  font-size: 14px;
}
#crmWebToEntityForm.zcwf_lblLeft{
  border: 1px solid #e1e1e1;
}

.zcwf_col_fld input{
  width: 100%!important;
}

.custom-footer .footer-social a {
  color: #8d8d8d; /* light gray */
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s;
}

.custom-footer .footer-social a:hover {
  color: #000; /* icon color changes to black on hover */
  text-decoration: none;
}

.footer-text a{
  color: #b86a00;
  text-decoration: none;
}

.footer-text{
  font-weight: 500;
  color: #444;
}

/* COMMON */
.wm-title{
  font-size:40px;
  font-weight:800;
  margin-bottom:20px;
  color:#0b0f1a;
}

.wm-title.light{
  color:#fff;
}

.wm-desc{
  max-width:700px;
  margin:0 auto;
  color:#dadada;
  font-size:17px;
}

/* HOW IT WORKS */
.wm-how-it-works{
  padding:60px 0;
  background:#ffffff;
  font-family:'Segoe UI', sans-serif;
}

.wm-step{
  background:#f9fafb;
  border-radius:14px;
  padding:26px 22px;
  height:100%;
  position:relative;
  transition:.35s;
  border:1px solid #eee;
}

.wm-step:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.08);
}

.wm-step.active{
  border:2px solid #fbbf24;
  background:#fff;
}

.wm-step-no{
  font-size:22px;
  font-weight:800;
  color:#fbbf24;
}

.wm-step h6{
  font-size:15px;
  font-weight:700;
  margin:10px 0 6px;
}

.wm-step p{
  font-size:13px;
  color:#555;
}

/* RESULTS – DARK HERO STYLE */
.wm-results{
  padding:60px 0;
  background:
    #0b0f1a;
  font-family:'Segoe UI', sans-serif;
}

/* RESULT CARDS */
.wm-result-card{
  background:#111827;
  padding:32px 24px;
  border-radius:16px;
  color:#fff;
  transition:.35s;
  border:1px solid rgba(255,255,255,0.08);
}

.wm-result-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 45px rgba(251,191,36,0.25);
}

.wm-result-card i{
  font-size:30px;
  color:#fbbf24;
  margin-bottom:14px;
}

.wm-result-card p{
  font-size:14px;
  margin:0;
}



/* RESPONSIVE */
@media(max-width:768px){
  .wm-title{
    font-size:26px;
  }
}

.flex-btn{
  gap: 10px;
}


.wm-light-section {
  background-color: #ffffff;
}

/* Headings */
.wm-light-title {
  color: #000000;
  font-weight: 700;
}



.wm-light-subtitle {
  color: #555;
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* Table Wrapper */
.wm-table-wrapper {
  background-color: #fafafa;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Table */
.wm-light-table {
  margin-bottom: 0;
}

.wm-light-table thead th {
  background-color: #f5b301;
  color: #000;
  font-weight: 600;
  border: none;
}

.wm-light-table tbody td {
  border-color: #e6e6e6;
  padding: 1rem;
  vertical-align: top;
}

/* Left Labels */
.wm-label {
  font-weight: 600;
  color: #000;
  white-space: nowrap;
}

/* Hover */
.wm-light-table tbody tr:hover {
  background-color: #fff6dd;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .wm-light-table thead {
    display: none;
  }

  .wm-light-table tbody tr {
    display: block;
    border-bottom: 1px solid #e6e6e6;
    padding: 1rem 0;
  }

  .wm-light-table tbody td {
    display: block;
    padding: 0.4rem 0;
  }

  .wm-label {
    color: #f5b301;
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
}


.wm-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Mobile */
@media (max-width: 768px) {
  .wm-form-wrapper {
    padding: 20px;
  }
}
