/* =========================
   CONTACT PAGE – LUXURY
   ========================= */

.contact-hero {
    padding: 90px 20px;
    text-align: center;
    background: radial-gradient(circle, #111, #000);
}

.contact-hero h2 {
    font-size: 40px;
    color: #d4af37;
    margin-bottom: 12px;
}

.contact-hero p {
    color: #ccc;
    font-size: 16px;
}

/* ===== MAIN CONTACT ===== */
.contact-main {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: flex;
    gap: 50px;
}

.contact-info {
    width: 45%;
}

.contact-info h3 {
    color: #d4af37;
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-info p {
    color: #ddd;
    font-size: 15px;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* MAP */
.contact-map {
    width: 55%;
}

.contact-map iframe {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    border: 2px solid #d4af37;
}

/* ===== FEATURES ===== */
.contact-features {
    padding: 80px 20px;
    background: linear-gradient(180deg, #050505, #000);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.feature-box {
    background: #111;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    transition: 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-color: #d4af37;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.25);
}

.feature-box h4 {
    color: #d4af37;
    margin-bottom: 10px;
}

.feature-box p {
    color: #ccc;
    font-size: 14px;
}
/* =========================
   FAQ ACCORDION – LUXURY
   ========================= */

.faq-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #050505, #000);
  text-align: center;
}

.faq-section h2 {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 50px;
}

/* CONTAINER */
.faq-container {
  max-width: 900px;
  margin: auto;
}

/* ITEM */
.faq-item {
  background: #111;
  border-radius: 18px;
  margin-bottom: 20px;
  border: 1px solid #222;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* QUESTION */
.faq-item summary {
  cursor: pointer;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: #d4af37;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* PLUS / MINUS ICON */
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: 0.3s ease;
}

/* OPEN STATE */
.faq-item[open] {
  border-color: #d4af37;
  box-shadow: 0 0 30px rgba(212,175,55,0.25);
}

.faq-item[open] summary::after {
  content: "–";
}

/* ANSWER */
.faq-item p {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: #ccc;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 28px;
  }

  .faq-item summary {
    padding: 20px;
    font-size: 16px;
  }
}


/* RESPONSIVE */
@media (max-width: 600px) {
    .faq-section h2 {
        font-size: 28px;
    }

    .faq-item {
        padding: 22px;
    }
}


/* ===== CTA ===== */
.contact-cta {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle, #111, #000);
}

.contact-cta h2 {
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 15px;
}

.contact-cta p {
    color: #ccc;
    margin-bottom: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .contact-main {
        flex-direction: column;
    }

    .contact-info,
    .contact-map {
        width: 100%;
        text-align: center;
    }

    .contact-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-hero h2 {
        font-size: 28px;
    }

    .contact-features {
        grid-template-columns: 1fr;
    }

    .contact-cta h2 {
        font-size: 26px;
    }

    .footer-line{
        width: 80%;
    }
}