/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  caret-color: transparent;
}

/* 🔥 HEADER HEIGHT VARIABLE */
:root {
  --header-height: 95px;   /* pehle 85px tha */
}

html, body {
  width: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  background: black; /* only body background */

}

/* 🔥 REAL FIX */
body {
  padding-top: var(--header-height);
}

/* ================= HEADER ================= */
.header {
   background: black;

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
box-shadow: 0 0px 55px rgb(131, 122, 122);
}

.nav-container {
  max-width: 1500px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

/* ================= NAV DESKTOP ================= */
.nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav a {
  position: relative;
  color: #FFFDD0;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0%;
  height: 2px;
 background-color: #FFF1E6; 
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

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

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

.nav .btn_nav {
  padding: 10px 18px;
  background: #6b5c45;
  color: #fff;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav .btn_nav:hover {
  background: transparent;
   color: #FFFDD0; 
 border: 2px solid #FFFDD0;
  transform: translateY(-1px);
}

/* ================= HAMBURGER ================= */
.menu-icon,
.close-icon {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #FFFDD0;
}

/* ================= MOBILE & TABLET ================= */


/* ===== FIX FOR 1084px TO 768px ONLY ===== */

@media (max-width: 1084px) and (min-width: 769px) {
  
  .nav-container {
    padding: 12px 18px;   /* spacing adjust */
  }

  .nav {
    gap: 20px;            /* gap reduce */
  }

  .nav a {
    font-size: 13px;      /* text small */
    letter-spacing: 0.8px;
  }

  .logo img {
    height: 40px;         /* logo adjust */
  }

  .nav .btn_nav {
    padding: 8px 14px;    /* button adjust */
    font-size: 12px;
  }
}


@media screen and (max-width: 950px) and (min-width: 769px) {
  .nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav a { font-size: 13px; }
  .nav .btn_nav { padding: 8px 14px; font-size: 13px; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
  background: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 65px;
    transition: right 0.3s ease;
    justify-content: flex-start; /* center ki jagah upar se start */
    padding-top: 120px;          /* jitna upar lana ho utna adjust */
    gap: 40px;   
  }
  .nav.active { right: 0; }

  .menu-icon { display: block; }

  .close-icon {
    position: fixed;
    top: 20px;
    right: 25px;
    display: none;
    z-index: 1001;
  }
}

@media (min-width: 769px) {
  .menu-icon, .close-icon { display: none !important; }
  .nav {
    position: static;
    height: auto;
    flex-direction: row;
    right: 0;
  }

   :root {
    --header-height: 70px;
  }
}



@media (max-width: 480px) {
  .logo img { height: 38px; }
}


/* ================= MAIN CONTENT PLACEHOLDER ================= */
main {
  min-height: auto;
  padding-top: 0;
}





/* main page content start  */


/* ================= IMAGE PREVIEW ================= */
/* ================= IMAGE PREVIEW ================= */


.architecture-section {
  background: black;
  padding: 80px 6%;
  text-align: center;
  color: #FFFDD0;
  font-family: 'Poppins', sans-serif;
}

.arch-title {
  letter-spacing: 5px;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Tablet */
@media (max-width: 1024px) {
  .arch-title {
    font-size: 20px;
    letter-spacing: 4px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .arch-title {
     font-size: 20px;
    padding: 5px;
    line-height: 1.6;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .arch-title {
    font-size: 23px;
    padding: 5px;
     letter-spacing: 3px;
  }
}


.arch-desc {
  max-width: 1300px;
  margin: auto;
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  letter-spacing: 2px;
  margin-bottom: 60px;
  padding: 0 20px; /* small devices ke liye safe space */
}

/* ================= RESPONSIVE ================= */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
  .arch-desc {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 1.6px;
    margin-bottom: 50px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .arch-desc {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1.3px;
    margin-bottom: 45px;
    padding: 0 18px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .arch-desc {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 1px;
    margin-bottom: 35px;
    padding: 0 15px;
  }
}

/* Very Small Devices */
@media (max-width: 360px) {
  .arch-desc {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.8px;
    margin-bottom: 30px;
  }
}

/* TABS */
.arch-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin: 40px 0;
}

.arch-tabs .tab {
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FFFDD0;
  position: relative;
}

.arch-tabs .tab.active {
  font-weight: 600;
}

.arch-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FFFDD0;
}

/* GALLERY */
.arch-gallery {
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.img-set {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.img-set.active {
  display: grid;
}

.img-set img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.img-set img:hover {
  transform: scale(1.04);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .img-set {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .img-set {
    grid-template-columns: 1fr;
  }
}

/* IMAGE ZOOM MODAL */
.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.img-modal img {
  max-width: 95%;
  max-height: 90vh;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  font-weight: 300;
}

/* ANIMATION */
@keyframes zoomIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* MOBILE FIX */
@media (max-width: 480px) {
  .close-modal {
    font-size: 32px;
    top: 15px;
    right: 15px;
  }
}


/* button part form  */

/* CTA SECTION */
/* .bespoke-cta-section {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  background: #fbf6ee;
}

.bespoke-cta-btn {
  background: #6d5b4b;
  color: #fff;
  border: none;
  padding: 18px 40px;
  font-size: 15px;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.bespoke-cta-btn:hover {
  background: #5b4b3d;
}

.bespoke-arrow {
  background: #fff;
  color: #000;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MODAL */
.bespoke-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.bespoke-modal.active {
  display: flex;
}

.bespoke-modal-box {
  background: #d8d3c9;
  width: 90%;
  max-width: 480px;
  padding: 30px;
  border-radius: 6px;
  position: relative;
}

.bespoke-close {
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
  font-size: 18px;
}

.bespoke-title {
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: #5b4b3d;
} 






/* ================= FOOTER ================= */

/* ================= FOOTER ================= */

.vedam-footer {
  width: 100%;              /* 🔥 full width */
  background: black;        /* 🔥 full background */
}

/* inner container */
.vedam-bottom {
  position: static;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 20px 20px;          
  flex-wrap: wrap;
  gap: 20px;
  background: transparent;   /* 🔥 remove black from here */
}

.vedam-left {
  font-size: 12px;
  color: #FFFDD0;
  line-height: 1.8;
}

/* SOCIAL */
.vedam-social-wrap {
  text-align: right;
}

.vedam-social {
  display: flex;
  gap: 20px;
  color: #FFFDD0;
  justify-content: flex-end;
}

.vedam-social a {
  font-size: 26px;
  cursor: pointer;
  color: #FFFDD0;
  animation: dance 2.8s infinite ease-in-out;
}

.vedam-social i:nth-child(2) { animation-delay: .3s; }
.vedam-social i:nth-child(3) { animation-delay: .6s; }
.vedam-social i:nth-child(4) { animation-delay: .9s; }

.vedam-social i:hover {
  transform: scale(1.15);
  transition: 0.3s;
}

.vedam-copy {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.6;
  color: #FFFDD0;
  opacity: 0.8;
}

/* animation */
@keyframes dance {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(-5deg); }
  50%  { transform: translateY(0) rotate(5deg); }
  75%  { transform: translateY(6px) rotate(-3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ================= RESPONSIVE FOOTER ================= */

/* Tablets */
@media (max-width: 1024px) {
  .vedam-footer {
    padding: 0;
  }

  .vedam-bottom {
    padding: 0 10px 15px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .vedam-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
  }

  .vedam-social-wrap {
    text-align: center;
  }

  .vedam-social {
    justify-content: center;
  }

  .vedam-social a {
    font-size: 22px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .vedam-left {
    font-size: 11px;
  }

  .vedam-social a {
    font-size: 20px;
  }
}
.project-overview {
  /* background: #0c0c0c; */
  color: #fff;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.brand {
  color: #d4af37;
  padding: 2px;
  font-size: 22px;
  letter-spacing: 2px;
}

.overview-left h2 {
  font-size: 48px;
  margin-bottom: 10px;
}

.overview-left h2 span {
  color: #d4af37;
}

.box {
  background: #141414;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 12px;
}

.box h3 {
  color: #d4af37;
  margin-bottom: 15px;
}

.row {
  display: flex;
  justify-content: space-between;
  
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

.box ul {
  padding-left: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.overview-right h3 {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 25px;
}

.features div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding: 12px 0;
}

.features strong {
  width: 35%;
  color: #d4af37;
}

.features span {
  width: 65%;
  text-align: right;
}
/* ================= RESPONSIVE ================= */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-left h2 {
    font-size: 38px;
  }

  .overview-right h3 {
    font-size: 28px;
  }

  .brand {
    font-size: 20px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .project-overview {
    padding: 60px 15px;
  }

  .overview-left h2 {
    font-size: 32px;
  }

  .box {
    padding: 20px;
  }

  .box h3 {
    font-size: 18px;
  }

  .overview-right h3 {
    font-size: 24px;
  }

  .row {
    font-size: 14px;
  }

  .features div {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .project-overview {
    padding: 45px 12px;
  }

  .brand {
    font-size: 16px;
    text-align: center;
    line-height: 2;
    letter-spacing: 1.5px;
  }

  .overview-left h2 {
    font-size: 26px;
    text-align: center  ;
    line-height: 1.3;
  }

  .box {
    padding: 18px;
  }

  .row {
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }

  .features div {
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }

  .features strong,
  .features span {
    width: 100%;
    text-align: left;
  }

  .overview-right h3 {
    font-size: 20px;
  }
}

/* Very Small Devices */
@media (max-width: 360px) {
  .overview-left h2 {
    font-size: 22px;
  }

  .overview-right h3 {
    font-size: 18px;
  }

  .box {
    padding: 15px;
  }
}
/* ===== INTRO SECTION ===== */
.homes-intro {
  max-width: 1200px;
  margin: 90px auto 70px;
  text-align: center;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.homes-intro h2 {
  font-size: 60px;
  margin-bottom: 25px;
}

.intro-highlight {
  color:#ffd341ea;

  font-size: 18px;
  /* text-align: justify; */
  line-height: 1.7;
  margin-bottom: 18px;
}

.intro-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
}

/* ===== GALLERY SECTION ===== */
.homes-gallery-section {
  padding: 0 20px 100px;
}

.homes-grid {
  max-width: 1300px;
  margin: auto;
  cursor: pointer;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.home-card img {
  width: 100%;
  border-radius: 22px;
  margin-bottom: 15px;
}
/* ===== IMAGE ANIMATION ===== */
.home-card img {
  transition: transform 0.6s ease, filter 0.6s ease;
  will-change: transform;
}

/* Hover animation */
.home-card:hover img {
  /* transform: scale(1.08); */
  filter: brightness(1.08);
}

/* Soft floating effect */
@keyframes imgFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Optional: slow floating on desktop */
@media (min-width: 992px) {
  .home-card img {
    animation: imgFloat 6s ease-in-out infinite;
  }
}

/* Mobile safe */
@media (max-width: 576px) {
  .home-card img {
    animation: none;
    height: 300px;
  }
}


.home-card h3 {
  color: #ffd341ea;
  font-size: 18px;
  text-align: center;
  margin-bottom: 8px;
}

.home-card p {
  font-size: 14px;
  text-align: justify;
  color: #ccc;
  line-height: 1.6;
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 992px) {
  .homes-intro h2 {
    font-size: 46px;
  }

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

/* Mobile */
@media (max-width: 576px) {
  .homes-intro {
    margin: 60px auto 50px;
  }

  .homes-intro h2 {
    font-size: 38px;
  }

  .intro-highlight {
    font-size: 16px;
  }

  .homes-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-card h3 {
    font-size: 16px;
  }

  .home-card p {
    font-size: 13px;
  }
}
.footer-wrap {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 90px;
  color: #fff;
  flex-wrap: wrap;
}

/* =========================
   LEFT MENU / TABS
========================= */
.footer-left {
  width: 280px;
  flex-shrink: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav li {
  padding: 15px 18px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

.footer-nav li:last-child {
  border-bottom: none;
}

.footer-nav li:hover {
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
}

.footer-nav li.active {
  background: linear-gradient(90deg, #c9a227, #e2c15c);
  color: #000;
  font-weight: 600;
}

/* =========================
   RIGHT CONTENT
========================= */
.footer-right {
  flex: 1;
  gap: 20px;

}

.footer-right h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f1f1f1;
}

/* =========================
   LINK COLUMNS
========================= */
.columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.columns ul {
  list-style: none;
  padding: 0;
}

.columns ul li {
  margin-bottom: 10px;
}

.columns ul li a {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.columns ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #c9a227;
  transition: width 0.3s ease;
}

.columns ul li a:hover {
  color: #c9a227;
}

.columns ul li a:hover::after {
  width: 100%;
}

/* =========================
   TAB ANIMATION
========================= */
.tab-box {
  display: none;
  animation: fadeUp 0.6s ease;
}

.tab-box.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MEDIA QUERIES (RESPONSIVE)
========================= */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
  .footer-wrap {
    flex-direction: column;
    padding: 50px 30px;
    gap: 35px;
  }

  .footer-left {
    width: 100%;
  }

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

  .footer-right h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .columns ul li a {
    font-size: 13px;
  }
}


/* Tablets */
@media (max-width: 768px) {
  .footer-wrap {
    padding: 40px 20px;
    gap: 25px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: none;
    border: none;
  }

  .footer-nav li {
    text-align: center;
    border-radius: 6px;
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 12px;
    font-size: 13px;
  }

  .footer-right h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .columns ul li a {
    font-size: 13px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .footer-wrap {
    padding: 30px 15px;
    gap: 20px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-nav li {
    padding: 10px;
    font-size: 12px;
  }

  .footer-right h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .columns ul li a {
    font-size: 12px;
  }
}

/* Very Small Devices (320px) */
@media (max-width: 360px) {
  .footer-wrap {
    padding: 20px 10px;
    gap: 15px;
  }

  .footer-nav li {
    padding: 8px;
    font-size: 11px;
  }

  .footer-right h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .columns ul li a {
    font-size: 11px;
  }
}

.float-buttons{
  position: fixed;
  right: 25px;
  bottom: 125px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

/* Common Circle Style */
.float-btn{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* WhatsApp */
.whatsapp{
  background: #25D366;

  color: #fff;
}

.whatsapp:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}
#phone{
  height: 20px;

}
/* Call */
.call{
  background: #1f4037;
  color: #fff;
}

.call:hover{
  transform: translateY(-4px);
  background: #16352d;
}

/* Scroll Button */
.scroll-top{
  background: #333;
  color: #fff;
  font-size: 22px;
}

.scroll-top:hover{
  transform: translateY(-4px);
  background: #000;
}

@media (max-width: 576px){
  .float-buttons{
    right: 15px;
    bottom: 25px;
    gap: 12px;
  }

  .float-btn{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .float-btn i{
    font-size: 16px;
  }
}



.legal-links{
margin-top:10px;
}

.legal-links a{
color:#c9a45c;
text-decoration:none;
font-size:11px;
}

.legal-links a:hover{
text-decoration:underline;
color: #ffd47d;
}


.faq-section {
  background: #000;
  padding: 60px 8%;
  max-width: 1400px;
  margin: 0 auto;
}

/* HEADING */
.faq-section h2 {
  text-align: center;
  color: #FFFDD0;
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 35px;
  letter-spacing: 0.8px;
}

/* EACH FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #222;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.faq-question span {
  color: #c9a227;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.4s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-bottom: 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }
}