/* =============================================
   CODE CHICKEN - Public Site Styles
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --primary: #e65c00;
  --primary-dark: #c44d00;
  --primary-light: #ff8c42;
  --secondary: #2d6a4f;
  --accent: #f4a261;
  --dark: #1a1a2e;
  --text: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(230,92,0,0.18);
  --radius: 12px;
  --radius-sm: 8px;
  --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d1b00 50%, #e65c00 100%);
}

/* =============================================
   RESET & BASE
   ============================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* =============================================
   KEYFRAME ANIMATIONS
   ============================================= */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes shimmer {
  0%   { background-position: -700px 0; }
  100% { background-position: 700px 0; }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.3); }
  50%  { opacity: 1; transform: scale(1.05); }
  70%  { transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-180deg) scale(0.5); }
  to   { opacity: 1; transform: rotate(0deg) scale(1); }
}

@keyframes flipIn {
  from { opacity: 0; transform: perspective(400px) rotateX(-90deg); }
  to   { opacity: 1; transform: perspective(400px) rotateX(0deg); }
}

@keyframes pulse-wa {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%  { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
}

@keyframes gradientText {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =============================================
   AOS - SCROLL ANIMATION CLASSES
   ============================================= */

/* Initial hidden states */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

[data-aos="flip-up"] {
  opacity: 0;
  transform: perspective(400px) rotateX(-80deg);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0ms);
}

/* Animated state — JS adds .aos-animate */
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}

/* Legacy fade-in helper */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   SHIMMER LOADING SKELETON
   ============================================= */
.skeleton {
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 700px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: var(--radius-sm);
}

.skeleton-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eee;
}

.skeleton-img {
  height: 200px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 700px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-text {
  height: 14px;
  margin: 12px 16px 8px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
  background-size: 700px 100%;
  animation: shimmer 1.4s infinite linear;
  border-radius: 6px;
}

.skeleton-text.short { width: 55%; }

/* =============================================
   NAVBAR
   ============================================= */
.cc-navbar {
  background: var(--white);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}

.cc-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.cc-navbar .brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.cc-navbar .brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.cc-navbar .brand-tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  display: block;
  margin-top: -4px;
  letter-spacing: 0.5px;
}

.cc-navbar .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  font-size: 0.9rem;
}

.cc-navbar .nav-link:hover,
.cc-navbar .nav-link.active {
  color: var(--primary) !important;
  background: rgba(230,92,0,0.06);
}

.cc-navbar .btn-order {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 25px;
  padding: 8px 20px !important;
  font-weight: 600;
}

.cc-navbar .btn-order:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230,92,0,0.3);
}

/* =============================================
   HERO CAROUSEL
   ============================================= */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-carousel { position: relative; }

.hero-slide {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.72) 0%, rgba(230,92,0,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
  padding: 20px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Animated gradient hero heading */
.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-gradient-text {
  background: linear-gradient(90deg, #ff8c42, #f4a261, #e65c00, #ff8c42);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3.5s ease infinite;
}

.hero-content p {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(230,92,0,0.4);
}

.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,92,0,0.5);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--primary);
  border-radius: 4px;
  width: 24px;
  height: 4px;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(230,92,0,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.section-title span { color: var(--primary); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 40px;
}

.section-divider {
  width: 50px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 10px 0 20px;
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-us-section {
  background: var(--bg-light);
  padding: 70px 0;
}

.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid transparent;
  height: 100%;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(230,92,0,0.15);
  transform: translateY(-8px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.4s;
}

.feature-card:hover .feature-icon { transform: rotateY(360deg); }

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

.feature-card h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
.products-section { padding: 70px 0; }

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eee;
}

.product-card:hover {
  box-shadow: 0 16px 40px rgba(230,92,0,0.22);
  transform: translateY(-8px);
}

.product-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.product-badge.poussin { background: var(--secondary); }

.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h5 {
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
  font-size: 1rem;
}

.product-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  flex: 1;
  line-height: 1.5;
  margin-bottom: 14px;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.btn-order-product {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-order-product:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-1px);
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 60px 0;
  color: white;
}

.stat-item { text-align: center; padding: 20px; }
.stat-number { font-size: 2.8rem; font-weight: 800; display: block; line-height: 1; }
.stat-label { font-size: 0.9rem; opacity: 0.85; margin-top: 6px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--bg-light);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.cta-section p  { font-size: 1.05rem; color: var(--text-light); margin-bottom: 30px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: all 0.3s;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}

.whatsapp-float i { font-size: 1.6rem; color: white; }

/* =============================================
   ORDER MODAL
   ============================================= */
.modal-header-product {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 12px 12px 0 0;
}

.modal-header-product .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.order-product-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 20px;
}

.order-product-preview img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.order-product-info h6 { font-weight: 700; margin-bottom: 4px; }
.order-product-info .price { color: var(--primary); font-weight: 700; font-size: 1.1rem; }

.form-label { font-weight: 600; font-size: 0.875rem; color: var(--text); }

.form-control, .form-select {
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,92,0,0.1);
}

.btn-whatsapp-send {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.btn-whatsapp-send:hover {
  background: #20b858;
  transform: translateY(-1px);
}

.payment-note {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.82rem;
  color: #7a5700;
  margin-top: 16px;
  line-height: 1.5;
}

.payment-note i { color: var(--accent); }

/* =============================================
   FOOTER
   ============================================= */
.cc-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 50px 0 20px;
}

.footer-brand { margin-bottom: 16px; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--primary); }
.footer-brand-name { font-size: 1.2rem; font-weight: 700; color: white; }

.cc-footer h6 {
  color: white;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.cc-footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.cc-footer a:hover { color: var(--primary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
  color: var(--primary);
  width: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 30px 0 20px;
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
}

/* WhatsApp-only social link */
.social-links { display: flex; gap: 10px; margin-top: 12px; }

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7) !important;
  transition: all 0.2s;
  text-decoration: none;
}

.social-link:hover { background: var(--primary); color: white !important; }

.social-link.whatsapp:hover { background: #25d366; }

/* =============================================
   FILTER TABS
   ============================================= */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  background: white;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text);
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* =============================================
   CATALOGUE PAGE
   ============================================= */
.catalogue-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #2d1b00 100%);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.catalogue-hero h1 { font-size: 2.5rem; font-weight: 800; }
.catalogue-hero p  { font-size: 1.1rem; opacity: 0.8; max-width: 500px; margin: 10px auto 0; }

/* =============================================
   PRESENTATION / VIDEO CAROUSEL
   ============================================= */
.video-carousel-container {
  position: relative;
  background: black;
  max-height: 600px;
  overflow: hidden;
}

.video-carousel-container video,
.video-carousel-container iframe {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.story-section { padding: 70px 0; }

.story-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  white-space: pre-line;
}

.story-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}

.story-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-hero {
  background: linear-gradient(135deg, var(--dark), #3d2000);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.35s;
}

.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.contact-icon-wrap {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.contact-icon-wrap i { font-size: 1.3rem; color: white; }

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 0;
  color: white;
}

.testimonials-section .section-tag {
  color: var(--accent);
  background: rgba(244,162,97,0.15);
}

.testimonials-section .section-title {
  color: white;
}

.testimonials-section .section-subtitle {
  color: rgba(255,255,255,0.65);
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: all 0.35s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(230,92,0,0.4);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 22px;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  font-family: Georgia, serif;
  opacity: 0.7;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 14px;
  margin-top: 8px;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 0.95rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* =============================================
   EVENTS SECTION
   ============================================= */
.events-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.event-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.35s;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.event-card-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.08);
}

/* Date badge — absolute positioned top-right */
.event-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--dark);
  color: white;
  border-radius: 10px;
  padding: 6px 12px;
  text-align: center;
  min-width: 52px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  line-height: 1.1;
}

.event-date-badge .day {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent);
}

.event-date-badge .month {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Event type badges */
.event-type-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.event-type-badge.promo {
  background: rgba(230,92,0,0.12);
  color: var(--primary);
}

.event-type-badge.nouveau {
  background: rgba(45,106,79,0.12);
  color: var(--secondary);
}

.event-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-card-body h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.event-card-body p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  padding: 80px 0;
  background: var(--white);
}

.gallery-grid {
  columns: 3;
  column-gap: 16px;
}

@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 576px) { .gallery-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-caption {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* =============================================
   PROMO BANNER
   ============================================= */
.promo-banner {
  background: var(--gradient-hero);
  padding: 70px 0;
  overflow: hidden;
}

.promo-banner-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.promo-banner-text {
  flex: 1;
  color: white;
}

.promo-banner-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.promo-banner-text p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 24px;
  max-width: 420px;
}

.promo-banner-image {
  flex: 1;
  text-align: right;
}

.promo-banner-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.35);
}

/* Animated badge */
.promo-animated-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  animation: pulse 2.2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .promo-banner-inner {
    flex-direction: column;
  }
  .promo-banner-image { text-align: center; }
  .promo-banner-text h2 { font-size: 1.7rem; }
}

/* =============================================
   PROCESS SECTION (4-step flow)
   ============================================= */
.process-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 0;
}

/* Horizontal connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.process-step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(230,92,0,0.3);
  border: 4px solid var(--bg-light);
  transition: transform 0.35s;
}

.process-step:hover .process-step-icon {
  transform: scale(1.12) rotate(5deg);
}

.process-step-icon i {
  font-size: 1.5rem;
  color: white;
}

.process-step-number {
  position: absolute;
  top: -8px;
  right: calc(50% - 42px);
  width: 22px;
  height: 22px;
  background: var(--dark);
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h6 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .process-steps::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 3px;
    height: auto;
  }
  .process-step { max-width: 280px; }
}

/* =============================================
   FAQ SECTION (Accordion)
   ============================================= */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-item {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(230,92,0,0.04);
}

.faq-item.open .faq-question {
  color: var(--primary);
}

.faq-question-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(230,92,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: 12px;
}

.faq-item.open .faq-question-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* =============================================
   VALUES SECTION
   ============================================= */
.values-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.35s;
  border: 1px solid transparent;
}

.value-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(230,92,0,0.15);
  transform: translateY(-8px);
}

.value-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.4s;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(-6deg);
}

.value-icon.orange  { background: linear-gradient(135deg, #e65c00, #ff8c42); }
.value-icon.green   { background: linear-gradient(135deg, #2d6a4f, #40916c); }
.value-icon.blue    { background: linear-gradient(135deg, #0f3460, #1a6ea8); }
.value-icon.yellow  { background: linear-gradient(135deg, #f4a261, #e9c46a); }

.value-icon i {
  font-size: 1.6rem;
  color: white;
}

.value-card h5 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =============================================
   ADMIN STYLES LINK (preserve)
   ============================================= */
/* Admin-specific link targeting — kept as placeholder */
[data-admin-link] {
  display: none;
}

/* =============================================
   UTILITY BUTTONS
   ============================================= */
.btn-primary-cc {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-primary-cc:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,92,0,0.35);
}

.btn-outline-cc {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-outline-cc:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 992px) {
  .process-step-number {
    right: calc(50% - 38px);
  }
}

@media (max-width: 768px) {
  .hero-slide { height: 420px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
  .section-title { font-size: 1.5rem; }
  .catalogue-hero h1 { font-size: 1.8rem; }
  .stat-number { font-size: 2.2rem; }
  .testimonial-card { padding: 24px 20px; }
  .faq-question { font-size: 0.88rem; }
  .value-card { padding: 24px 18px; }
}

@media (max-width: 576px) {
  .hero-slide { height: 320px; }
  .hero-content h1 { font-size: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .stat-number { font-size: 2rem; }
  .gallery-grid { columns: 1; }
  .promo-banner { padding: 50px 0; }
  .promo-banner-text h2 { font-size: 1.5rem; }
  .process-step { padding: 0 6px; }
  .process-step-icon { width: 60px; height: 60px; }
}
