/* font-family: "Montserrat", sans-serif; */
/* font-family: "Robecha-Daniera-Regular"; */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #252525;
  background-color: #fff;
}

/* Header Section with Beige Background */
.header-section {
  /* background: url("../../assets/images/faq/faqbg.png"); */
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.terms-header-section {
  /* background: url("../../assets/images/terms/termsbg.png"); */
  padding: 4rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.header-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.header-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3rem;
  margin-bottom: 10px;
  color: #2c2c2c;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.3s forwards;
  font-family: "Robecha-Daniera-Regular";
}

.intro-text {
  font-size: 17px;
  color: #050505;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  line-height: 1.6;
  opacity: 0;
  animation: slideInUp 1s ease-out 0.6s forwards;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 1200px) {
  .intro-text {
    margin-top: 30px;
    margin-bottom: 0 !important;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  padding: 4rem 1rem;
  animation: slideInUp 1s ease-out 0.6s forwards;
}

@media (max-width: 768px) {
  .container {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 2rem 0.75rem;
  }
}

.left {
  width: 39%;
  margin-right: 1%;
}

.left img {
  width: 100%;
  height: auto;
  display: block;
}

.right {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-top: 0px !important;
  padding: 20px;
  padding-right: 0;
  box-sizing: border-box;
  column-gap: 30px;
}
.section-title {
  font-size: 38px;
}

.box {
  background-color: #fff;
  padding: 20px 15px 18px 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 0px 49px #05040511;
}

/* .box:hover {
  background-color: #d4af37;
} */

.box .title {
  color: #050405;
  font-weight: 600;
}

.box .body {
  color: #050405;
  font-size: 13px;
  font-weight: 300;
}

.box img {
  width: 80px;
  height: 70px;
  display: block;
  margin: auto;
  margin-bottom: 10px;
}

.contact-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text p {
  font-size: 75px;
  line-height: 75px;
  font-family: "Robecha-Daniera-Regular" !important;
}

@media screen and (max-width: 1200px) {
  .container {
    flex-direction: column;
    gap: 3rem;
    justify-content: center;
    align-items: center;
  }
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .right {
    padding: 0;
  }
  .page-title {
    font-size: 2.5rem;
    line-height: 3.2rem;
  }

  .intro-text {
    font-size: 1rem;
    width: 90%;
  }

  .container {
    flex-direction: column;
  }

  .left,
  .right {
    width: 100%;
  }

  .right {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-text p {
    font-size: 3.5rem;
    line-height: 60px;
  }

  .box img {
    width: 60px;
    height: 50px;
  }

  .box .body {
    font-size: 11px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .page-title {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .intro-text {
    font-size: 0.95rem;
    width: 100%;
  }

  .contact-text p {
    font-size: 2.5rem;
    line-height: 45px;
    text-align: center;
  }

  .box {
    padding: 15px;
  }

  .box img {
    width: 50px;
    height: 40px;
  }

  .box .title {
    font-size: 14px;
  }

  .box .body {
    font-size: 10.5px;
  }
}

@media (max-width: 992px) {
  .left img {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .left img {
    width: 100%;
  }
}

/* Contact Form Section */
.contact-form-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #2d4a3e 0%, #1a2f24 50%, #0f1a14 100%);
  position: relative;
  padding: 80px 20px;
  display: flex;
  margin-top: 100px;
  align-items: center;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 20%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(255, 255, 255, 0.02) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.form-container {
  transition: all 0.8s ease-out;
}

.form-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-title {
  font-size: 40px;
  font-weight: 200;
  color: #d9b771;
  text-align: center;
  letter-spacing: 1px;
  /* animation: titleGlow 3s ease-in-out infinite alternate; */
  font-family: "Robecha-Daniera-Regular";
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  100% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
  }
}

.contact-form {
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  max-width: 90%;
  margin: auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 45px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #e0e0e0;
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 4px;
  padding: 15px;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.message-group {
  margin-bottom: 50px;
}

.message-group textarea {
  min-height: 120px;
  font-family: inherit;
}

.form-submit {
  text-align: center;
}

.submit-btn {
  position: relative;
  background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
  border: none;
  border-radius: 25px;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d4a3e;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
  min-width: 150px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.submit-btn:hover .btn-glow {
  opacity: 1;
  animation: buttonShine 1.5s ease-in-out infinite;
}

@keyframes buttonShine {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

/* Social Media Section */
.social-section {
  background: #f8f9fa;
  padding: 80px 20px;
  padding-top: 20px;
}

.social-container {
  text-align: center;
  transition: all 0.8s ease-out;
}

.social-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.social-title {
  font-size: 45px;
  font-weight: 300;
  color: #050405;
  margin-bottom: 55px;
  letter-spacing: 0.5px;
  font-family: "Robecha-Daniera-Regular";
}

.social-links {
  display: flex;
  justify-content: space-evenly;
  gap: 0px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-link:hover {
  /* transform: translateY(-10px); */
}

.social-icon {
  width: 70px;
  height: 70px;
  /* background: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%); */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

/* .social-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
} */

/* .social-link:hover .social-icon::before {
  transform: rotate(45deg) translateX(100%);
} */

.social-link:hover .social-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.social-icon svg {
  width: 32px;
  height: 32px;
  color: #2d4a3e;
  z-index: 2;
  position: relative;
}

.social-label {
  font-size: 1rem;
  font-weight: 500;
  color: #2d4a3e;
  transition: color 0.3s ease;
}

/* .social-link:hover .social-label {
  color: #d4af37;
} */

/* Animations */
.animate-slide-up {
  transition: all 0.8s ease-out;
}

.animate-slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
  background: #4e5e53;
}

.form-group.success input,
.form-group.success textarea {
  border-color: #27ae60;
  background: #4e5e53;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.error-message.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-title {
    font-size: 2rem;
  }

  .social-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 15px;
  }

  .social-section {
    padding: 60px 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form {
    padding: 30px;
  }

  .form-title {
    font-size: 2rem;
  }

  .social-links {
    gap: 30px;
  }

  .social-icon {
    width: 70px;
    height: 70px;
  }

  .social-icon svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 576px) {
  .contact-form-section {
    padding: 40px 10px;
  }

  .social-section {
    padding: 40px 10px;
  }

  .contact-form {
    padding: 25px;
  }

  .form-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .social-title {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .social-links {
    gap: 25px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .submit-btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .form-title {
    font-size: 2rem;
  }

  .social-title {
    font-size: 1.2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px;
    font-size: 0.9rem;
  }

  .social-links {
    align-items: center;
    gap: 20px;
  }
}

.custom-button:hover span {
  transform: none !important;
}

.faq-question {
  padding: 1rem 2rem;
}
.question-text {
  font-size: 17px;
}
