/* ============================================================
   MEBL – Global Styles
   Image/font assets are referenced from the mebl-website
   public directory. Update paths when deploying to WordPress.
   Assets base: ../mebl-website/public/
   ============================================================ */

/* -- Eastman Custom Font ------------------------------------ */
@font-face {
  font-family: 'Eastman';
  src: url('../fonts/Eastman-Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman';
  src: url('../fonts/Eastman-Medium.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman';
  src: url('../fonts/Eastman-Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Eastman';
  src: url('../fonts/Eastman-Extrabold.woff') format('woff');
  font-weight: 900;
  font-display: swap;
}

/* -- CSS Variables ----------------------------------------- */
:root {
  --primary-color: #104161;
  --secondary-color: #F8A24F;
  --screen-width-limit: 1280px;
  --font-main: 'Eastman', sans-serif;
}

/* -- Lenis scroll ------------------------------------------ */
html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* -- Reset -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

body {
  font-family: var(--font-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; }
p { text-wrap: pretty; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }

ul, ol { list-style: none; padding: 0; }
a { text-decoration: none; }

/* -- Utility ------------------------------------------------ */
.container {
  max-width: var(--screen-width-limit);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-heading {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: white;
  text-align: center;
}

.section-heading h2 {
  font-size: 2rem;
  font-weight: 900;
  max-width: 800px;
}

.section-heading p {
  font-size: 1rem;
  max-width: 800px;
  line-height: 1.8;
}

@media screen and (max-width: 780px) {
  .section-heading {
    padding: 4rem 2.5rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.5rem 3.5rem;
  /* font-weight: 700; */
  /* font-size: 0.9rem; */
  letter-spacing: 0.05em;
  /* text-transform: uppercase; */
  border: 1px solid white;
  color: black;
  background: white;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}


.btn:hover {
  background: transparent;
  color: white;
}

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

.btn-dark:hover {
  background: white;
  color: var(--primary-color);
}

@media screen and (max-width: 780px) {
  .btn { padding-left: 2rem; padding-right: 2rem; }
}
.mebl-faq-section{
    max-width:1000px;
    margin:auto;
    padding: 50px 0px;
}

.mebl-faq-heading{
    text-align:center;
    margin-bottom:50px;
}

.mebl-faq-heading h2{
    font-size: 2rem;
    font-weight: 900;
    color:#104161;
    margin-bottom:12px;
}

.mebl-faq-heading p{
    font-size:18px;
    color:#6b7280;
}

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

.mebl-faq-item{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:
        0 20px 25px -5px #0000001a,
        0 8px 10px -6px #0000001a;
    transition:.3s ease;
}

.mebl-faq-item.active{
    border:2px solid #f8a24f;
}

.mebl-faq-question{
    width:100%;
    border:none;
    background:none;
    cursor:pointer;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    text-align:left;
}

.mebl-faq-question span{
    font-size:20px;
    font-weight:600;
    color:#111827;
    line-height:1.4;
}

.mebl-faq-icon{
    min-width:42px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:#f8a24f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:600;
    color:#000;
    transition:.3s ease;
}

.mebl-faq-item.active .mebl-faq-icon{
    transform:rotate(45deg);
}

.mebl-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.mebl-faq-answer-inner{
    padding:0 30px 30px;
}

.mebl-faq-answer p{
    font-size:16px;
    line-height:1.8;
    color:#4b5563;
}

@media(max-width:768px){

    .mebl-faq-heading h2{
        font-size:34px;
    }

    .mebl-faq-question{
        padding:22px;
    }

    .mebl-faq-question span{
        font-size:18px;
    }

    .mebl-faq-answer-inner{
        padding:0 22px 22px;
    }
}