/* start-conversation.css */

/* Base Reset */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #fff;
  color: #444;
}

/* Section Container with full bleed background */
.start-conversation-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background-color: #fff;
  padding: 70px 0 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Inner wrapper max 1200px, flex container */
.start-conversation-wrapper {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px; /* generous gap */
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 0px; /* slight horizontal padding for breathing room */
  box-sizing: border-box;
}

/* Left panel: 60% width */
.start-conversation-left {
  width: 60%;
  min-width: 320px;
  max-width: 720px;
  box-sizing: border-box;
}

/* Right panel: 40% width */
.start-conversation-right {
  width: 40%;
  min-width: 320px;
  max-width: 480px;
  box-sizing: border-box;
}

/* Left panel typography */
.start-conversation-left h3 {
  font-weight: 800;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 22px;
  color: #222;
  text-align: left;
}

.start-conversation-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #555;
  text-align: left;
  font-weight: 400;
}

/* Contact List */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: #f3f6fb;
  box-shadow: 0 4px 12px rgba(43, 78, 255, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-info strong {
  font-weight: 600;
  font-size: 17px;
  color: #222;
}

.contact-info a {
  font-weight: 400;
  color: #222;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #2b4eff;
  text-decoration: underline;
}

/* Conversation container styling */
.conversation-container {
  background: #f9f9fa;
  border-radius: 20px;
  padding: 48px 44px 40px;
  box-shadow: 0 6px 24px rgba(43, 78, 255, 0.1);
  max-width: 480px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0; /* remove negative margin for cleaner spacing */
}

.conversation-container h4 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #222;
  text-align: left;
}

.conversation-container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 32px;
  text-align: left;
  font-weight: 400;
}

.conversation-container h5 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 26px;
  margin-bottom: 16px;
  color: #222;
  text-align: left;
}

/* Buttons container */
.conversation-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  width: 100%;
}

/* Buttons */
.btn-contact,
.btn-secondary {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  user-select: none;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Contact button with improved hover text color */
.btn-contact {
  background-color: var(--color-primary, #2b4eff);
  color: #fff;
  box-shadow: 0 4px 12px rgba(43, 78, 255, 0.4);
}

.btn-contact:hover,
.btn-contact:focus {
  background-color: #001f8a;
  box-shadow: 0 6px 20px rgba(0, 31, 138, 0.7);
  color: #f0f8ff !important; /* Change text color on hover/focus */
  outline: none;
}

.btn-contact:hover > *,
.btn-contact:focus > * {
  color: #f0f8ff !important; /* ensures all child elements (icons, spans) change color */
  text-shadow: 0 0 8px rgba(255 255 255 / 0.9); /* optional text glow for visibility */
}

.btn-secondary {
  background-color: #e6eafd;
  color: var(--color-primary, #2b4eff);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #d2daff;
  color: #001f8a;
  outline: none;
}

/* Button icons */
.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Next steps */
.next-steps-points {
  font-size: 15px;
  line-height: 2.3;
  color: #444;
  letter-spacing: 0.01em;
  text-align: left;
  margin-top: 8px;
  user-select: none;
}

/* Responsive styles */
@media (max-width: 992px) {
  .start-conversation-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 16px;
  }

  .start-conversation-left,
  .start-conversation-right {
    width: 100%;
    max-width: 100%;
    min-width: auto;
  }

  .conversation-container {
    max-width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .start-conversation-left h3 {
    font-size: 26px;
  }

  .conversation-container h4 {
    font-size: 24px;
  }
}
/* ======= 🚀 SUPER POP BUTTON STYLES ======= */
/* Add this to your start-conversation.css file */

/* Enhanced primary button with serious pop */
.btn-contact {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  user-select: none;
  position: relative;
  overflow: hidden;
  
  /* Modern gradient background */
  background: linear-gradient(135deg, #2b4eff 0%, #1a3bcc 100%);
  color: #fff;
  box-shadow: 
    0 4px 15px rgba(43, 78, 255, 0.4),
    0 2px 8px rgba(43, 78, 255, 0.2);
  
  /* Smooth transitions */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Add subtle inner glow */
  background-size: 200% 200%;
  background-position: 0% 50%;
}

/* Shimmer effect overlay */
.btn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
  transition: left 0.5s ease;
}

/* HOVER STATE - This is where the magic happens! */
.btn-contact:hover {
  /* Dramatic scale and lift */
  transform: translateY(-3px) scale(1.02);
  
  /* Enhanced gradient shift */
  background: linear-gradient(135deg, #439cef 0%, #2b4eff 50%, #1a3bcc 100%);
  background-position: 100% 50%;
  
  /* Glorious glow effect */
  box-shadow: 
    0 8px 30px rgba(67, 156, 239, 0.6),
    0 4px 20px rgba(43, 78, 255, 0.4),
    0 0 0 3px rgba(67, 156, 239, 0.2);
  
  /* Shimmer animation trigger */
}

.btn-contact:hover::before {
  left: 100%;
}

/* ACTIVE/PRESSED STATE - Even more pop! */
.btn-contact:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 
    0 5px 20px rgba(67, 156, 239, 0.7),
    0 2px 10px rgba(43, 78, 255, 0.5);
}

/* Focus state for accessibility */
.btn-contact:focus {
  outline: none;
  box-shadow: 
    0 4px 15px rgba(43, 78, 255, 0.4),
    0 2px 8px rgba(43, 78, 255, 0.2),
    0 0 0 3px rgba(67, 156, 239, 0.3);
}

/* Enhanced secondary button */
.btn-secondary {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  user-select: none;
  position: relative;
  overflow: hidden;
  
  /* Clean background with subtle gradient */
  background: linear-gradient(135deg, #f8f9ff 0%, #e6eafd 100%);
  color: #2b4eff;
  
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Secondary button hover - complementary pop */
.btn-secondary:hover {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(135deg, #fff 0%, #f0f3ff 100%);
  border-color: rgba(67, 156, 239, 0.3);
  color: #1a3bcc;
  
  box-shadow: 
    0 6px 20px rgba(43, 78, 255, 0.15),
    0 2px 10px rgba(43, 78, 255, 0.1);
}

.btn-secondary:active {
  transform: translateY(-1px) scale(1.005);
}

.btn-secondary:focus {
  outline: none;
  border-color: rgba(67, 156, 239, 0.4);
  box-shadow: 
    0 4px 15px rgba(43, 78, 255, 0.2),
    0 0 0 3px rgba(67, 156, 239, 0.1);
}

/* Icon animations */
.btn-contact .btn-icon {
  transition: transform 0.3s ease;
}

.btn-contact:hover .btn-icon {
  transform: translateX(2px) scale(1.1);
}

.btn-secondary .btn-icon {
  transition: transform 0.3s ease;
}

.btn-secondary:hover .btn-icon {
  transform: rotate(5deg) scale(1.05);
}

/* ======= MOBILE RESPONSIVENESS ======= */
@media (max-width: 768px) {
  .btn-contact:hover,
  .btn-secondary:hover {
    /* Reduce hover effects on mobile for better touch experience */
    transform: translateY(-1px) scale(1.01);
  }
  
  .btn-contact:active,
  .btn-secondary:active {
    transform: scale(0.98);
  }
}

/* ======= OPTIONAL: PULSE ANIMATION FOR EXTRA ATTENTION ======= */
/* Uncomment if you want the primary button to subtly pulse */
/*
@keyframes gentlePulse {
  0%, 100% { 
    box-shadow: 0 4px 15px rgba(43, 78, 255, 0.4), 0 2px 8px rgba(43, 78, 255, 0.2);
  }
  50% { 
    box-shadow: 0 6px 20px rgba(67, 156, 239, 0.5), 0 3px 12px rgba(43, 78, 255, 0.3);
  }
}

.btn-contact {
  animation: gentlePulse 3s ease-in-out infinite;
}
*/