/*
═══════════════════════════════════════════════════════════════════
  AVIVA BERDAH - CUSTOM DESIGN SYSTEM
  Version 2.0 - Ultra Professional & Unique
  © 2025 - Design by Aviva Berdah
═══════════════════════════════════════════════════════════════════
*/

/* ═══════════════════════════════════════════════════════════
   1. CUSTOM PROPERTIES & VARIABLES
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Couleurs primaires ULTRA-PRO */
  --aviva-gold-light: #F4D8B8;
  --aviva-gold: #D4A574;
  --aviva-gold-dark: #A67C52;
  --aviva-gold-darker: #8B6842;

  /* Couleurs secondaires modernes */
  --aviva-sage: #8FAF7E;
  --aviva-sage-light: #B8D4A7;
  --aviva-terracotta: #C89F91;
  --aviva-terracotta-light: #E8C4B8;
  --aviva-cream: #FAF8F5;
  --aviva-white: #FFFFFF;

  /* Neutres ultra-raffinés */
  --aviva-dark: #1A1A1A;
  --aviva-charcoal: #2D2D2D;
  --aviva-gray: #5A5A5A;
  --aviva-gray-light: #8E8E8E;
  --aviva-light-gray: #E8E8E8;
  --aviva-lighter-gray: #F5F5F5;

  /* Spacing system ULTRA-PRO (plus aéré) */
  --spacing-xs: 0.75rem;    /* 12px */
  --spacing-sm: 1.25rem;    /* 20px */
  --spacing-md: 2rem;       /* 32px */
  --spacing-lg: 3.5rem;     /* 56px */
  --spacing-xl: 5rem;       /* 80px */
  --spacing-xxl: 8rem;      /* 128px */
  --spacing-mega: 12rem;    /* 192px */

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(42, 42, 42, 0.06);
  --shadow-md: 0 4px 20px rgba(42, 42, 42, 0.08);
  --shadow-lg: 0 10px 40px rgba(42, 42, 42, 0.12);
  --shadow-xl: 0 20px 60px rgba(42, 42, 42, 0.15);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ═══════════════════════════════════════════════════════════
   2. NAVIGATION ULTRA-PRO
   ═══════════════════════════════════════════════════════════ */

.site-navbar {
  background: linear-gradient(135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.98) 100%) !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(42, 42, 42, 0.04),
              0 8px 24px rgba(42, 42, 42, 0.06);
  transition: all var(--transition-base);
}

.site-navbar.scrolled {
  box-shadow: 0 2px 8px rgba(42, 42, 42, 0.08),
              0 12px 32px rgba(42, 42, 42, 0.1);
}

.site-logo a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--aviva-gold) 0%, var(--aviva-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: all var(--transition-base);
}

.site-logo a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--aviva-gold), var(--aviva-terracotta));
  transition: width var(--transition-base);
}

.site-logo a:hover::after {
  width: 100%;
}

.site-menu li a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--aviva-charcoal) !important;
  position: relative;
  padding: 0.5rem 1rem !important;
  transition: all var(--transition-base);
}

.site-menu li a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, var(--aviva-gold), var(--aviva-terracotta));
  transition: transform var(--transition-base);
  border-radius: 2px;
}

.site-menu li a:hover::before,
.site-menu li.active a::before {
  transform: translateX(-50%) scaleX(1);
}

.site-menu li a:hover {
  color: var(--aviva-gold-dark) !important;
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   3. HERO SECTION SIGNATURE
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 165, 116, 0.15) 0%,
    rgba(168, 185, 155, 0.1) 50%,
    rgba(200, 159, 145, 0.15) 100%
  );
  opacity: 0;
  animation: heroGradientPulse 8s ease-in-out infinite;
}

@keyframes heroGradientPulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
  animation: heroTitleFadeIn 1s ease-out;
}

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

.hero .desc,
.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  animation: heroSubtitleFadeIn 1s ease-out 0.2s both;
}

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

/* ═══════════════════════════════════════════════════════════
   4. BOUTONS PERSONNALISÉS
   ═══════════════════════════════════════════════════════════ */

.btn-primary {
  background: linear-gradient(135deg, var(--aviva-gold) 0%, var(--aviva-gold-dark) 100%);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3),
              0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.4),
              0 4px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, var(--aviva-gold-dark) 0%, var(--aviva-gold-darker) 100%);
}

.btn-primary:active {
  transform: translateY(-1px) scale(1);
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

/* ═══════════════════════════════════════════════════════════
   5. CARDS & SECTIONS UNIQUES
   ═══════════════════════════════════════════════════════════ */

.custom-card {
  background: var(--aviva-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.custom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
    var(--aviva-gold) 0%,
    var(--aviva-terracotta) 50%,
    var(--aviva-sage) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.custom-card:hover::before {
  transform: scaleX(1);
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

/* Glassmorphism Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   6. FORMULAIRES ÉLÉGANTS
   ═══════════════════════════════════════════════════════════ */

.form-control {
  border: 2px solid var(--aviva-light-gray);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  transition: all var(--transition-base);
  background: var(--aviva-white);
}

.form-control:focus {
  border-color: var(--aviva-gold);
  box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1),
              0 4px 12px rgba(212, 165, 116, 0.15);
  transform: translateY(-2px);
  outline: none;
}

.form-control:hover:not(:focus) {
  border-color: var(--aviva-gold-light);
  background: var(--aviva-cream);
}

/* ═══════════════════════════════════════════════════════════
   7. ANIMATIONS MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════ */

.fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

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

.scale-hover {
  transition: transform var(--transition-base);
}

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

.glow-on-hover {
  transition: all var(--transition-base);
}

.glow-on-hover:hover {
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.4),
              0 0 40px rgba(212, 165, 116, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   8. FOOTER PERSONNALISÉ
   ═══════════════════════════════════════════════════════════ */

.site-footer {
  background: linear-gradient(135deg,
    var(--aviva-dark) 0%,
    var(--aviva-charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--aviva-gold) 50%,
    transparent 100%);
}

.quick-contact-info {
  transition: all var(--transition-base);
}

.quick-contact-info:hover {
  transform: translateY(-5px);
}

.quick-contact-info .icon-wrap {
  background: linear-gradient(135deg, var(--aviva-gold) 0%, var(--aviva-gold-dark) 100%);
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-sm);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.3);
  transition: all var(--transition-base);
}

.quick-contact-info:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(212, 165, 116, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   9. TESTIMONIALS CARDS
   ═══════════════════════════════════════════════════════════ */

.block-13 .owl-item {
  transition: all var(--transition-base);
}

.block-13 .text {
  background: var(--aviva-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-lg);
  position: relative;
  transition: all var(--transition-base);
}

.block-13 .text::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  font-family: var(--font-display);
  color: var(--aviva-gold);
  opacity: 0.2;
  line-height: 1;
}

.block-13 .owl-item.active.center .text {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* ═══════════════════════════════════════════════════════════
   10. SERVICE BLOCKS SIGNATURE
   ═══════════════════════════════════════════════════════════ */

.feature-1 {
  transition: all var(--transition-base);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  position: relative;
  overflow: hidden;
}

.feature-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
    rgba(212, 165, 116, 0.05) 0%,
    rgba(168, 185, 155, 0.05) 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-1:hover::before {
  opacity: 1;
}

.feature-1:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-1 .icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--aviva-gold) 0%, var(--aviva-gold-dark) 100%);
  margin: 0 auto var(--spacing-md);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3);
  transition: all var(--transition-base);
}

.feature-1:hover .icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   11. SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--aviva-gold), var(--aviva-terracotta));
  z-index: 9999;
  transition: width 0.1s ease-out;
}

/* ═══════════════════════════════════════════════════════════
   12. RESPONSIVE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  :root {
    --spacing-xl: 2.5rem;
    --spacing-xxl: 4rem;
  }

  .site-logo a {
    font-size: 1.25rem;
  }

  .custom-card {
    padding: var(--spacing-md);
  }

  .btn-primary {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   13. SMOOTH SCROLLING & PERFORMANCE
   ═══════════════════════════════════════════════════════════ */

html {
  scroll-behavior: smooth;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  will-change: transform;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
