/* === GLOBAL RESET === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #FBF3FF;
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  color: #333;
}

section {
  margin-top: 80px;
  margin-bottom: 80px;
  width: 100%;
}

/* === CONTACT SECTION === */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 100px 30px;
  max-width: 1400px;
  margin: 80px auto 0 auto;
}

.contact-form-box,
.contact-info-box {
  background-color: #dbdbf5;
  padding: 60px;
  border-radius: 25px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-form-box h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 32px;
  color: #013A63;
}

.contact-form-box label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 18px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 18px;
  border-radius: 12px;
  border: none;
  font-size: 18px;
  resize: none;
  background-color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
}

.contact-form-box button {
  margin-top: 30px;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  background-color: #757BC8;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form-box button:hover {
  background-color: #5b61b3;
}

.contact-info-box .info p {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.6;
}

.contact-info-box .info i {
  margin-right: 12px;
  color: #013A63;
  font-size: 22px;
}

.map-placeholder {
  background-color: #999;
  height: 320px;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

/* === INFO GRID === */
.studix-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 24px;
  width: 100%;
}

.info-card {
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  padding: 36px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.icon-box {
  background-color: #013A63;
  color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.info-card h4 {
  font-size: 22px;
  color: #013A63;
  margin-bottom: 15px;
}

.info-card p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.info-socials {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  font-size: 15px;
  text-align: left;
}

.info-socials li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.info-socials i {
  margin-right: 8px;
  color: #757BC8;
}

.studix-cta-banner {
  background-color: #013A63;
  color: white;
  text-align: center;
  padding: 100px 24px;
}

.studix-cta-banner h2 {
  font-size: 34px;
  margin-bottom: 15px;
}

.studix-cta-banner p {
  font-size: 20px;
  margin-bottom: 25px;
  color: white;
}

.banner-btn {
  background-color: white;
  color: #013A63;
  padding: 16px 36px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background-color: #757BC8;
  color: white;
}

.faq-tabbed {
  padding: 100px 24px;
  max-width: 1000px;
  margin: auto;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.tab {
  padding: 14px 24px;
  background: #f0f0ff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  color: #013A63;
  cursor: pointer;
  transition: 0.3s ease;
}

.tab.active {
  background: #757BC8;
  color: #fff;
}

.faq-content .faq-panel {
  display: none;
  background: #fff;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.faq-content .faq-panel.active {
  display: block;
}

.response-time {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 24px;
}

.response-card {
  background: #f4f4ff;
  border-left: 8px solid #757BC8;
  border-radius: 20px;
  padding: 48px;
  display: flex;
  gap: 30px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.response-icon {
  font-size: 52px;
  color: #013A63;
  background-color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.response-details h4 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #013A63;
}

.response-details ul {
  list-style: none;
  padding-left: 0;
  font-size: 18px;
  color: #333;
  line-height: 1.7;
}

.response-details li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .response-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .response-icon {
    margin-bottom: 20px;
  }

  .studix-info-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 15px;
  }

  .info-card {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .info-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .info-card p {
    font-size: 15px;
    line-height: 1.6;
  }

  .icon-box {
    width: 60px;
    height: 60px;
    font-size: 26px;
    margin-bottom: 16px;
  }

  .info-socials {
    font-size: 14px;
  }

  .info-socials li {
    margin-bottom: 6px;
  }
}

button,
.cta-btn,
.banner-btn {
  transform: scale(1);
  transition: transform 0.2s ease, background-color 0.3s ease;
}

button:hover,
.cta-btn:hover,
.banner-btn:hover {
  transform: scale(1.02);
}
