/* components.css - Component Styles for Difference Consulting */
/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 1rem;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 8px -2px rgba(17, 24, 39, 0.12), 0 2px 4px -1px rgba(17, 24, 39, 0.08);
}

.btn-primary:hover {
  background-color: #333333;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 8px -2px rgba(17, 24, 39, 0.08), 0 2px 4px -1px rgba(17, 24, 39, 0.05);
}

.btn-outline:hover {
  border-color: #d1d5db;
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 12px -2px rgba(17, 24, 39, 0.1), 0 4px 6px -1px rgba(17, 24, 39, 0.8);
}

.logo-image-container {
  width: auto;
  height: auto;
}

.logo-image {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
    .hidden-on-mobile {
      display: none;
    }
  }

@media (max-width: 768px) {
  .logo-image {
    max-height: 24px;
  }
}

.nav-links ul {
  display: flex;
  list-style: none;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--color-black);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: var(--transition-default);
}

.nav-links a:hover {
  color: var(--color-gray-600);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-black);
  transition: var(--transition-default);
}

.nav-links a:hover::after, 
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-black);
  transition: var(--transition-default);
}

.nav-toggle:hover {
  opacity: 0.7;
}

.mobile-menu {
  display: none;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
  padding: var(--space-md) 0;
  animation: slideDown 0.3s ease;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: var(--space-md);
}

.mobile-menu a {
  display: block;
  padding: var(--space-sm) 0;
  color: var(--color-black);
  transition: var(--transition-default);
}

.mobile-menu a:hover {
  color: var(--color-gray-600);
  transform: translateX(4px);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section - Updated */
.hero {
  position: relative;
  min-height: 100vh;
  height: auto;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Replace the solid background with a gradient */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;

  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  padding: var(--space-xl);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-layered);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  color: var(--color-black);
}

.hero-description {
  color: var(--color-gray-700);
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Sections */
.section {
  padding: var(--space-3xl) 0;
  position: relative;

}

.section-title-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-black);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-black);
}

.section-description {
  color: var(--color-gray-700);
}

.section-bg-gray {
  background-color: var(--color-gray-50);
}

.section-bg-gradient {
  background: linear-gradient(to bottom, var(--color-white), var(--color-gray-50), var(--color-white));
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.card {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-layered);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: rgba(0, 0, 0, 0.05);
}

.card-icon {
  font-size: 3rem;
  color: var(--color-black);
  margin-bottom: var(--space-lg);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

.card-description {
  color: var(--color-gray-700);
}

.card-footer {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-link {
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  font-weight: 600;
  transition: var(--transition-default);
}

.card-link:hover {
  color: var(--color-gray-600);
}

.card-link-icon {
  margin-left: var(--space-xs);
  transition: transform 0.2s ease;
}

.card-link:hover .card-link-icon {
  transform: translateX(4px);
}

/* Service Detail */
.service-detail {
  margin-bottom: var(--space-3xl);
}

.service-detail:last-child {
  margin-bottom: 0;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-benefits {
  background-color: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-benefits-title {
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.benefits-list li:last-child {
  margin-bottom: 0;
}

.benefits-icon {
  margin-right: var(--space-sm);
  color: var(--color-black);
  flex-shrink: 0;
}

.benefits-text {
  color: var(--color-gray-700);
}

.service-image-container {
  position: relative;
}

.service-image-bg {
  position: absolute;
  inset: -4px;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.08));
  border-radius: 24px;
  filter: blur(8px);
  opacity: 0.3;
}

.service-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow-layered);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  filter: grayscale(100%); /* Make all images black and white */
}

.contact-grid {
  display: block !important;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto 60px auto;
}



.form-grid {
  display: grid;
  gap: var(--space-lg);
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-800);
  margin-bottom: var(--space-xs);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group button.btn-primary {
  margin-top: 12px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-info-minimal {
  text-align: center;
  padding: 40px 20px;
  background-color: var(--color-gray-50);
  border-radius: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.contact-info-item-minimal {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-700);
  font-size: 0.95rem;
}

.icon-minimal {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--color-gray-600);
}

.contact-info-separator {
  color: var(--color-gray-400);
  font-size: 1.2rem;
  display: none;
}

.contact-quote {
  font-style: italic;
  color: var(--color-gray-600);
  font-size: 0.95rem;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-gray-200);
}

/* Responsive design */
@media (min-width: 640px) {
  .contact-info-separator {
    display: block;
  }
}

@media (max-width: 768px) {
  .contact-form {
    padding: 40px 30px;
  }
  
  .contact-info-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-info-separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .contact-form {
    padding: 30px 20px;
  }
  
  .form-control {
    padding: 12px 16px;
  }
}

.form-control::placeholder {
  color: var(--color-gray-500);
}

textarea.form-control {
  resize: vertical;
}

.contact-info {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-layered);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: var(--space-xl);
}

.contact-info-items {
  display: grid;
  gap: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: var(--radius-full);
  margin-right: var(--space-md);
  flex-shrink: 0;
  color: var(--color-black);
}

.contact-info-content h4 {
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: var(--space-xs);
}

.contact-info-content p {
  color: var(--color-gray-700);
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-layered);
  height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.map-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2));
  z-index: 10;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%); /* Make the map black and white */
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.faq-card {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-layered);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  background-color: rgba(0, 0, 0, 0.03);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-black);
}

.faq-answer {
  color: var(--color-gray-700);
}

/* CTA Section */
.cta-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-layered);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--color-black);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
  color: var(--color-gray-800);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

/* Footer */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-2xl) 0;
}

/* Better footer grid styling with improved flexbox approach */
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem; /* Even spacing between columns */
}

/* First column - main description */
.footer-column:first-child {
  flex: 2.5; /* Take up more space than other columns */
  min-width: 280px; /* Minimum width to ensure content fits well */
  max-width: 40%; /* Cap the maximum width */
  padding-right: 3rem; /* Extra padding to separate content visually */
}

/* Other columns - navigation and contact info */
.footer-column:not(:first-child) {
  flex: 1; /* All other columns take equal space */
  min-width: 180px; /* Prevent columns from getting too narrow */
}

/* Better typography in footer */
.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem; /* More space under headings */
  position: relative; /* For potential decorative elements */
}

/* Improved description styling */
.footer-description {
  color: rgba(255, 255, 255, 0.7); /* More readable gray */
  line-height: 1.6; /* Better line height for readability */
  margin-bottom: 1.5rem;
}

/* Enhanced social media icons */
.footer-social {
  display: flex;
  gap: 1rem; /* More space between icons */
  margin-top: 0.75rem; /* Space from above text */
}

.footer-social a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
  display: flex; /* Center icons better */
  align-items: center;
  justify-content: center;
  width: 36px; /* Fixed size for better alignment */
  height: 36px;
}

.footer-social a:hover {
  color: white;
  transform: translateY(-3px); /* Subtle lift effect */
}

/* Better link styling */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block; /* Allow transform effects */
}

.footer-links a:hover {
  color: white;
  transform: translateX(4px); /* Subtle slide effect */
}

/* Contact items in the last column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
  position: relative;
  top: 2px; /* Align icon better with text */
}

/* Bottom copyright area */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem; /* More space above copyright */
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-column:first-child {
    flex: 2; /* Slightly less width on medium screens */
    max-width: 45%;
    padding-right: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    gap: 2rem;
  }
  
  .footer-column:first-child {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .footer-column:not(:first-child) {
    flex-basis: 100%;
    margin-bottom: 1rem;
  }
  
  /* Optional: divide columns with subtle lines on mobile */
  .footer-column:not(:last-child) {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}
.footer-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--color-white);
}

.footer-description {
  color: var(--color-gray-400);
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
}

.footer-social a {
  color: var(--color-gray-400);
  transition: var(--transition-default);
}

.footer-social a:hover {
  color: var(--color-white);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--color-gray-400);
  transition: var(--transition-default);
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-icon {
  margin-right: var(--space-sm);
  color: var(--color-gray-400);
  flex-shrink: 0;
}

.footer-contact-text {
  color: var(--color-gray-400);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  text-align: center;
  color: var(--color-gray-500);
}

/* Program Picker Styles */
/* Enhanced Selection Styling - Added [Date] */
/* Enhanced Selection Styling - Added [Date] */
.program-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.program-option {
  position: relative;
  flex: 1 1 calc(50% - 16px);
  min-width: 220px;
  background-color: var(--color-white);
  border: 2px solid #e2e2e2;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.program-option:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gray-300);
}

.program-option.selected {
  border-color: var(--color-black);
  background-color: rgba(0, 0, 0, 0.02);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.program-option.selected::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  background-color: var(--color-black);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

.program-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 6px;
}



.program-badge {
  display: inline-block;
  background-color: var(--color-black);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.program-description {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  margin-top: 10px;
}

/* Hidden radio inputs */
.program-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* Contact form mock */
.contact-form {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  gap: 24px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-gray-200);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--color-white);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .program-option {
    flex: 1 1 100%;
  }
}


