/* contact-form */
.contact-form {
  background: url(imgs/Gallery\ \(3\).png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(201, 162, 77, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Left Side - Form */
.contact-form-wrapper {
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 50.18%,
    rgba(201, 162, 77, 0.2) 108.69%
  );

  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.contact-form-title {
  font-family: var(--font-popins);
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-form-subtitle {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #b8b8b8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.message-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #e0e0e0;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  font-family: var(--font-popins);
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(201, 162, 77, 0.3);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 15px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #808080;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(25, 25, 25, 0.9);
  box-shadow: 0 0 0 3px rgba(201, 162, 77, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  font-family: var(--font-popins);
  background: var(--primary-color);
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #ddb965;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 162, 77, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Right Side - Contact Info */
.contact-info-wrapper {
  padding: 20px 0;
}

.contact-info-title {
  font-family: var(--font-popins);
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-info-subtitle {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #b8b8b8;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 50.18%,
    rgba(201, 162, 77, 0.2) 108.69%
  );

  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.info-card:hover {
  transform: translateX(5px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 20px rgba(201, 162, 77, 0.15);
}

.info-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.info-content h4 {
  font-family: var(--font-playfair);
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  font-family: var(--font-popins);
  font-size: 14px;
  color: #b8b8b8;
  margin-bottom: 4px;
  line-height: 1.5;
}

.info-highlight {
  color: var(--primary-color) !important;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 60px 15px;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form-title,
  .contact-info-title {
    font-size: 28px;
  }

  .submit-btn {
    width: 100%;
  }

  .info-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-form-title,
  .contact-info-title {
    font-size: 24px;
  }

  .info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .info-icon {
    margin-bottom: 10px;
  }
}
/* contact-form */
/* contact-faqs */
.contact-faqs {
  background: url(imgs/gaqsbg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 70px;
  position: relative;
  overflow: hidden;
}

.contact-faqs::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(201, 162, 77, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faqs-container {
  max-width: 1400px;
  margin: 0 auto;
}

.faqs-header {
  text-align: center;
  margin-bottom: 60px;
}

.faqs-title {
  font-family: var(--font-playfair);
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-weight: 600;
}

.faqs-subtitle {
  font-family: var(--font-popins);
  font-size: 16px;
  color: #b8b8b8;
}

.faqs-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Accordion Styles - UPDATED */
.faqs-accordion-wrapper {
  padding-right: 20px;
}

.accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  /* background: #0c0c0c; */
  border: none;
  border-radius: 0 !important;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}

/* Gradient border effect */
.accordion-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 0%,
    rgba(201, 162, 77, 0.4) 50%,
    rgba(201, 162, 77, 0) 100%
  );
}

.accordion-item:last-child::before {
  display: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  font-family: var(--font-popins);
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 40%,
    rgba(201, 162, 77, 0.12) 108.69%
  ) !important;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 25px;
  border: 1px solid #4f3f1f;

  box-shadow: none;
  margin: 10px 0px 0px 0px;
  transition: all 0.3s ease;
  border-radius: 7px !important;
  position: relative;
}

.accordion-button:hover {
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 40%,
    rgba(201, 162, 77, 0.12) 108.69%
  );
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 30%,
    rgba(201, 162, 77, 0.15) 108.69%
  );
  border-top: 1px solid #4f3f1f !important;
  border-left: 1px solid #4f3f1f !important;
  border-right: 1px solid #4f3f1f !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;

  color: var(--primary-color);
  /* box-shadow: none; */
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}

/* Chevron icon */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  font-family: var(--font-popins);
  color: #b8b8b8;
  font-size: 14px;
  /* margin-top: 4px; */
  line-height: 1.8;
  /* border-radius: 10px; */
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 1px solid #4f3f1f;
  border-top: none !important;
  /* margin-top: -3px; */
  background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 40%,
    rgba(201, 162, 77, 0.12) 108.69%
  ) !important;
  padding: 20px 25px 25px 25px;
  /* background: linear-gradient(
    77.68deg,
    rgba(201, 162, 77, 0) 50.18%,
    rgba(201, 162, 77, 0.05) 108.69%
  ); */
}

.accordion-collapse {
  background: transparent;
  border: none;
}

/* Remove Bootstrap default styles */
.accordion-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

/* Images Grid */
.faqs-images-wrapper {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.faqs-images-wrapper img {
  width: 100%;
}
.faqs-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 15px;
  height: 100%;
}

.faq-image {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.faq-image:hover img {
  transform: scale(1.05);
}

.faq-image.large {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.faq-image.small.top {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.faq-image.small.bottom {
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.faq-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-image:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .faqs-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faqs-accordion-wrapper {
    padding-right: 0;
  }

  .faqs-images-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-faqs {
    padding: 60px 15px;
  }

  .faqs-header {
    margin-bottom: 40px;
  }

  .faqs-title {
    font-size: 36px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 18px 20px;
  }

  .accordion-body {
    padding: 0 20px 20px 20px;
    font-size: 13px;
  }

  .faqs-images-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 480px) {
  .faqs-title {
    font-size: 28px;
  }

  .accordion-button {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faqs-images-wrapper {
    min-height: 300px;
  }

  .faqs-image-grid {
    gap: 10px;
  }
}
/* contact-faqs */
