/*
Theme Name: AJJY Concept - Mediterranean Tech
Theme URI: https://www.ajjyconcept.com
Author: AJJY Concept
Author URI: https://www.ajjyconcept.com
Description: Thème WordPress personnalisé pour AJJY Concept - Chauffagiste expert en rénovation énergétique à Marseille. Design Mediterranean Tech 2026 avec glassmorphism, animations et effets modernes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ajjy-concept
Tags: one-page, custom-colors, custom-logo, featured-images, threaded-comments, translation-ready
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/

/* ============================================
   AJJY Concept — Mediterranean Tech Design
   Complete CSS — All sections
   ============================================ */

/* --- CSS Variables --- */
:root {
  --calanque: #1B4965;
  --calanque-light: #2A6F97;
  --calanque-dark: #0F2D40;
  --terracotta: #C45B28;
  --terracotta-light: #D4845C;
  --terracotta-dark: #A04820;
  --soleil: #E8C547;
  --sable: #F5F0E8;
  --creme: #FFFBF0;
  --text-primary: #1A2A3A;
  --text-secondary: #6B7B8D;
  --text-light: #9AABB8;
  --white: #FFFFFF;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Sora', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 20px rgba(27,73,101,0.08);
  --shadow-lg: 0 25px 50px rgba(27,73,101,0.1);
  --shadow-glow-terracotta: 0 8px 25px rgba(196,91,40,0.25);
  --shadow-glow-calanque: 0 8px 25px rgba(27,73,101,0.2);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* --- Glass Effects --- */
.glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark {
  background: rgba(27, 73, 101, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Gradient Text --- */
.gradient-text {
  background: linear-gradient(135deg, var(--calanque) 0%, var(--terracotta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Shimmer Effect --- */
.shimmer {
  position: relative;
  overflow: hidden;
}
.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(12px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--calanque);
  color: var(--white);
  padding: 8px 0;
  position: relative;
  z-index: 60;
  font-size: 13px;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar__hours {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.top-bar__hours svg { width: 14px; height: 14px; opacity: 0.7; }

.top-bar__social {
  display: none;
  align-items: center;
  gap: 12px;
}

.top-bar__social a {
  opacity: 0.7;
  transition: opacity 0.3s;
}

.top-bar__social a:hover { opacity: 1; }
.top-bar__social svg { width: 14px; height: 14px; }

.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 14px;
}

.top-bar__phone:hover { color: var(--terracotta-light); }
.top-bar__phone svg { width: 14px; height: 14px; }

@media (min-width: 640px) {
  .top-bar__social { display: flex; }
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s ease;
  height: 64px;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(27, 73, 101, 0.05);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--calanque);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  transition: transform 0.3s;
}

.navbar__logo:hover .navbar__logo-icon { transform: scale(1.05); }

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--calanque);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.navbar__logo-sub {
  font-size: 10px;
  color: rgba(27, 73, 101, 0.6);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Desktop nav */
.navbar__nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.navbar__nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 42, 58, 0.7);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.navbar__nav a:hover {
  color: var(--calanque);
  background: rgba(27, 73, 101, 0.05);
}

.navbar__cta-wrap { display: none; }

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.navbar__cta:hover {
  background: var(--terracotta-dark);
  box-shadow: var(--shadow-glow-terracotta);
}

/* Mobile menu button */
.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.3s;
}

.navbar__toggle:hover { background: rgba(27, 73, 101, 0.05); }
.navbar__toggle svg { width: 24px; height: 24px; color: var(--calanque); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(27, 73, 101, 0.1);
  padding: 16px;
  animation: slideIn 0.3s ease;
}

.navbar__mobile.is-open { display: block; }

.navbar__mobile a {
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(26, 42, 58, 0.8);
  border-radius: var(--radius-md);
  transition: all 0.3s;
}

.navbar__mobile a:hover {
  color: var(--calanque);
  background: rgba(27, 73, 101, 0.05);
}

.navbar__mobile .navbar__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

@media (min-width: 1024px) {
  .navbar { height: 80px; }
  .navbar__logo-icon { width: 48px; height: 48px; font-size: 20px; }
  .navbar__logo-name { font-size: 18px; }
  .navbar__logo-sub { font-size: 12px; }
  .navbar__nav { display: flex; }
  .navbar__cta-wrap { display: flex; align-items: center; gap: 12px; }
  .navbar__toggle { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 45, 64, 0.9), rgba(27, 73, 101, 0.7), transparent);
}

.hero__overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 64, 0.4), transparent, rgba(15, 45, 64, 0.2));
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  max-width: 640px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse-dot 2s infinite;
}

.hero__title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.4s both;
}

.hero__title-accent { color: var(--terracotta-light); }

.hero__title-underline {
  position: relative;
  display: inline-block;
}

.hero__title-underline svg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s ease 0.8s both;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
}

.hero__cta-primary:hover {
  background: var(--terracotta-dark);
  box-shadow: 0 20px 40px rgba(196, 91, 40, 0.3);
  transform: translateY(-2px);
}

.hero__cta-primary svg { width: 20px; height: 20px; }

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  transition: all 0.3s;
}

.hero__cta-secondary:hover { background: rgba(255, 255, 255, 0.2); }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.6s ease 1s both;
}

.hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--terracotta-light);
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeIn 1s ease 1.5s both;
}

.hero__scroll-indicator {
  width: 24px;
  height: 40px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@media (min-width: 640px) {
  .hero__title { font-size: 48px; }
  .hero__ctas { flex-direction: row; }
}

@media (min-width: 1024px) {
  .hero { min-height: 100vh; }
  .hero__content { padding: 0; }
  .hero__title { font-size: 64px; }
  .hero__subtitle { font-size: 20px; }
}

@media (min-width: 1280px) {
  .hero__title { font-size: 72px; }
}

/* ============================================
   PARTNERS / CERTIFICATIONS
   ============================================ */
.partners {
  padding: 64px 0;
  background: var(--white);
  border-top: 1px solid rgba(27, 73, 101, 0.05);
  border-bottom: 1px solid rgba(27, 73, 101, 0.05);
}

.partners__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: rgba(26, 42, 58, 0.4);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

.partners__certs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.partners__cert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  background: var(--sable);
  border: 1px solid rgba(27, 73, 101, 0.05);
  transition: border-color 0.3s;
}

.partners__cert:hover { border-color: rgba(196, 91, 40, 0.15); }

.partners__cert-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-weight: 700;
  font-size: 14px;
}

.partners__cert-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--calanque);
}

.partners__cert-desc {
  font-size: 10px;
  color: rgba(26, 42, 58, 0.4);
}

.partners__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.partners__logo {
  text-align: center;
  transition: all 0.3s;
}

.partners__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: rgba(26, 42, 58, 0.2);
  transition: color 0.3s;
}

.partners__logo:hover .partners__logo-name { color: rgba(27, 73, 101, 0.5); }

.partners__logo-tagline {
  font-size: 10px;
  color: rgba(26, 42, 58, 0.2);
  margin-top: 2px;
}

@media (min-width: 1024px) {
  .partners { padding: 80px 0; }
  .partners__logos { gap: 48px; }
  .partners__logo-name { font-size: 24px; }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: 96px 0;
  background: var(--sable);
  position: relative;
  overflow: hidden;
}

.services__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, var(--calanque) 1px, transparent 0);
  background-size: 40px 40px;
}

.services .container { position: relative; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-tag--terracotta {
  background: rgba(196, 91, 40, 0.1);
  color: var(--terracotta);
}

.section-tag--calanque {
  background: rgba(27, 73, 101, 0.05);
  color: var(--calanque);
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--terracotta-light);
}

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--calanque);
  margin-bottom: 16px;
  text-wrap: balance;
}

.section-title--white { color: var(--white); }

.section-title .accent { color: var(--terracotta); }

.section-subtitle {
  font-size: 18px;
  color: rgba(26, 42, 58, 0.6);
  line-height: 1.6;
}

.section-subtitle--white { color: rgba(255, 255, 255, 0.6); }

@media (min-width: 1024px) {
  .section-title { font-size: 48px; }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__image {
  position: relative;
  height: 208px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-card__image img { transform: scale(1.1); }

.service-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 64, 0.6), transparent);
}

.service-card__icon {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.service-card__content { padding: 24px; }

.service-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--calanque);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14px;
  color: rgba(26, 42, 58, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-card__tag {
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 50px;
  background: rgba(27, 73, 101, 0.05);
  color: var(--calanque);
  border: 1px solid rgba(27, 73, 101, 0.1);
}

@media (min-width: 768px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services { padding: 128px 0; }
  .services__grid { grid-template-columns: repeat(4, 1fr); }
  .service-card__content { padding: 32px; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.about__stat {
  text-align: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--sable);
  border: 1px solid rgba(27, 73, 101, 0.05);
  transition: border-color 0.3s;
}

.about__stat:hover { border-color: rgba(27, 73, 101, 0.15); }

.about__stat-icon {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
  margin: 0 auto 12px;
}

.about__stat-value {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 30px;
  color: var(--calanque);
  margin-bottom: 4px;
}

.about__stat-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 42, 58, 0.5);
}

.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 64, 0.3), transparent);
}

.about__floating-badge {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(27, 73, 101, 0.1);
  padding: 20px;
  border: 1px solid rgba(27, 73, 101, 0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.about__floating-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(196, 91, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__floating-badge-icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.about__floating-badge-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--calanque);
}

.about__floating-badge-sub {
  font-size: 12px;
  color: rgba(26, 42, 58, 0.5);
}

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.about__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about__feature svg {
  width: 20px;
  height: 20px;
  color: var(--terracotta);
  margin-top: 2px;
  flex-shrink: 0;
}

.about__feature span {
  font-size: 14px;
  color: rgba(26, 42, 58, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-lg);
  padding: 14px 32px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn--calanque {
  background: var(--calanque);
  color: var(--white);
}

.btn--calanque:hover {
  background: var(--calanque-dark);
  box-shadow: var(--shadow-glow-calanque);
}

.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
}

.btn--terracotta:hover {
  background: var(--terracotta-dark);
  box-shadow: var(--shadow-glow-terracotta);
}

.btn--white {
  background: var(--white);
  color: var(--calanque);
}

.btn--white:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--ghost:hover { background: rgba(255, 255, 255, 0.2); }

.btn--full { width: 100%; }

.btn svg { width: 16px; height: 16px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }
.btn--lg svg { width: 20px; height: 20px; }

@media (min-width: 640px) {
  .about__features { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about { padding: 128px 0; }
  .about__stats { grid-template-columns: repeat(4, 1fr); }
  .about__stat { padding: 32px; }
  .about__stat-value { font-size: 40px; }
  .about__content { grid-template-columns: repeat(2, 1fr); gap: 80px; }
  .about__image img { height: 500px; }
  .about__floating-badge { right: -32px; }
}

/* ============================================
   PRESTATIONS SECTION (TABS)
   ============================================ */
.prestations {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.prestations__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.prestations__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--sable);
  color: rgba(26, 42, 58, 0.6);
}

.prestations__tab:hover {
  background: rgba(27, 73, 101, 0.05);
  color: var(--calanque);
}

.prestations__tab.is-active {
  background: var(--calanque);
  color: var(--white);
  box-shadow: var(--shadow-glow-calanque);
}

.prestations__tab svg { width: 16px; height: 16px; }

.prestations__tab-full { display: none; }
.prestations__tab-short { display: inline; }

@media (min-width: 640px) {
  .prestations__tab-full { display: inline; }
  .prestations__tab-short { display: none; }
}

.prestations__content {
  display: none;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  animation: fadeInUp 0.5s ease;
}

.prestations__content.is-active { display: grid; }

.prestations__text { order: 2; }
.prestations__image-col { order: 1; }

.prestations__title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.prestations__title-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(196, 91, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prestations__title-icon svg {
  width: 24px;
  height: 24px;
  color: var(--terracotta);
}

.prestations__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--calanque);
}

.prestations__desc {
  font-size: 16px;
  color: rgba(26, 42, 58, 0.6);
  line-height: 1.6;
  margin-bottom: 32px;
}

.prestations__features { margin-bottom: 32px; }

.prestations__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--sable);
  margin-bottom: 12px;
}

.prestations__feature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(196, 91, 40, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prestations__feature-icon svg {
  width: 12px;
  height: 12px;
  color: var(--terracotta);
}

.prestations__feature span {
  font-size: 14px;
  color: rgba(26, 42, 58, 0.7);
}

.prestations__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 4/3;
}

.prestations__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prestations__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 64, 0.3), transparent);
}

@media (min-width: 1024px) {
  .prestations { padding: 128px 0; }
  .prestations__content { grid-template-columns: repeat(2, 1fr); }
  .prestations__text { order: 1; }
  .prestations__image-col { order: 2; }
  .prestations__title { font-size: 28px; }
}

/* ============================================
   AIDES SECTION
   ============================================ */
.aides {
  padding: 96px 0;
  background: linear-gradient(to bottom right, var(--sable), var(--white), var(--sable));
  position: relative;
  overflow: hidden;
}

.aides__deco-1 {
  position: absolute;
  top: 80px;
  right: 80px;
  width: 256px;
  height: 256px;
  background: rgba(196, 91, 40, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.aides__deco-2 {
  position: absolute;
  bottom: 80px;
  left: 80px;
  width: 192px;
  height: 192px;
  background: rgba(27, 73, 101, 0.05);
  border-radius: 50%;
  filter: blur(60px);
}

.aides__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.aides__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.aide-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(27, 73, 101, 0.05);
  transition: all 0.5s;
}

.aide-card:hover {
  border-color: rgba(196, 91, 40, 0.2);
  box-shadow: 0 20px 40px rgba(196, 91, 40, 0.05);
}

.aide-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(27, 73, 101, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.aide-card:hover .aide-card__icon {
  background: rgba(196, 91, 40, 0.1);
}

.aide-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--calanque);
  transition: color 0.3s;
}

.aide-card:hover .aide-card__icon svg { color: var(--terracotta); }

.aide-card__highlight {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  color: var(--terracotta);
  margin-bottom: 8px;
}

.aide-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--calanque);
  margin-bottom: 8px;
}

.aide-card__desc {
  font-size: 14px;
  color: rgba(26, 42, 58, 0.5);
  line-height: 1.6;
}

.aides__cta { text-align: center; margin-top: 48px; }

@media (min-width: 640px) {
  .aides__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .aides { padding: 128px 0; }
  .aides__header { grid-template-columns: repeat(2, 1fr); }
  .aides__grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 96px 0;
  background: var(--calanque);
  position: relative;
  overflow: hidden;
}

.testimonials__deco-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(196, 91, 40, 0.1);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonials__deco-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
  background: rgba(42, 111, 151, 0.2);
  border-radius: 50%;
  filter: blur(60px);
}

.testimonials .container { position: relative; }

.testimonials__carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote {
  width: 32px;
  height: 32px;
  color: rgba(196, 91, 40, 0.4);
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196, 91, 40, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--terracotta-light);
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.testimonial-card__stars {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card__stars svg {
  width: 12px;
  height: 12px;
  fill: var(--terracotta-light);
  color: var(--terracotta-light);
}

.testimonial-card__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testimonials__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.testimonials__nav-btn:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
}

.testimonials__nav-btn svg { width: 20px; height: 20px; }

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonials__dot.is-active {
  background: var(--terracotta);
  width: 24px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .testimonials__carousel { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials { padding: 128px 0; }
  .testimonials__carousel { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--calanque), var(--calanque-light), var(--terracotta));
}

.cta-banner__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 2px 2px, white 1px, transparent 0);
  background-size: 30px 30px;
}

.cta-banner .container { position: relative; }

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

.cta-banner__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-wrap: balance;
}

.cta-banner__subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 640px) {
  .cta-banner__buttons { flex-direction: row; justify-content: center; }
}

@media (min-width: 1024px) {
  .cta-banner { padding: 96px 0; }
  .cta-banner__title { font-size: 48px; }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 96px 0;
  background: var(--sable);
  position: relative;
  overflow: hidden;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(27, 73, 101, 0.05);
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.contact__field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(26, 42, 58, 0.7);
  margin-bottom: 8px;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--sable);
  border: 1px solid rgba(27, 73, 101, 0.1);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  transition: all 0.3s;
  outline: none;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(26, 42, 58, 0.3);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: rgba(27, 73, 101, 0.3);
  box-shadow: 0 0 0 3px rgba(27, 73, 101, 0.08);
}

.contact__field textarea { resize: none; }

.contact__success {
  text-align: center;
  padding: 48px 0;
  display: none;
}

.contact__success.is-visible { display: block; }
.contact__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ECFDF5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.contact__success-icon svg { width: 32px; height: 32px; color: #059669; }

.contact__info { display: flex; flex-direction: column; gap: 16px; }

.contact__info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 73, 101, 0.05);
  transition: all 0.3s;
}

.contact__info-card:hover {
  border-color: rgba(196, 91, 40, 0.2);
  box-shadow: var(--shadow-md);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(27, 73, 101, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.contact__info-card:hover .contact__info-icon {
  background: rgba(196, 91, 40, 0.1);
}

.contact__info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--calanque);
  transition: color 0.3s;
}

.contact__info-card:hover .contact__info-icon svg { color: var(--terracotta); }

.contact__info-label {
  font-size: 12px;
  color: rgba(26, 42, 58, 0.4);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact__info-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--calanque);
}

.contact__map {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 73, 101, 0.05);
  overflow: hidden;
  height: 192px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 640px) {
  .contact__form-row { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .contact { padding: 128px 0; }
  .contact__grid { grid-template-columns: 3fr 2fr; gap: 48px; }
  .contact__form-wrap { padding: 40px; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--calanque-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer__top-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196, 91, 40, 0.5), transparent);
}

.footer__deco {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(27, 73, 101, 0.2);
  border-radius: 50%;
  filter: blur(60px);
  transform: translateY(-50%);
}

.footer__content {
  position: relative;
  padding: 64px 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer__brand-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.footer__social a:hover { background: rgba(196, 91, 40, 0.2); }
.footer__social svg { width: 16px; height: 16px; color: rgba(255, 255, 255, 0.6); }

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.footer__links a:hover { color: var(--terracotta-light); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  transition: color 0.3s;
}

.footer__contact-item:hover { color: var(--terracotta-light); }

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: rgba(196, 91, 40, 0.6);
  flex-shrink: 0;
}

.footer__bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

.footer__back-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer__back-top:hover {
  background: rgba(196, 91, 40, 0.2);
  transform: translateY(-4px);
}

.footer__back-top svg { width: 16px; height: 16px; color: rgba(255, 255, 255, 0.5); }

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__content { padding: 80px 0; }
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-balance { text-wrap: balance; }
