/* 
  FiscAura Conseil - Styles principaux
  Palette de couleurs:
  - Fond principal: #0FC2C0 (nefritovyy)
  - Accent: #D7FF32 (limetovyy neon)
  - Titres: #1B1B1E (ugol'no-chernyy)
  - Texte: #FFF8E7 (slonovaya kost')
  - Formes: #FAF3F0 (svetlaya pudra)
*/

/* Reset et bases */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #1B1B1E;
  background-color: #FFF8E7;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sections générales */
.section {
  padding: 80px 0;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1B1B1E;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: #D7FF32;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: 1.5rem;
}

/* Paragraphes */
p {
  margin-bottom: 1rem;
}

/* Liens */
a {
  color: #0FC2C0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D7FF32;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, #0FC2C0, #067E7C);
  color: #FFF8E7;
  box-shadow: 0 4px 10px rgba(15, 194, 192, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(45deg, #067E7C, #0FC2C0);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(15, 194, 192, 0.4);
  color: #FFF8E7;
}

.btn-secondary {
  background: linear-gradient(45deg, #D7FF32, #B1D618);
  color: #1B1B1E;
  box-shadow: 0 4px 10px rgba(215, 255, 50, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(45deg, #B1D618, #D7FF32);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(215, 255, 50, 0.4);
  color: #1B1B1E;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 248, 231, 0.95);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  height: 40px;
  width: auto;
}

.logo-text {
  margin-left: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B1B1E;
}

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  color: #1B1B1E;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover {
  color: #0FC2C0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #0FC2C0;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Menu burger pour mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #1B1B1E;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0FC2C0, #067E7C);
  color: #FFF8E7;
  padding: 180px 0 180px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(215, 255, 50, 0.2);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #FFF8E7;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* À propos */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: #FFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3, .service-card p {
  padding: 0 20px;
}

.service-card h3 {
  margin-top: 20px;
}

.service-card .btn {
  margin: 20px;
}

/* Avantages */
#avantages {
  background-color: #0FC2C0;
  color: #FFF8E7;
}

#avantages h2 {
  color: #FFF8E7;
}

#avantages h2::after {
  background: #D7FF32;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.advantage-item {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.advantage-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-color: #D7FF32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon svg {
  width: 30px;
  height: 30px;
  color: #1B1B1E;
}

.advantage-item h3 {
  color: #FFF8E7;
  margin-bottom: 15px;
}

/* Processus */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.process-step {
  flex: 1 1 250px;
  margin: 15px;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -20%;
  width: 40%;
  height: 2px;
  background-color: #D7FF32;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #0FC2C0, #067E7C);
  color: #FFF8E7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
}

/* Témoignages */
#temoignages {
  background-color: #FAF3F0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: #FFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -20px;
  font-size: 4rem;
  color: #0FC2C0;
  opacity: 0.5;
  line-height: 1;
}

/* Contact et Formulaire */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #E0E0E0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #FAF3F0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0FC2C0;
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 194, 192, 0.1);
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  width: auto;
  margin-right: 10px;
}

.checkbox label {
  margin-bottom: 0;
}

.contact-info {
  background-color: #0FC2C0;
  color: #FFF8E7;
  padding: 30px;
  border-radius: 10px;
}

.contact-info h3 {
  color: #FFF8E7;
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  color: #D7FF32;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.map {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
}

.map img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: #1B1B1E;
  color: #FFF8E7;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-about h3,
.footer-links h3,
.footer-legal h3 {
  color: #FFF8E7;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.footer-about h3::after,
.footer-links h3::after,
.footer-legal h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #0FC2C0;
}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
  color: #999;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #0FC2C0;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  background-color: #FFF;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1000;
  display: none;
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

/* Page légale */
.legal-page {
  padding-top: 150px;
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.legal-content h2 {
  font-size: 1.8rem;
  text-align: left;
  margin: 2rem 0 1rem;
}

.legal-content h2::after {
  display: none;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 0.8rem;
}

.legal-content ul, .legal-content ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .about-content,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    gap: 30px;
  }
  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #FFF8E7;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li {
    margin: 15px 0;
  }
  .header-container {
    padding: 15px 20px;
  }
  .hero {
    padding: 130px 0 80px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 60px 0;
  }
  .cookie-popup {
    width: calc(100% - 40px);
    left: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .hero {
    padding: 120px 0 70px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
} 