/* Immigration Services Specific Styles */

.service-introduction {
  padding: var(--section-padding);
  background-color: var(--white);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Service Types */
.service-types {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-category {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-header {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

.category-header h3 {
  color: var(--white);
  margin: 0;
  font-size: 1.3rem;
}

.service-list {
  padding: 2rem;
}

.service-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.service-item:last-child {
  border-bottom: none;
}

.service-item h4 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.service-note {
  color: var(--neutral-gray);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}

.service-notes {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-red);
}

.service-notes p {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.service-notes p:last-child {
  margin-bottom: 0;
}

/* Consultation Process */
.consultation-process {
  padding: var(--section-padding);
  background-color: var(--white);
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.step-content p {
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us */
.why-choose-us {
  padding: var(--section-padding);
  background-color: var(--light-gray);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-choose-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-text h2 {
  color: var(--primary-red);
  margin-bottom: 2rem;
  text-align: center;
}

.reason-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.reason-item:last-child {
  margin-bottom: 0;
}

.reason-item h3 {
  color: var(--primary-red);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.reason-item p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Contact Info */
.contact-info {
  padding: var(--section-padding);
  background-color: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-text h2 {
  color: var(--primary-red);
  margin-bottom: 1.5rem;
}

.contact-text > p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.contact-details h3 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-details p {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.contact-methods p {
  margin-bottom: 0.5rem;
}

.contact-methods a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

.contact-methods a:hover {
  text-decoration: underline;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Immigration */
@media (max-width: 768px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-text {
    order: 2;
  }

  .intro-image {
    order: 1;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .step-number {
    margin: 0 auto 1rem;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-choose-image {
    order: 1;
  }

  .why-choose-text {
    order: 2;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-text {
    order: 2;
  }

  .contact-image {
    order: 1;
  }

  .category-header {
    padding: 1.5rem;
  }

  .service-list {
    padding: 1.5rem;
  }

  .service-item {
    padding: 1rem 0;
  }

  .reason-item {
    padding: 1.25rem;
  }
}

@media (max-width: 480px) {
  .category-header {
    padding: 1.25rem;
  }

  .service-list {
    padding: 1.25rem;
  }

  .process-step {
    padding: 1.5rem;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .reason-item {
    padding: 1rem;
  }

  .service-notes {
    padding: 1.5rem;
  }
}
