/* ==========================================
   CONTACT US PAGE BASE STYLES
   ========================================== */
.contact-page-content {
  min-height: 450px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Breadcrumbs Section */
.breadcrumbs-section {
  background-color: #FFFFFF;
  padding: 24px 24px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

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

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main), 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 500;
}

.breadcrumb-item {
  color: #4a7ab5; /* Light blue color for Home link matching screenshot */
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item:hover:not(.active) {
  color: #2b6cb0;
}

.breadcrumb-separator {
  color: #7A4F7A; /* Purple slash color matching screenshot */
  user-select: none;
  font-size: 13.5px;
  margin: 0 4px;
}

.breadcrumb-item.active {
  color: #7A4F7A; /* Purple color for active page matching screenshot */
  font-weight: 600;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .breadcrumbs-section {
    padding: 16px 16px;
  }

  .breadcrumbs {
    font-size: 13.5px;
    gap: 6px;
  }
}

/* ==========================================
   CONTACT US HERO CONTENT STYLING
   ========================================== */
.contact-hero-section {
  background: linear-gradient(135deg, #f0f4f8 0%, #f6f2f6 50%, #FAF8FB 100%);
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.contact-hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-hero-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-family: 'Kalam', cursive;
  font-size: 52px;
  font-weight: 700;
  color: #1F2937; /* Dark slate grey matching screenshot */
  margin: 0 0 28px 0;
  line-height: 1.2;
}

.contact-subtitle {
  font-family: 'Kalam', cursive;
  font-size: 32px;
  font-weight: 700;
  color: #374151; /* Medium grey matching screenshot */
  margin: 0 0 28px 0;
  line-height: 1.35;
  max-width: 850px;
}

.contact-description {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 400;
  color: #556070; /* Slate grey matching screenshot */
  margin: 0;
  line-height: 1.65;
  max-width: 680px;
}

/* Responsive adjustments for Hero Section */
@media (max-width: 767px) {
  .contact-hero-section {
    padding: 50px 16px 60px 16px;
  }

  .contact-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .contact-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .contact-description {
    font-size: 15.5px;
    line-height: 1.5;
  }
}

/* ==========================================
   GET IN TOUCH CARDS SECTION
   ========================================== */
.contact-info-section {
  background-color: #FFFFFF;
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
}

.contact-info-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.section-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #1F2937;
  text-align: center;
  margin: 0 0 60px 0;
  line-height: 1.25;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  background-color: #FFFFFF;
  border: 1.5px solid rgba(122, 79, 122, 0.2);
  border-top: 5px solid #733DD9; /* Thicker brand purple top border */
  border-radius: 8px;
  padding: 45px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  box-sizing: border-box;
}

/* Hover highlights & bounce effect */
.contact-card:hover {
  transform: translateY(-12px); /* Bounces up */
  border-color: rgba(122, 79, 122, 0.45);
  box-shadow: 0 16px 36px rgba(122, 79, 122, 0.12); /* Soft purple glow */
}

.card-icon {
  font-size: 38px;
  color: #733DD9; /* Brand Purple */
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}

.card-title {
  font-family: 'Kalam', cursive;
  font-size: 21px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 12px 0;
}

.card-value {
  font-family: 'Kalam', cursive;
  font-size: 15px;
  font-weight: 700;
  color: #733DD9; /* Purple highlight value text */
  margin: 0 0 16px 0;
  word-break: break-word;
}

.card-description {
  font-family: 'Kalam', cursive;
  font-size: 13.5px;
  font-weight: 400;
  color: #556070;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Styles for Contact Info */
@media (max-width: 1024px) {
  .contact-info-section {
    padding: 60px 24px;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .contact-card {
    padding: 35px 20px;
  }
}

@media (max-width: 600px) {
  .contact-info-section {
    padding: 50px 16px;
  }
  
  .section-title {
    font-size: 28px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   CONTACT FORM & INFO SECTION
   ========================================== */
.contact-form-section {
  background-color: #FAF8FB; /* Light lilac background matching screenshot */
  padding: 80px 24px;
  width: 100%;
  box-sizing: border-box;
}

.contact-form-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 60px;
}

/* Form Card Styling */
.form-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
}

.form-card-title {
  font-family: 'Kalam', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 32px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Kalam', cursive;
  font-size: 14.5px;
  font-weight: 700;
  color: #374151;
}

.form-group label .required {
  color: #EF4444;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Kalam', cursive;
  font-size: 14.5px;
  color: #374151;
  padding: 12px 16px;
  border: 1.5px solid rgba(122, 79, 122, 0.15);
  border-radius: 6px;
  background-color: #FFFFFF;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  box-sizing: border-box;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
  opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7A4F7A;
  box-shadow: 0 0 0 3px rgba(122, 79, 122, 0.08);
}

/* Custom styled select arrow */
.select-wrapper {
  position: relative;
  width: 100%;
}

.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px; /* space for arrow */
}

.select-wrapper::after {
  content: '\f078'; /* fontawesome chevron-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: #556070;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Submit Button */
.submit-btn {
  font-family: 'Kalam', cursive;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #733DD9; /* Vibrant purple matching screenshot button */
  border: none;
  border-radius: 6px;
  padding: 14px 24px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.25s, transform 0.2s, box-shadow 0.25s;
  width: 100%;
}

.submit-btn:hover {
  background-color: #733DD9;
  box-shadow: 0 5px 15px rgba(115, 61, 217, 0.2);
}

.submit-btn:active {
  transform: translateY(1px);
}

/* Right Column: Info Column */
.info-column {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.info-title {
  font-family: 'Kalam', cursive;
  font-size: 26px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 32px 0;
}

.help-items-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 40px;
}

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

.help-icon {
  font-size: 24px;
  color: #733DD9; /* Purple color matching screenshot icons */
  margin-top: 4px;
  flex-shrink: 0;
}

.help-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.help-item-title {
  font-family: 'Kalam', cursive;
  font-size: 18px;
  font-weight: 700;
  color: #1F2937;
  margin: 0;
}

.help-item-text {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  font-weight: 400;
  color: #556070;
  margin: 0;
  line-height: 1.4;
}

/* Guarantee Card */
.guarantee-card {
  background-color: #F1F4F8; /* Soft light grey card background matching screenshot */
  border-radius: 8px;
  padding: 32px;
  box-sizing: border-box;
}

.guarantee-title {
  font-family: 'Kalam', cursive;
  font-size: 19px;
  font-weight: 700;
  color: #1F2937;
  margin: 0 0 16px 0;
}

.guarantee-text {
  font-family: 'Kalam', cursive;
  font-size: 14.5px;
  color: #556070;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 20px;
  margin: 0;
}

.guarantee-list li {
  font-family: 'Kalam', cursive;
  font-size: 14px;
  color: #374151;
  list-style-type: disc;
}

/* Responsive Queries for Form Section */
@media (max-width: 1024px) {
  .contact-form-section {
    padding: 60px 24px;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 767px) {
  .form-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .guarantee-card {
    padding: 24px;
  }
}

/* ==========================================
   CONTACT CTA SECTION
   ========================================== */
.contact-cta-section {
  background-color: #733DD9; /* Vibrant purple matching screenshot background */
  padding: 85px 24px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #FFFFFF;
}

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

.cta-title {
  font-family: 'Kalam', cursive;
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 24px 0;
  line-height: 1.25;
}

.cta-description {
  font-family: 'Kalam', cursive;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 36px 0;
  line-height: 1.6;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn {
  font-family: 'Kalam', cursive;
  font-size: 15.5px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
}

/* Primary white button styling */
.btn-primary-white {
  background-color: #FFFFFF;
  color: #733DD9;
  border: 1.5px solid #FFFFFF;
}

.btn-primary-white:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Secondary outline button styling */
.btn-secondary-outline {
  background-color: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary-outline:hover {
  background-color: #FFFFFF;
  color: #733DD9;
  border-color: #FFFFFF;
}

/* Responsive adjustments for CTA */
@media (max-width: 767px) {
  .contact-cta-section {
    padding: 60px 16px;
  }

  .cta-title {
    font-size: 30px;
    margin-bottom: 18px;
  }

  .cta-description {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px 24px;
  }
}
