/* Styles spécifiques pour la page Architecte */

/* Navigation - Les styles de base sont dans style.css */

/* Hero Section */
.hero-section {
  padding: 8rem 0 6rem;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  background-image: url('../../assets/images/Logo bleu.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

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

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(102, 126, 234, 0.2);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-trust {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.trust-item span {
  display: block;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Problem Section */
.problem-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.02);
}

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

.problem-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.05);
}

.problem-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.problem-card p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

/* Services Section */
.services-section {
  padding: 6rem 0;
}

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

.service-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  padding: 3rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card.featured {
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.1);
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(102, 126, 234, 0.2);
}

.service-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 80px rgba(102, 126, 234, 0.4);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.service-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  line-height: 1;
}

.service-icon {
  font-size: 3rem;
  opacity: 0.8;
}

.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.service-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.service-features li {
  padding: 0.75rem 0;
  color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-cta {
  margin-top: auto;
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background: rgba(0, 0, 0, 0.02);
}

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

.benefit-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.benefit-card p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
}

/* Process Section */
.process-section {
  padding: 6rem 0;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  text-align: center;
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(102, 126, 234, 0.3);
  background: rgba(102, 126, 234, 0.05);
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.process-step p {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  font-size: 0.95rem;
}

.process-arrow {
  font-size: 2rem;
  color: rgba(102, 126, 234, 0.5);
  font-weight: 300;
}

/* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cta-section::before {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background-image: url('../../assets/images/Logo bleu.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn.large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.cta-note {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
}

/* Footer */
.page-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.02);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-brand:hover .footer-logo {
  opacity: 1;
}

.footer-brand h3 {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1a1a1a;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.875rem;
}

/* Responsive */
/* Clients Section */
.clients-section .client-logo:hover {
  opacity: 1 !important;
  transform: scale(1.05);
  filter: grayscale(0%) brightness(1) !important;
}

.clients-section .clients-grid {
  animation: fadeInUp 0.8s ease-out;
}

.clients-section .clients-grid .client-logo {
  animation: fadeInUp 0.8s ease-out backwards;
}

.clients-section .clients-grid .client-logo:nth-child(1) {
  animation-delay: 0.1s;
}

.clients-section .clients-grid .client-logo:nth-child(2) {
  animation-delay: 0.2s;
}

.clients-section .clients-grid .client-logo:nth-child(3) {
  animation-delay: 0.3s;
}

.clients-section .clients-grid .client-logo:nth-child(4) {
  animation-delay: 0.4s;
}

.clients-section .clients-grid .client-logo:nth-child(5) {
  animation-delay: 0.5s;
}

.clients-section .clients-grid .client-logo:nth-child(6) {
  animation-delay: 0.6s;
}

/* CTA Flottant */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.floating-cta {
  animation: fadeInUp 0.5s ease-out;
}

.floating-cta .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 1rem !important;
    right: 1rem !important;
  }

  .floating-cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    min-height: 44px;
    min-width: 44px;
  }

  .floating-cta .btn span:not(.material-symbols-outlined) {
    display: none;
  }
}

/* FAQ Section */
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  max-height: 500px !important;
  padding-top: 1rem;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(102, 126, 234, 0.3) !important;
}

@media (max-width: 768px) {
  .clients-section .clients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
}

/* Google Reviews Section */
.google-reviews-section {
  animation: fadeInUp 0.8s ease-out;
}

.google-reviews-wrapper {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-reviews-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .google-reviews-wrapper {
    padding: 1.5rem !important;
  }

  .google-reviews-wrapper iframe {
    height: 300px !important;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 2rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-container {
    padding: 0 1.5rem;
  }
}



