/* ===== VARIABLES ===== */
:root {
  /* Couleurs */
  --primary: #0066FF;
  --primary-light: #4d94ff;
  --primary-dark: #0047b3;
  --secondary: #FF6B00;
  --secondary-light: #ff8a3d;
  --secondary-dark: #cc5600;
  --dark: #1A1A2E;
  --dark-light: #2d2d4a;
  --light: #F8F9FA;
  --light-gray: #e9ecef;
  --medium-gray: #6c757d;
  --white: #FFFFFF;
  --black: #212529;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  
  /* Dégradés */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, #00D4FF 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #FF8A00 100%);
  
  /* Typographie */
  --font-primary: 'Inter', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  
  /* Espacements */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Bordures */
  --border-radius-sm: 4px;
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 20px;
  --border-radius-pill: 50px;
  
  /* Ombres */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-fast: all 0.15s ease;
}

/* ===== RÉINITIALISATION ===== */
*, 
*::before, 
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-primary);
  line-height: var(--line-height-base);
  color: var(--dark);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

button, 
input, 
textarea, 
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.section-title h2 {
  display: inline-block;
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius-pill);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
  z-index: -1;
  border-radius: var(--border-radius-pill);
}

.btn:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn i {
  margin-right: 0.5rem;
  font-size: 1.1em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--white);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1;
  order: -1;
}

.tagline {
  font-size: 0.8rem;
  color: var(--dark-light);
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 40px;
  width: auto;
  transition: var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
  margin-left: 1.5rem;
}

.nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link i {
  margin-left: 0.25rem;
  font-size: 0.75rem;
  transition: var(--transition);
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1.5rem;
  color: var(--dark);
  transition: var(--transition);
}

.dropdown-menu a:hover {
  color: var(--primary);
  background-color: var(--light);
  padding-left: 1.75rem;
}

.nav-cta .btn {
  margin-left: 1rem;
  box-shadow: none;
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--dark);
  transition: var(--transition);
}

/* ===== SECTION SITES WEB ===== */
.website-service {
    margin-bottom: 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
  padding: 80px 20px 40px;
  box-sizing: border-box;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f0ff 100%);
  padding-top: 120px; /* Ajout d'un espace pour le header fixe */
  margin-top: 0;
  box-sizing: border-box;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-pattern.svg') no-repeat center/cover;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--dark-light);
  margin-bottom: 2rem;
  font-weight: 400;
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin: 2rem auto 0;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* ===== SERVICES SECTION ===== */
.service-section {
    margin-top: 3rem;
    padding: 2rem 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-section h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.service-section h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.service-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-light);
}

/* Grille des fonctionnalités */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.feature {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
}

.feature h5 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Carte de résultats */
.results-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    margin-top: 2rem;
    border-top: 4px solid var(--primary);
}

.result-item {
    text-align: center;
    padding: 1rem;
}

.result-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.result-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Section processus */
.process-section {
    background: var(--light);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: var(--border-radius);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: var(--primary-light);
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.process-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

/* Section témoignages */
.testimonials-section {
    margin-top: 4rem;
}

.testimonial {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    margin: 0 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-text::before {
    position: absolute;
    top: -15px;
    left: -10px;
}

.testimonial-text::after {
    vertical-align: bottom;
    margin-left: 5px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h6 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* CTA Box */
.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-dots-white.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-box h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.95rem;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
    margin-left: 2rem;
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.cta-box .btn:hover {
    background: var(--dark);
    color: white;
}

/* Styles pour le slider de témoignages */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    z-index: 10;
    color: var(--primary);
    border: none;
    outline: none;
    transition: var(--transition);
}

.slick-prev {
    left: -60px;
}

.slick-next {
    right: -60px;
}

.slick-prev:hover,
.slick-next:hover {
    background: var(--primary);
    color: white;
}

.slick-dots {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.slick-dots .slick-active button {
    background: var(--primary);
    transform: scale(1.2);
}

/* Styles responsives pour la section services */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .cta-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-box .btn {
        margin: 1.5rem 0 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .slick-prev {
        left: 10px;
    }
    
    .slick-next {
        right: 10px;
    }
}

/* ===== GOOGLE ADS SECTION ===== */
/* Styles spécifiques pour la section Google Ads */
#google-ads .service-content {
    background: #f8f9ff;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 4rem;
}

/* Styles pour le système d'onglets */
.tabs-container {
    margin: 2.5rem 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.tab-button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--medium-gray);
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
}

.tab-button:hover {
    color: var(--primary);
}

.tab-button.active {
    color: var(--primary);
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
}

.tabs-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.tab-pane.active {
    display: block;
}

.tab-pane h5 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tab-pane p {
    margin-bottom: 1.5rem;
    color: var(--dark-light);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    color: var(--dark-light);
    line-height: 1.6;
}

.feature-list i {
    color: var(--primary);
    margin-right: 0.75rem;
    margin-top: 0.2rem;
    font-size: 0.9rem;
}

/* Section Avantages */
.benefits-section {
    margin: 5rem 0;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 102, 255, 0.08) 100%);
    border-radius: var(--border-radius);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.benefit h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Section FAQ */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: white;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: #f8f9ff;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8f9ff;
}

.faq-answer-content {
    padding: 0 1.5rem 0;
}

.faq-answer p {
    margin: 0;
    padding: 1.5rem 0;
    color: var(--dark-light);
    line-height: 1.7;
    border-top: 1px solid #eee;
}

/* Styles responsifs pour la section Google Ads */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1 0 auto;
        text-align: center;
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-content {
        padding: 1.5rem 1rem;
    }
    
    .faq-section {
        padding: 1rem;
    }
}

/* Animation pour les onglets */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Bannière de cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f8f9fa;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.cookie-content p {
    margin: 0 20px 10px 0;
    flex: 1;
    min-width: 300px;
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.375rem 1rem;
    font-size: 0.875rem;
    border-radius: 4px;
}

.cookie-buttons .btn-outline-secondary {
    border-color: #6c757d;
    color: #6c757d;
}

.cookie-buttons .btn-outline-secondary:hover {
    background-color: #6c757d;
    color: white;
}

/* Responsive */
@media (max-width: 767.98px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}


/* Styles pour le bouton WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

/* ===== TIKTOK ADS SECTION ===== */
/* Styles spécifiques pour la section TikTok Ads */
#tiktok-ads .service-content {
    background: #f8f9ff;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 4rem;
}

/* Styles pour l'étude de cas */
.case-study {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin: 5rem 0;
    display: flex;
    flex-wrap: wrap;
}

.case-study-content {
    flex: 1;
    padding: 3rem;
    min-width: 300px;
}

.case-study-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-study h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.case-study p {
    color: var(--dark-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.case-study-stats {
    display: flex;
    background: var(--primary);
    color: white;
    padding: 2rem;
    min-width: 300px;
    flex-direction: column;
    justify-content: center;
}

.stat {
    text-align: center;
    margin: 1rem 0;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Styles responsifs pour la section TikTok */
@media (max-width: 992px) {
    .case-study {
        flex-direction: column;
    }
    
    .case-study-stats {
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .stat {
        margin: 1rem;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .case-study-content {
        padding: 2rem 1.5rem;
    }
    
    .case-study-stats {
        padding: 1.5rem 1rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

/* ===== AUTRES PLATEFORMES ===== */
/* Styles pour la section Autres Plateformes */
#other-platforms {
    padding: 5rem 0;
    background-color: #f9faff;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-description {
    color: var(--dark-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.platform-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.platform-card.featured {
    border: 2px solid var(--primary);
}

.platform-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 2rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.platform-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.platform-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.platform-icon.linkedin { background: #0077B5; }
.platform-icon.pinterest { background: #E60023; }
.platform-icon.snapchat { background: #FFFC00; color: #000; }
.platform-icon.twitter { background: #1DA1F2; }

.platform-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.platform-tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.platform-body {
    padding: 1.5rem 2rem 2rem;
}

.platform-features {
    margin-bottom: 1.5rem;
}

.platform-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    color: var(--dark-light);
}

.platform-features i {
    color: var(--primary);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.platform-stats {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9ff;
    border-radius: var(--border-radius);
    text-align: center;
}

.platform-stats .stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.platform-stats .stat-label {
    font-size: 0.9rem;
    color: var(--dark-light);
}

.platforms-cta {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.platforms-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.platforms-cta p {
    color: var(--dark-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Styles responsifs */
@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .platforms-cta {
        padding: 2rem 1.5rem;
    }
    
    .platforms-cta h3 {
        font-size: 1.5rem;
    }
}

/* ===== SECTIONS AJOUTÉES ===== */
/* Section Créatifs */
.creatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.creative-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.creative-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.creative-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.creative-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.creative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 255, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
    text-align: center;
}

.creative-card:hover .creative-overlay {
    opacity: 1;
}

.creative-card:hover img {
    transform: scale(1.1);
}

.creative-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.creative-overlay p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section IA */
.ai-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.ai-text {
    flex: 1;
}

.ai-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.ai-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ai-feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-5px);
}

.ai-feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.ai-feature h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

/* Section Témoignages */
.testimonials-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.testimonials-section .section-title {
    margin-bottom: 3rem;
}

.testimonial {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.author-info {
    text-align: left;
}

.author-info h5 {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.author-info span {
    font-size: 0.9rem;
    color: #6c757d;
}

.testimonial-rating {
    color: #ffc107;
    margin-top: 0.25rem;
    font-size: 0.9rem;
}

/* Section Clients */
#clients {
    padding: 5rem 0;
    background-color: #fff;
    text-align: center;
}

.client-logo-container {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    margin: 0.5rem;
}

.client-logo-container img {
    max-width: 100%;
    max-height: 50px;
    width: auto;
    height: auto;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.client-logo-container:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Ajustements responsifs */
@media (max-width: 768px) {
    .testimonial {
        margin: 0.5rem;
        padding: 1.5rem;
    }
    
    .testimonial-img {
        width: 50px;
        height: 50px;
    }
    
    .client-logo-container {
        height: 80px;
        padding: 1rem;
    }
    
    .client-logo-container img {
        max-height: 40px;
    }
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    padding: 2rem;
    border: 1px solid #eee;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-img-container {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h5 {
    color: #333;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.testimonial-card .text-muted {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-card .text-warning {
    font-size: 1rem;
    letter-spacing: 2px;
}

/* Section Clients */
#clients {
    padding: 5rem 0;
    background-color: #fff;
}

.client-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.client-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.client-logo-container img {
    max-width: 80%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo-container:hover img {
    filter: grayscale(0%) brightness(1) !important;
}

/* Style pour la bannière de cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.cookie-consent.show {
    display: block;
}

.cookie-consent p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-buttons .btn {
    min-width: 120px;
    text-align: center;
}

/* Style pour le footer simplifié */
.footer {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    color: #333;
}

.footer .section-title {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.footer h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.footer p.lead {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Ajustements responsifs */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .client-logo-container {
        height: 80px;
    }
    
    .footer h2 {
        font-size: 2rem;
    }
}

.testimonials-slider {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    flex: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--dark-light);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.author-info h5 {
    margin: 0;
    color: var(--dark);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--dark-light);
    font-size: 0.9rem;
}

.testimonials-cta {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-top: 4rem;
}

.testimonials-cta h4 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.testimonials-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Section Clients */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

.client-logo {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease;
    height: 100px;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Styles responsifs */
@media (max-width: 992px) {
    .ai-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .ai-image {
        order: -1;
    }
    
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .creatives-grid {
        grid-template-columns: 1fr;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-cta h4 {
        font-size: 1.5rem;
    }
}

/* ===== MAIN CONTENT ===== */
.main-content {
  padding: calc(var(--spacing-xl) + 80px) 0 var(--spacing-xl);
  background-color: var(--light);
  margin-top: 80px; /* Hauteur du header */
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.7;
}

.footer-services h4,
.footer-cta h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-services h4::after,
.footer-cta h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services li {
    margin-bottom: 0.75rem;
}

.footer-services a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-services a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -2px;
    left: 0;
    transition: width 0.3s ease;
}

.footer-services a:hover {
    color: var(--white);
}

.footer-services a:hover::after {
    width: 100%;
}

.footer-cta p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-cta .btn {
    width: 100%;
    max-width: 220px;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-cta {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-cta .btn {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-services h4::after,
    .footer-cta h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-services ul {
        display: inline-block;
        text-align: left;
    }
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  color: var(--white);
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-light { background-color: var(--light); }
.bg-dark { 
  background-color: var(--dark);
  color: var(--white);
}
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.pt-1 { padding-top: 0.5rem; }
.pb-1 { padding-bottom: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pb-2 { padding-bottom: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pb-4 { padding-bottom: 2rem; }
.pt-5 { padding-top: 3rem; }
.pb-5 { padding-bottom: 3rem; }
