/* Page-specific styles extracted from PHP files */

/* Root Variables - Based on style.json */
:root {
  --primary-color: #000;
  --primary-hover: #F04438;
  --primary-light: rgba(255, 92, 40, 0.1);
  --primary-medium: rgba(255, 92, 40, 0.2);
  --dark-blue: #011e36;
  --text-color: #374151;
  --text-light: #6B7280;
  --background-light: #F9FAFB;
  --white: #FFFFFF;
  --border-color: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 6px;
  --border-radius-lg: 12px;
  --transition: all 0.2s ease;
  --secondary-color: #0BA5EC;
  --success-color: #10B981;
  --danger-color: #EF4444;
  --warning-color: #F59E0B;
}

/* Typography */
body {
  font-family: 'Averta', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Averta-Bold', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.2;
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

/* Hero Sections */
.hero {
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.hero.applicant-hero {
  background-color: rgba(11, 74, 111, 0.05);
}

.hero.consultant-hero {
  background-color: rgba(255, 92, 40, 0.05);
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  flex: 1;
  text-align: left;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 30px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Section Styles */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

/* Content Container */
.content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Services Section */
.platform-services-grid {
  display: grid;
  grid-template-columns: 4.5fr 2fr 2fr;
  gap: 2.5rem;
  margin-top: 3rem;
}

.platform-image-column {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  position: relative;
}

.platform-image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.platform-image-column:hover img {
  transform: scale(1.02);
}

.platform-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.platform-card h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.platform-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.platform-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.platform-feature-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.platform-feature-item span {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.platform-card .btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  transition: all 0.3s ease;
}

.platform-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

@media (max-width: 992px) {
  .platform-services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .platform-image-column {
    margin-bottom: 1rem;
  }
  
  .platform-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .platform-feature-item span {
    font-size: 0.95rem;
  }
  
  .platform-card h3 {
    font-size: 1.6rem;
  }
  
  /* Hide platform image on small screens */
  .platform-image-column {
    display: none;
  }
  
  /* Change services grid to 2 columns on small screens */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .service-card {
    min-height: auto !important;
  }
}

@media (max-width: 576px) {
  /* Stack service cards vertically on very small screens */
  .services-grid {
    grid-template-columns: 1fr !important;
  }
}

/* OLD IMMIGRATION-BENEFIT STYLES REMOVED - Now using feature-showcase styles */

/* Featured Section Styles */
.featured-section {
  color: white;
  padding: 80px 0;
  overflow: visible;
  position: relative;
  /* Background now controlled by bg-white class */
}

.featured-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.featured-text {
  flex: 1;
  padding-right: 20px;
}

.featured-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.featured-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.featured-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.featured-card {
  background-color: rgba(15, 40, 101, 0.8);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-card:hover {
  background-color: rgba(21, 49, 119, 0.9);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
  color: white;
}

.card-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
}

.btn-featured {
  display: inline-block;
  background-color: white;
  color: var(--dark-blue);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-featured:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.featured-image {
  flex: 1;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-image img {
  max-width: 120%;
  transform: translateY(-50%) translateX(10%);
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
}

/* Benefits CTA */
.benefits-cta {
  padding: 80px;
  background-color: #FF5C28;
  color: var(--white);
  text-align: center;
}

/* Key Benefits Section */
.key-benefits-section {
  padding: 80px 0;
  /* Background now controlled by bg-dark-blue class */
}

.key-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 50px;
}

.key-benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.key-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.key-benefit-image {
  flex: 0 0 80px;
}

.key-benefit-image img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 8px;
}

.key-benefit-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.key-benefit-card h3 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  text-align: left;
}

.key-benefit-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 768px) {
  .key-benefit-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .key-benefit-image {
    margin-bottom: 1rem;
  }
}

/* Testimonials Section - Scrolling Animation Style */
.testimonials-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5e6 0%, #ffddd6 50%, #ffddd6 100%);
}

.bg-testimonials {
  background: linear-gradient(135deg, #fff5e6 0%, #ffddd6 50%, #ffddd6 100%);
}

.testimonials-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
  line-height: 1.2;
}

.testimonials-main-title .highlight-orange {
  color: #F04438;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonial-cta-container {
  text-align: center;
  margin-bottom: 4rem;
}

.btn-testimonial-cta {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-testimonial-cta:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  margin-bottom: 4rem;
}

.testimonial-row {
  display: flex;
  gap: 1.5rem;
  width: fit-content;
  animation: slide 30s linear infinite;
}

.testimonial-row-second {
  animation: slide-reverse 30s linear infinite;
}

.testimonial-row:hover,
.testimonial-row-second:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slide-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.modern-testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  width: 380px;
  flex-shrink: 0;
}

.modern-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.modern-testimonial-card .testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.modern-testimonial-card .testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.modern-testimonial-card .testimonial-author {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin: 0;
  line-height: 1.2;
}

.testimonial-platform {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-icon {
  font-size: 1.25rem;
  color: var(--dark-blue);
  opacity: 0.7;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .testimonials-main-title {
    font-size: 2.5rem;
  }
  
  .modern-testimonial-card {
    width: 320px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }
  
  .testimonials-main-title {
    font-size: 2rem;
  }
  
  .testimonials-subtitle {
    font-size: 1rem;
  }
  
  .modern-testimonial-card {
    width: 300px;
    min-height: 140px;
    padding: 1.25rem;
  }
  
  .testimonial-cta-container {
    margin-bottom: 3rem;
  }
}


/* Steps Section */
.steps {
  padding: 80px 0;
  position: relative;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 3rem;
}

/* Step Card Styles */
.step-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  color: #667eea;
  margin-bottom: 1rem;
  display: block;
}

.step-content h3 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.step-content p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.step-content .btn {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.step-content .btn:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.steps-connecting-line {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  z-index: 1;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: var(--background-light);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-blue);
}

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--background-light);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}

/* Alternating Background Colors */
.bg-white {
  background-color: var(--white);
}

.bg-white .section-title {
  color: var(--dark-blue);
}

.bg-white .section-subtitle {
  color: var(--text-color);
}

.bg-white .testimonial-card .testimonial-author {
  color: var(--dark-blue);
}

.bg-white .testimonial-card .testimonial-role {
  color: var(--primary-color);
}

.bg-white .testimonial-card .testimonial-quote {
  color: var(--text-color);
}

.bg-white .benefit-info h3 {
  color: var(--dark-blue);
}

.bg-white .benefit-description {
  color: var(--text-color);
}

.bg-white .benefit-features li strong {
  color: var(--dark-blue);
}

.bg-white .benefit-features li p {
  color: var(--text-color);
}

.bg-dark-blue .section-title {
  color: var(--white);
}

.bg-dark-blue .section-subtitle {
  color: var(--white);
}

.bg-dark-blue .advantage-card h3 {
  color: var(--white);
}

.bg-dark-blue .advantage-card p {
  color: var(--white);
}

.bg-dark-blue {
  background-color: var(--dark-blue);
  color: var(--white);
}

.bg-dark-blue .section-title,
.bg-dark-blue .section-subtitle {
  color: var(--white);
}

.bg-dark-blue .service-card {
  background-color: var(--white);
  color: var(--text-color);
}

.bg-dark-blue .service-card h3 {
  color: var(--dark-blue);
}

.bg-dark-blue .service-card .feature-item span {
  color: var(--text-color);
}

.bg-dark-blue .advantage-card {
  background-color: var(--white);
  color: var(--text-color);
}

.bg-dark-blue .advantage-card h3 {
  color: var(--dark-blue);
}

.bg-dark-blue .advantage-card p {
  color: var(--text-color);
}

.bg-dark-blue .testimonial-card {
  background-color: var(--white);
  color: var(--text-color);
}

.bg-dark-blue .testimonial-card .testimonial-author {
  color: var(--dark-blue);
}

.bg-dark-blue .step-card {
  background-color: var(--white);
  color: var(--text-color);
}

.bg-dark-blue .step-card .step-content h3 {
  color: var(--primary-color);
}

.bg-dark-blue .step-card .step-content p {
  color: var(--text-color);
}

.bg-dark-blue .faq-item {
  background-color: var(--white);
}

.bg-dark-blue .faq-question {
  background-color: var(--white);
}

.bg-dark-blue .faq-question h3 {
  color: var(--dark-blue);
}

.bg-dark-blue .faq-answer {
  background-color: var(--background-light);
}

.bg-dark-blue .faq-answer p {
  color: var(--text-color);
}

/* Featured section specific styles for white background */
.bg-white .featured-section {
  background-color: var(--dark-blue);
  color: white;
}

.bg-white .featured-section .featured-text h2 {
  color: white;
}

.bg-white .featured-section .featured-text p {
  color: rgba(255, 255, 255, 0.9);
}

/* Duplicate steps-container removed - using the main one */

/* Feature Categories */
.feature-categories {
  padding: 60px 0;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.category-card h3 {
  margin-bottom: 15px;
  color: var(--dark-blue);
  font-weight: 600;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  color: var(--text-light);
}


/* AI Assistant Section */
.ai-assistant-section {
  background-color: var(--primary-light);
  padding: 60px 0;
  margin: 40px 0;
  border-radius: var(--border-radius-lg);
}

.ai-assistant-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ai-assistant-info {
  flex: 1;
}

.ai-assistant-info h2 {
  color: var(--dark-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.ai-assistant-info p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.ai-assistant-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.ai-assistant-features li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: var(--text-color);
}

.ai-assistant-features li i {
  color: var(--primary-color);
  margin-right: 15px;
}

.ai-assistant-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ai-assistant-image img {
  max-width: 80%;
  height: auto;
}

/* About Us Page Styles */
.vision-mission {
  padding: 80px 0;
  background-color: #fff;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vision-box, .mission-box {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.icon-wrapper {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.problem-solution {
  padding: 80px 0;
  background-color: var(--background-light);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.problem-card, .solution-card {
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.our-values {
  padding: 80px 0;
  background-color: var(--background-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.value-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

/* Booking Section Styles */
.booking-section {
  padding: 4rem 0;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.consultant-info {
  background: white;
  border-radius: 10px;
  padding: 2rem;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.profile-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-details h2 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.company, .organization {
  margin: 0;
  color: #666;
}

.booking-form {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group select,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-image-container {
    order: -1;
  }
  
  .featured-content {
    flex-direction: column;
  }
  
  .featured-text {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .featured-image {
    height: 400px;
  }
  
  .featured-image img {
    max-width: 100%;
    transform: translateY(-30%);
  }
  
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission-grid,
  .problem-solution-grid,
  .key-benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .featured-cards {
    grid-template-columns: 1fr;
  }
  
  .featured-text h2 {
    font-size: 2rem;
  }
  
  .featured-image {
    height: 300px;
  }
  
  .ai-assistant-content {
    flex-direction: column;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .search-box {
    margin: 1rem;
  }
  
  .category-card {
    margin: 1rem;
  }
  
  .vision-mission,
  .problem-solution,
  .platform-benefits,
  .our-values {
    padding: 60px 0;
  }
  
  .value-card {
    padding: 20px;
  }
  
  .faq-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Steps responsive - 2 columns on tablet */
  .steps-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
  }
  
  .steps-connecting-line {
    display: none;
  }
}

@media (max-width: 576px) {
  /* Single column on mobile */
  .steps-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .steps-container .step-card {
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
  
  .faq-question {
    padding: 1rem;
  }
  
  .faq-answer p {
    padding: 0 1rem 1rem;
  }
}

/* Add these styles to page.css for applicant.php */

/* Applicant Hero Section */
.applicant-hero {
    background-color: rgba(11, 74, 111, 0.05);
}

.applicant-hero .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.applicant-hero .hero-text {
    flex: 1;
    text-align: left;
    max-width: 500px;
}

.applicant-hero .hero-image-container {
    flex: 1;
    text-align: right;
    display: flex;
    justify-content: flex-end;
}

/* AI Assistant Section */
.ai-assistant-section {
    background-color: var(--background-light);
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: var(--border-radius-lg);
}

.ai-assistant-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.ai-assistant-info {
    flex: 1;
}

.ai-assistant-info h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ai-assistant-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.ai-assistant-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.ai-assistant-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1rem;
}

.ai-assistant-features li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

.ai-assistant-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.ai-assistant-image img {
    max-width: 80%;
    height: auto;
    border-radius: var(--border-radius-lg);
}

/* Feature Categories */
.feature-categories {
    padding: 3rem 0;
    background-color: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-blue));
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.category-card h3 {
    margin-bottom: 1rem;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 1.3rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.95rem;
}



/* Responsive styles for applicant page */
@media (max-width: 992px) {
    .applicant-hero .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .applicant-hero .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .applicant-hero .hero-image-container {
        text-align: center;
        justify-content: center;
    }

    .ai-assistant-content {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .ai-assistant-content {
        gap: 2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-card {
        padding: 2rem;
    }
}
/* Add these styles to page.css for become-member.php */

/* Become Member Hero Section */
.consultant-hero {
  background-color: rgba(234, 170, 52, 0.05);
}

.consultant-hero .hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.consultant-hero .hero-text {
  flex: 1;
  text-align: left;
  max-width: 500px;
}

.consultant-hero .hero-image-container {
  flex: 1;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.consultant-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.consultant-hero .hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.5;
}

.consultant-hero .hero-image {
  max-width: 100%;
  height: auto;
  
  
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Membership Plans Section */
.membership-plans {
  margin-bottom: 4rem;
  text-align: center;
}

.membership-plans h2 {
  color: var(--dark-blue);
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.membership-plans p {
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-header {
  padding: 2rem;
  text-align: center;
  background-color: var(--primary-light);
  border-bottom: 1px solid var(--border-color);
}

.plan-name {
  color: var(--dark-blue);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

.plan-price {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

.plan-billing {
  color: var(--text-light);
  font-size: 0.9rem;
}

.plan-features {
  padding: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.plan-action {
  padding: 0 2rem 2rem;
  text-align: center;
}

.select-plan-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.select-plan-btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

.no-plans-message {
  text-align: center;
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  color: var(--text-light);
  font-style: italic;
  width: 100%;
  grid-column: 1 / -1;
}

/* Feature Categories Section - Remove top border */
.feature-categories .category-card::before {
  display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .consultant-hero .hero-content {
      flex-direction: column;
      gap: 2rem;
  }
  
  .consultant-hero .hero-text {
      text-align: center;
      max-width: 100%;
  }
  
  .consultant-hero .hero-image-container {
      text-align: center;
      justify-content: center;
  }
  
  .plans-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .consultant-hero .hero-title {
      font-size: 1.8rem;
  }
  
  .consultant-hero .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .membership-plans h2 {
      font-size: 1.7rem;
  }
  
  .plans-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .plan-header {
      padding: 1.5rem;
  }
  
  .plan-features {
      padding: 1.5rem;
  }
  
  .categories-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
}

@media (max-width: 576px) {
  .consultant-hero .hero-title {
      font-size: 1.5rem;
  }
  
  .plan-price {
      font-size: 2rem;
  }
  
  .plan-header {
      padding: 1rem;
  }
  
  .plan-features {
      padding: 1rem;
  }
}
/* Add these styles to page.css for consultant-registration.php */

/* Consultant Registration Page Styles */
.registration-page {
  margin: 2rem 0;
}

.registration-container {
  max-width: 1100px;
  margin: 0 auto;
}

.registration-container h1 {
  color: var(--dark-blue);
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  font-weight: 700;
}

.subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.registration-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.registration-form-container {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-section {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2rem;
}

.form-section:last-child {
  border-bottom: none;
  margin-bottom: 2rem;
}

.form-section h3 {
  color: var(--dark-blue);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Stripe Element Styles */
.StripeElement {
  background-color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.StripeElement--focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.StripeElement--invalid {
  border-color: var(--danger-color);
}

.payment-error-message {
  color: var(--danger-color);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Terms and Privacy */
.terms-privacy {
  margin-bottom: 2.5rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

.checkbox-group a {
  color: var(--primary-color);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

/* Form Buttons */
.form-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  gap: 2rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.cancel-btn {
  background-color: var(--background-light);
  color: var(--text-light);
  border: 1px solid var(--border-color);
}

.cancel-btn:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
}

.submit-btn {
  background-color: var(--primary-color);
  color: var(--white);
}

.submit-btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

.submit-btn.disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}

.processing-payment {
  display: inline-block;
  margin-left: 0.5rem;
}

/* Plan Summary Styles */
.plan-summary-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.plan-summary {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}

.plan-summary h3 {
  color: var(--dark-blue);
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 600;
}

.selected-plan {
  margin-bottom: 2.5rem;
}

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-name {
  color: var(--dark-blue);
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.plan-price {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 700;
}

.plan-billing {
  color: var(--text-light);
  font-size: 0.9rem;
}

.plan-features {
  margin-bottom: 2rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.feature i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.no-plan-selected {
  text-align: center;
  padding: 3rem 0;
}

.no-plan-selected p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

/* Change Plan Section */
.change-plan {
  margin-top: 3rem;
}

.change-plan h4 {
  color: var(--dark-blue);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.plan-option:hover {
  background-color: var(--primary-light);
}

.plan-option.selected {
  background-color: var(--primary-light);
  border-color: var(--primary-color);
}

.plan-option input[type="radio"] {
  margin-right: 1rem;
}

.plan-option label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  cursor: pointer;
}

.plan-option .plan-name {
  font-size: 1rem;
  font-weight: 500;
}

.plan-option .plan-price {
  font-size: 1rem;
  color: var(--text-color);
}

/* Registration Help */
.registration-help {
  background-color: var(--background-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  text-align: center;
}

.registration-help h4 {
  color: var(--dark-blue);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.registration-help p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--background-light);
  transform: translateY(-2px);
}

.btn-small {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}

/* Registration Success */
.registration-success {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 4rem;
  text-align: center;
  max-width: 600px;
  margin: 4rem auto;
}

.success-icon {
  font-size: 5rem;
  color: var(--success-color);
  margin-bottom: 2rem;
}

.registration-success h2 {
  color: var(--dark-blue);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.registration-success p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.success-actions {
  margin-top: 3rem;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.primary-btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
}

/* Promo Code Styles */
.promo-code-container {
  margin-bottom: 2rem;
}

.promo-input-group {
  display: flex;
  gap: 1rem;
}

.promo-message {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.promo-message.success {
  color: var(--success-color);
}

.promo-message.error {
  color: var(--danger-color);
}

.price-breakdown {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.price-breakdown .item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.price-breakdown .total {
  font-weight: bold;
  color: var(--dark-blue);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .registration-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .plan-summary-container {
      order: -1;
  }
  
  .form-row {
      flex-direction: column;
      gap: 0;
  }
}

@media (max-width: 768px) {
  .registration-container h1 {
      font-size: 2rem;
  }
  
  .subtitle {
      font-size: 1rem;
  }
  
  .registration-form-container {
      padding: 2rem;
  }
  
  .plan-summary {
      padding: 2rem;
  }
  
  .form-buttons {
      flex-direction: column;
      gap: 1rem;
  }
  
  .btn {
      width: 100%;
  }
  
  .registration-success {
      padding: 2rem;
      margin: 2rem auto;
  }
}

@media (max-width: 576px) {
  .registration-container h1 {
      font-size: 1.8rem;
  }
  
  .registration-form-container {
      padding: 1.5rem;
  }
  
  .plan-summary {
      padding: 1.5rem;
  }
  
  .form-section {
      padding-bottom: 1.5rem;
      margin-bottom: 2rem;
  }
  
  .promo-input-group {
      flex-direction: column;
      gap: 0.5rem;
  }
}
/* Add these styles to page.css for book-service.php */

/* Book Service Hero Section */
.book-service-hero {
  background-color: rgba(234, 170, 52, 0.05);
  padding: 6rem 0;
  color: var(--text-color);
  overflow: hidden;
  position: relative;
}

.book-service-hero .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.book-service-hero .hero-title {
  font-size: 3.5rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.book-service-hero .hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--dark-blue);
}

/* Search Filters */
.search-filters {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

.filter-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  align-items: center;
}

.filter-item select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  background-color: var(--white);
  transition: var(--transition);
}

.filter-item select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 5rem 0;
  color: var(--text-light);
}

.empty-state i {
  font-size: 3rem;
  color: #ccc;
  margin-bottom: 1rem;
}

/* Consultant Cards */
.consultant-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.consultant-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.verified-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--success-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}

.consultant-header {
  padding: 2rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
}

.consultant-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  flex-shrink: 0;
  background-color: #f0f0f0;
  border: 1px solid var(--border-color);
}

.consultant-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.default-avatar {
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  font-weight: bold;
}

.consultant-info h3 {
  margin: 0 0 0.5rem 0;
  color: var(--dark-blue);
  font-size: 1.125rem;
  font-weight: 600;
}

.company-name {
  margin: 0 0 0.5rem 0;
  color: var(--text-light);
  font-size: 0.875rem;
}

.rating {
  color: #f8bb00;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.rating span {
  color: #999;
  margin-left: 0.5rem;
}

.consultant-body {
  padding: 2rem;
  flex-grow: 1;
}

.bio {
  margin-top: 0;
  color: var(--text-color);
  line-height: 1.4;
}

.specializations {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.specialization-preview {
  display: inline;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.see-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
  white-space: nowrap;
}

.meta-info {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-item {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-light);
}

.meta-item i {
  margin-right: 0.5rem;
  color: var(--dark-blue);
}

.consultant-footer {
  padding: 1rem 2rem;
  background-color: var(--background-light);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
}

.consultant-footer .btn {
  width: 48%;
  padding: 1rem 2.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
}

/* Grid Layout */
.consultants-list .row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
}

.consultant-card-wrapper {
  width: 100%;
  padding: 0;
}

.consultant-card.horizontal {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 0.6fr;
  grid-template-areas:
      "image info meta action";
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.consultant-card.horizontal .consultant-img {
  grid-area: image;
  margin: 0;
}

.consultant-card.horizontal .consultant-info {
  grid-area: info;
  padding: 0;
  border: none;
}

.consultant-card.horizontal .consultant-meta {
  grid-area: meta;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consultant-card.horizontal .consultant-action {
  grid-area: action;
  display: flex;
  justify-content: flex-end;
}

.consultant-card.horizontal .specializations {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.consultant-card.horizontal .verified-badge {
  top: 1rem;
  right: 1rem;
}

.consultant-card.horizontal .rating {
  margin-top: 0.5rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: var(--white);
  margin: 10% auto;
  padding: 2rem;
  border-radius: var(--border-radius);
  width: 80%;
  max-width: 600px;
  position: relative;
}

.close {
  position: absolute;
  right: 2rem;
  top: 1.5rem;
  font-size: 1.75rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-light);
}

.modal-title {
  margin-top: 0;
  color: var(--dark-blue);
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Specialization Tabs */
.specialization-tabs {
  margin-top: 2rem;
}

.tab-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 0.5rem 1rem;
  border: none;
  background-color: var(--background-light);
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.tab-button.active {
  background-color: var(--primary-color);
  color: var(--white);
}

.tab-content {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: var(--border-radius);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.tab-pane ul {
  margin: 0;
  padding-left: 1.5rem;
}

.tab-pane li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 991px) {
  .consultant-card.horizontal {
      grid-template-columns: 80px 1fr 1fr;
      grid-template-areas:
          "image info info"
          "image meta action";
  }
  
  .book-service-hero .hero-title {
      font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .consultant-card.horizontal {
      grid-template-columns: 80px 1fr;
      grid-template-areas:
          "image info"
          "meta meta"
          "action action";
      gap: 1.5rem;
  }

  .consultant-card.horizontal .consultant-action {
      justify-content: stretch;
  }

  .filter-container {
      grid-template-columns: 1fr;
  }
  
  .book-service-hero .hero-title {
      font-size: 2.5rem;
  }
  
  .search-filters {
      padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .book-service-hero .hero-title {
      font-size: 2rem;
  }
  
  .book-service-hero .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .consultant-card.horizontal {
      padding: 1.5rem;
  }
  
  .modal-content {
      width: 95%;
      padding: 1.5rem;
      margin: 5% auto;
  }
  
  .tab-buttons {
      flex-direction: column;
  }
  
  .tab-button {
      width: 100%;
  }
}
/* Update the hero section styles for book-service.php with new class names */

/* Book Service Hero Section - Completely Renamed */
.book-consultation-hero {
  background-color: rgba(234, 170, 52, 0.05);
  padding: 6rem 0;
  color: var(--text-color);
  overflow: hidden;
  position: relative;
}

.book-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem auto;
}

.book-hero-title {
  font-size: 3.5rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.book-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--dark-blue);
}

/* Search Filters - Renamed and Restructured */
.book-search-filters {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 3rem;
  box-shadow: var(--shadow);
}

.book-filter-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}

.book-filter-item {
  flex: 1;
  min-width: 180px;
  max-width: 200px;
}

.book-form-control {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
}

.book-form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.book-btn {
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: center;
  font-size: 1rem;
}

.book-btn-secondary {
  background-color: var(--white);
  color: var(--text-color);
  border: 1px solid var(--border-color);
}

.book-btn-secondary:hover {
  background-color: var(--background-light);
  transform: translateY(-2px);
}

/* Add bottom margin to consultant cards */
.consultant-card-wrapper {
  width: 100%;
  padding: 0;
  margin-bottom: 2rem;
}

.consultant-card-wrapper:last-child {
  margin-bottom: 0;
}

/* Responsive Design for New Layout */
@media (max-width: 1200px) {
  .book-filter-container {
      justify-content: space-between;
  }
  
  .book-filter-item {
      min-width: 160px;
      max-width: 180px;
  }
}

@media (max-width: 991px) {
  .book-consultation-hero .hero-title {
      font-size: 3rem;
  }
  
  .book-filter-container {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .book-filter-item {
      min-width: 200px;
      max-width: 250px;
  }
}

@media (max-width: 768px) {
  .book-consultation-hero .hero-title {
      font-size: 2.5rem;
  }
  
  .book-filter-container {
      flex-direction: column;
      align-items: stretch;
  }
  
  .book-filter-item {
      min-width: 100%;
      max-width: 100%;
  }
  
  .book-search-filters {
      padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .book-consultation-hero .hero-title {
      font-size: 2rem;
  }
  
  .book-consultation-hero .hero-subtitle {
      font-size: 1.1rem;
  }
  
  .book-hero-content {
      margin-bottom: 2rem;
  }
  
  .book-search-filters {
      padding: 1rem;
  }
}

/* Platform Features Showcase Section - New Renamed Styles */
.platform-features-section {
  padding: 6rem 0;
  background-color: var(--white);
}

.features-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
}

.feature-showcase-item {
  margin-bottom: 6rem;
}

.feature-showcase-content {
  display: flex;
  align-items: center;
  gap: 60px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.feature-showcase-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-showcase-content.feature-reverse {
  flex-direction: row-reverse;
}

.feature-text-content {
  flex: 1;
  padding-left: 40px;
}

.feature-text-content h3 {
  color: var(--dark-blue);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-description {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: block;
  margin-bottom: 20px;
}

.feature-check-icon {
  display: none;
}

.feature-list li strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text-color);
  font-size: 1rem;
}

.feature-list li p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feature-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 2rem;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFEDD6 25%, #FFE0C4 50%, #FFD9B5 75%, #FFF5E8 100%);
  min-height: 350px;
  overflow: hidden;
}

.feature-circle-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.feature-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.08;
}

.feature-circle-1 {
  width: 80px;
  height: 80px;
  top: 20px;
  left: 20px;
}

.feature-circle-2 {
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
}

.feature-img-container {
  position: relative;
  z-index: 2;
  max-width: 90%;
  height: auto;
}

.feature-img-container img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.feature-svg-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.feature-svg {
  position: absolute;
  width: 100%;
  height: 100%;
  fill: var(--primary-light);
  opacity: 0.3;
}

.feature-svg-1, .feature-svg-3, .feature-svg-5 {
  top: -10%;
  left: -10%;
  animation: feature-morph 8s ease-in-out infinite;
}

.feature-svg-2, .feature-svg-4, .feature-svg-6 {
  top: -5%;
  left: -5%;
  animation: feature-morph 8s ease-in-out infinite reverse;
}

@keyframes feature-morph {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.05) translate(1%, 1%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

/* Responsive Styles for Feature Showcase */
@media (max-width: 992px) {
  .feature-showcase-content,
  .feature-showcase-content.feature-reverse {
    flex-direction: column;
    gap: 40px;
  }
  
  .feature-text-content {
    padding-right: 0;
    width: 100%;
  }
  
  .feature-image-wrapper {
    width: 100%;
    min-height: 300px;
  }
  
  /* Force all images to top on mobile */
  .feature-image-wrapper {
    order: -1;
  }
  
  .feature-text-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .platform-features-section {
    padding: 4rem 0;
  }
  
  .feature-showcase-item {
    margin-bottom: 4rem;
  }
  
  .feature-showcase-content {
    padding: 30px 20px;
    gap: 30px;
  }
  
  .feature-text-content h3 {
    font-size: 1.5rem;
  }
  
  .feature-description {
    font-size: 1rem;
  }
  
  .feature-image-wrapper {
    min-height: 250px;
    padding: 1.5rem;
  }
  
  .feature-list li {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .feature-showcase-content {
    padding: 20px 15px;
  }
  
  .feature-text-content h3 {
    font-size: 1.3rem;
  }
  
  .feature-list li {
    display: block;
  }
}