:root {
  --pink: #ff7aa2;
  --sun: #ffc857;
  --sky: #60c2ff;
  --mint: #7ef6b5;
  --accent: #ff8a00;
  --accent-dark: #e67300;
  --text: #1f2937;
  --text-light: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 8px 30px rgba(18, 38, 63, 0.08);
  --shadow-hover: 0 18px 40px rgba(18, 38, 63, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(180deg, #fffbf6 0%, #ffffff 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
  padding: 25px 0 15px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--text-light);
}

.breadcrumb .current {
  color: var(--accent);
  font-weight: 600;
}

/* Contact Hero */
.contact-hero {
  text-align: center;
  padding: 60px 0 40px;
  position: relative;
}

.contact-title {
  font-family: "Baloo 2", cursive;
  font-size: 3.5rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.contact-title span {
  color: var(--accent);
  position: relative;
}

.contact-title span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 138, 0, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.contact-subtitle {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Contact Content */
.contact-content {
  display: flex;
  gap: 40px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.form-container {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-title {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  margin-bottom: 10px;
}

.form-subtitle {
  color: var(--text-light);
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-label i {
  color: var(--accent);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.form-control:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 138, 0, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 6px 18px rgba(255, 138, 0, 0.2);
  width: 100%;
}

.btn-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 138, 0, 0.3);
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.info-title {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.info-title::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(96, 194, 255, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 138, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.detail-content h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.detail-content p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(126, 246, 181, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--mint);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
  background: var(--mint);
  color: var(--white);
}

/* Decorative Elements */
.contact-element {
  position: absolute;
  z-index: 0;
  animation: floaty 6s ease-in-out infinite;
}

.elem-1 {
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--pink);
  border-radius: 15px;
  transform: rotate(25deg);
}

.elem-2 {
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: var(--sun);
  border-radius: 50%;
  animation-delay: 0.5s;
}

.elem-3 {
  top: 40%;
  left: 40px;
  width: 40px;
  height: 40px;
  background: var(--sky);
  border-radius: 10px;
  transform: rotate(-15deg);
  animation-delay: 1s;
}

.elem-4 {
  bottom: 40%;
  right: 40px;
  width: 30px;
  height: 30px;
  background: var(--mint);
  border-radius: 50%;
  animation-delay: 1.5s;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(
    90deg,
    rgba(255, 200, 87, 0.05),
    rgba(96, 194, 255, 0.03)
  );
  border-radius: var(--radius);
  padding: 60px 40px;
  margin: 80px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-family: "Baloo 2", cursive;
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.faq-title::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(255, 122, 162, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.faq-subtitle {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  background: var(--white);
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: var(--white);
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Animations */
@keyframes floaty {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-title {
    font-size: 2.8rem;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.3rem;
  }

  .form-container,
  .info-box {
    padding: 30px 20px;
  }

  .faq-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 2rem;
  }

  .faq-title {
    font-size: 1.8rem;
  }

  .detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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