/* =====================================
CONTACT HERO
===================================== */
.contact-hero {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #eef5ff);
  text-align: center;
}

.contact-hero-content {
  max-width: 750px;
  margin: auto;
}

.contact-hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin: 20px 0;
}

.contact-hero p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

.eyebrow {
  color: #2563eb;
  font-weight: 700;
  letter-spacing: 1px;
}

/*==========================================
CONTACT OPTIONS
==========================================*/
.contact-options {
  padding: 100px 0;
  background: #fff;
}

.contact-options .section-title {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.contact-option-card {
  padding: 35px;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  transition: 0.35s;
  background: white;
}

.contact-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.option-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  margin-bottom: 25px;
}

.contact-option-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.contact-option-card p {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.option-info {
  font-weight: 600;
  color: #2563eb;
  font-size: 14px;
}

/*==========================================
CONTACT FORM
==========================================*/
.contact-form-section {
  padding: 100px 0;
  background: #f8fafc;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.form-content h2 {
  font-size: 38px;
  margin: 15px 0;
}

.form-content p {
  margin: 20px 0 35px;
  color: #6b7280;
  font-size: 17px;
  line-height: 1.7;
}

.form-content ul {
  list-style: none;
  padding: 0;
}

.form-content li {
  margin-bottom: 18px;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-content i {
  color: #2563eb;
  font-size: 18px;
}

.contact-form {
  background: white;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

/* Decorative accent on form */
.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #4f46e5, #2563eb, #4f46e5);
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fafafa;
  color: #1e293b;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: #4f46e5;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
  transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Select Dropdown Styling */
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
  cursor: pointer;
}

.contact-form select:hover {
  border-color: #4f46e5;
}

.contact-form select option {
  padding: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ==========================================
REDESIGNED SEND MESSAGE BUTTON
========================================== */
.contact-form .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 34px;
  margin-top: 10px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.25);
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 14px 45px rgba(79, 70, 229, 0.35);
  background: linear-gradient(135deg, #4338ca, #1d4ed8);
}

.contact-form .btn-primary:active {
  transform: scale(0.97);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.2);
}

.contact-form .btn-primary i {
  font-size: 16px;
  transition: transform 0.4s ease;
}

.contact-form .btn-primary:hover i {
  transform: translateX(6px) rotate(-8deg);
}

/* Shine Effect on Hover */
.contact-form .btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-form .btn-primary:hover::before {
  left: 100%;
}

/* Ripple Effect on Click */
.contact-form .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(
    circle at var(--x, 50%) var(--y, 50%),
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-form .btn-primary:active::after {
  opacity: 1;
}

/*==========================================
SUPPORT FEATURES
==========================================*/
.support-features {
  padding: 100px 0;
  background: #ffffff;
}

.support-features .section-title {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.support-card {
  padding: 35px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  transition: 0.35s;
}

.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
}

.support-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 22px;
}

.support-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.support-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

/*==========================================
CONTACT FAQ
==========================================*/
.contact-faq {
  padding: 100px 0;
  background: #fff;
}

.faq-wrapper {
  max-width: 900px;
  margin: 60px auto 0;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item.active {
  border-color: #4f46e5;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  border: none;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
}

.faq-question i {
  transition: 0.3s;
  color: #4f46e5;
  font-size: 18px;
}

.faq-item.active i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 250px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: #6b7280;
  line-height: 1.8;
  font-size: 15px;
}

/*==========================================
FINAL CTA
==========================================*/
.contact-final-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, #4f46e5, #2563eb);
  color: #fff;
}

.contact-cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-final-cta .eyebrow {
  color: #c7d2fe;
}

.contact-cta-box h2 {
  font-size: 48px;
  margin: 20px 0;
  line-height: 1.2;
}

.contact-cta-box h2 span {
  color: #fff;
}

.contact-cta-box p {
  max-width: 700px;
  margin: 0 auto 45px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 17px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-final-cta .btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
}

.contact-final-cta .btn-outline:hover {
  background: #fff;
  color: #2563eb;
}

.cta-stats {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 34px;
  margin-bottom: 8px;
  color: #fff;
}

.stat span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

/*==========================================
CONTACT CTA BUTTONS
==========================================*/
.contact-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-cta-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: #fff;
  color: #4f46e5;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.25);
}

.contact-cta-buttons .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.35);
}

.contact-cta-buttons .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.35s ease;
}

.contact-cta-buttons .btn-outline:hover {
  background: #fff;
  color: #4f46e5;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.2);
}

.contact-cta-buttons i {
  font-size: 15px;
  transition: transform 0.3s ease;
}

.contact-cta-buttons .btn:hover i {
  transform: translateX(4px);
}

/* ==========================================
RESPONSIVE - TABLETS
========================================== */
@media (max-width: 992px) {
  .contact-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-cta-buttons {
    flex-direction: row;
  }

  .cta-stats {
    gap: 40px;
  }
}

/* ==========================================
RESPONSIVE - MOBILE
========================================== */
@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 16px;
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .contact-options {
    padding: 60px 16px;
  }

  .contact-options .section-title {
    margin-bottom: 40px;
  }

  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-option-card {
    padding: 24px;
  }

  .contact-option-card h3 {
    font-size: 20px;
  }

  .contact-option-card p {
    font-size: 14px;
  }

  .option-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .contact-form-section {
    padding: 60px 16px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .form-content h2 {
    font-size: 28px;
  }

  .form-content p {
    font-size: 15px;
  }

  .form-content li {
    font-size: 14px;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 14px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    border-radius: 12px;
  }

  .contact-form textarea {
    min-height: 100px;
  }

  .contact-form .btn-primary {
    padding: 16px 24px;
    font-size: 16px;
    min-height: 54px;
    border-radius: 12px;
  }

  .support-features {
    padding: 60px 16px;
  }

  .support-features .section-title {
    margin-bottom: 40px;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .support-card {
    padding: 24px;
  }

  .support-card h3 {
    font-size: 20px;
  }

  .support-card p {
    font-size: 14px;
  }

  .support-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }

  .contact-faq {
    padding: 60px 16px;
  }

  .faq-wrapper {
    margin: 30px auto 0;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-question i {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 18px 18px;
    font-size: 14px;
  }

  .contact-final-cta {
    padding: 60px 16px;
  }

  .contact-cta-box h2 {
    font-size: 28px;
  }

  .contact-cta-box p {
    font-size: 15px;
    padding: 0 16px;
  }

  .contact-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .contact-cta-buttons .btn-primary,
  .contact-cta-buttons .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  .cta-stats {
    gap: 20px;
    margin-top: 40px;
  }

  .stat h3 {
    font-size: 28px;
  }

  .stat span {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title p {
    font-size: 15px;
  }
}

/* ==========================================
RESPONSIVE - SMALL PHONES
========================================== */
@media (max-width: 480px) {
  .contact-hero h1 {
    font-size: 24px;
  }

  .contact-option-card {
    padding: 20px 16px;
  }

  .contact-option-card h3 {
    font-size: 18px;
  }

  .contact-option-card p {
    font-size: 13px;
  }

  .form-content h2 {
    font-size: 24px;
  }

  .form-content p {
    font-size: 14px;
  }

  .contact-form {
    padding: 20px 12px;
  }

  .contact-form .btn-primary {
    font-size: 15px;
    padding: 14px 20px;
  }

  .contact-cta-box h2 {
    font-size: 24px;
  }

  .contact-cta-box p {
    font-size: 14px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .stat h3 {
    font-size: 24px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .section-title p {
    font-size: 14px;
  }
}
