/* style.css for BizPlanner - NEW ENHANCED VERSION */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: linear-gradient(45deg, #1a1a1a, #0f0f0f, #1c1c1c);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease-in-out infinite;
  overflow-x: hidden;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.container {
  width: 100%;
  max-width: 640px;
  margin: 4rem auto;
  padding: 2rem 2.5rem;
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid #333;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: fadeInDown 1s ease-out;
  box-sizing: border-box;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  color: #f1c40f;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: brandGlow 2s ease-in-out infinite alternate;
}

@keyframes brandGlow {
  from { text-shadow: 0 0 1px #f1c40f, 0 0 10px #f1c40f; }
  to { text-shadow: 0 0 12px #f1c40f, 0 0 35px #f1c40f; }
}

.section p {
    text-align: center;
    color: #b3b3b3;
    line-height: 1.6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 2rem;
}

.form-group {
    animation: fadeInUp 0.5s ease-out both;
}
.form-group:nth-child(1) { animation-delay: 0.2s; }
.form-group:nth-child(2) { animation-delay: 0.3s; }
.form-group:nth-child(3) { animation-delay: 0.4s; }


@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
  color: #f1c40f;
}

.form-group input,
.form-group select {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #444;
  background: #252525;
  color: white;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f1c40f;
  box-shadow: 0 0 1px rgba(241, 196, 15, 0.2);
}

.btn {
  background: #f1c40f;
  color: #000;
  padding: 0.9rem 2rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  margin-top: 1rem;
  transition: all 0.3s ease-out;
  animation: fadeInUp 0.5s ease-out 0.5s both;
}

.btn:hover {
  background: #ffb700;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 2px 20px rgba(255, 224, 101, 0.4);
}

.footer {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

@media (max-width: 768px) {
  .container {
    padding: 2rem 1.5rem;
    margin: 2rem auto;
  }
  .brand { font-size: 2rem; }
}
/* --- Add this to the end of style.css --- */

/* --- HEADER & NAVIGATION --- */
.header {
  max-width: 800px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Helps on very small screens */
}

.brand-logo a {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  color: #f1c40f;
  text-decoration: none;
  text-shadow: 0 0 12px #f1c40f;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #f1c40f;
}


/* --- FOOTER --- */
.footer {
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  color: #888;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

/* --- RESPONSIVE HEADER --- */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .nav-links a {
    margin: 0 0.75rem;
  }
}
/* --- Add this to the end of style.css --- */

/* NEW STYLE FOR MAIN PAGE TITLES INSIDE THE CARD */
.page-title {
  font-family: 'Poppins', sans-serif; /* Use Poppins for a content feel, not Orbitron */
  font-size: 2.2rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333; /* A subtle separator */
}
/* --- Add this to the end of style.css --- */

/* FLOATING CONTACT WIDGET STYLES */
.floating-contact-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-contact-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #2c2c2c;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.floating-contact-widget a:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(241, 196, 15, 0.3);
}

.floating-contact-widget svg {
  width: 28px;
  height: 28px;
  fill: #f1c40f; /* Yellow icon color */
}

/* FAQ PAGE STYLES */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for the icon */
}

.faq-question::after {
  content: '+';
  font-size: 1.8rem;
  color: #f1c40f;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer p {
  padding: 0 1rem 1rem 1rem;
  margin: 0;
  color: #b3b3b3;
}
/* --- Add this to the end of style.css --- */

/* HOMEPAGE ENHANCEMENT STYLES */
.info-section {
  text-align: center;
  margin-bottom: 3rem;
}

.how-it-works-steps {
  display: flex;
  justify-content: space-around;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.step {
  flex-basis: 30%;
  min-width: 200px;
}

.step .icon {
  font-size: 2.5rem;
}

.step h4 {
  color: #f1c40f;
  margin: 0.5rem 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card {
  background: #222;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #333;
  text-align: left;
}

.feature-card h4 {
  color: #f1c40f;
  margin-top: 0;
}
