/* styles/pages.css - Page Specific Styles */

/* --- HOME PAGE --- */
.hero {
  background: linear-gradient(to right, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.5) 60%, rgba(15, 23, 42, 0.1) 100%), url('../images/hero_concept.png') center/cover no-repeat;
  color: white;
  padding: 4rem 0 12rem 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 10;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
}

.hero-logo {
  max-width: 100%;
  max-height: 250px;
  margin-bottom: 2rem;
  display: block;
  filter: drop-shadow(0 4px 15px rgba(0,0,0,0.5));
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7), 0 4px 20px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.25rem;
  color: #f8fafc;
  margin-bottom: 2.5rem;
  max-width: 600px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8), 0 2px 4px rgba(0,0,0,0.6);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

/* Features / Avantages */
.features-section {
  padding: 6rem 0;
  background-color: var(--color-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background-color: var(--color-bg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  text-align: center;
  background-color: var(--color-surface);
}
.cta-box {
  background: linear-gradient(135deg, var(--color-primary), #1e293b);
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  color: white;
}
.cta-box h2 {
  color: white;
  margin-bottom: 1rem;
}


/* --- SERVICES PAGE --- */
.page-header {
  background-color: var(--color-surface);
  padding: 4rem 0 2rem;
  text-align: center;
}
.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.steps-section {
  padding: 4rem 0;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1;
}

.step-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.step-content ul {
  list-style-position: inside;
  color: var(--color-text-light);
  margin-top: 1rem;
}
.step-content li {
  margin-bottom: 0.5rem;
}


/* --- CONTACT PAGE --- */
.contact-section {
  padding: 4rem 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-card {
  background-color: var(--color-primary);
  color: white;
  padding: 3rem;
  border-radius: 1rem;
}

.contact-info-card h2 {
  color: white;
  margin-bottom: 2rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
}

.contact-form {
  background-color: var(--color-surface);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
}

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

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

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(138, 155, 46, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; gap: 1rem; padding: 2rem; }
}
