/* ============================================================
   cadeauxjolie.com — Main Stylesheet
   Colors: #1A237E, #283593, #5C6BC0, #9FA8DA, #E8EAF6
   Fonts: DM Sans (headings) + Source Sans 3 (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600;700&family=Source+Sans+3:wght@300;400;600&display=swap');

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

:root {
  --c1: #1A237E;
  --c2: #283593;
  --c3: #5C6BC0;
  --c4: #9FA8DA;
  --c5: #E8EAF6;
  --white: #ffffff;
  --dark: #0d1117;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --font-head: 'DM Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --radius-card: 20px;
  --radius-btn: 50px;
  --shadow: 0 4px 24px rgba(26,35,126,0.12);
  --shadow-hover: 0 8px 40px rgba(26,35,126,0.22);
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #1a1a2e;
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c3); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c1); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c1);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; font-weight: 300; }
.lead { font-size: 1.15rem; font-weight: 400; color: var(--gray); }

/* ── Container ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--c2), var(--c3));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(92,107,192,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--c1);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--c1);
  border: 2px solid var(--c1);
}
.btn-outline-dark:hover {
  background: var(--c1);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Cards ── */
.card {
  background: var(--c1);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card h3, .card h4 { color: var(--c4); }
.card p { color: rgba(255,255,255,0.85); }
.card-light {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--c5);
}
.card-light h3, .card-light h4 { color: var(--c1); }
.card-light p { color: var(--gray); }
.card-accent { border-left: 4px solid var(--c3); }

/* ── Section Titles ── */
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--gray); max-width: 600px; margin: 0 auto; }
.section-title .subtitle {
  display: inline-block;
  background: var(--c5);
  color: var(--c3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* ── HEADER / NAV ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,35,126,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--c4); }
.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}
.nav-cta { margin-left: 0.5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem 1.5rem;
}
.hero-content h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-content p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-compact {
  min-height: 40vh;
  background: linear-gradient(135deg, var(--c1) 0%, var(--c2) 60%, var(--c3) 100%);
}
.hero-compact .hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* SVG pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand h3 { color: var(--white); margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col h4 { color: var(--c4); margin-bottom: 1.25rem; font-size: 0.95rem; letter-spacing: 1px; text-transform: uppercase; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--c4); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--c3); color: var(--white); }

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--c1);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
#cookie-banner p { margin: 0; font-size: 0.9rem; }
#cookie-banner a { color: var(--c4); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btns button {
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-accept { background: var(--c4); color: var(--c1); }
.btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3) !important; }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* ── TEAM CARD ── */
.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--c5);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-card-body { padding: 1.5rem; }
.team-card-body h4 { color: var(--c1); margin-bottom: 0.25rem; }
.team-card-body .role { color: var(--c3); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.team-card-body p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ── ABOUT SPLIT ── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-split img { border-radius: var(--radius-card); box-shadow: var(--shadow); }
.about-text .tag {
  display: inline-block;
  background: var(--c5);
  color: var(--c3);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--gray); }

/* ── DOWNLOAD RESOURCES ── */
.resource-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--c5);
  border-radius: var(--radius-card);
  transition: var(--transition);
}
.resource-item:hover { border-color: var(--c3); box-shadow: var(--shadow); }
.resource-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  background: var(--c5);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.resource-info h4 { color: var(--c1); margin-bottom: 0.2rem; }
.resource-info p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ── PORTFOLIO ── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.portfolio-item {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,35,126,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); margin-bottom: 0.25rem; }
.portfolio-overlay p { color: var(--c4); font-size: 0.85rem; margin: 0; }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 2.8rem; color: var(--c3); margin-bottom: 0.25rem; }
.stat-item p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-track { display: flex; gap: 1.5rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--c4) var(--c5); }
.testimonials-track::-webkit-scrollbar { height: 4px; }
.testimonials-track::-webkit-scrollbar-track { background: var(--c5); }
.testimonials-track::-webkit-scrollbar-thumb { background: var(--c4); border-radius: 2px; }
.testimonial-card {
  min-width: 320px;
  background: var(--c1);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 2rem;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.testimonial-card .stars { color: #fbbf24; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial-card p { color: rgba(255,255,255,0.9); font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c4); }
.testimonial-author h5 { color: var(--white); font-size: 0.9rem; margin-bottom: 0.1rem; }
.testimonial-author span { color: var(--c4); font-size: 0.8rem; }

/* ── FAQ ACCORDION ── */
.faq-item { border: 1px solid var(--c5); border-radius: 12px; margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.faq-question:hover { background: var(--c5); }
.faq-question.active { background: var(--c1); color: var(--white); }
.faq-question .icon { font-size: 1.2rem; transition: transform 0.3s; }
.faq-question.active .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 1.25rem 1.5rem; background: var(--c5); color: var(--gray); font-size: 0.95rem; }
.faq-answer.open { display: block; }

/* ── NEWSLETTER ── */
.newsletter-form { display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 2px solid var(--c5);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--c3); }
.newsletter-section { background: linear-gradient(135deg, var(--c1), var(--c2)); padding: 60px 0; text-align: center; }
.newsletter-section h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-section p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--c3); }
.breadcrumb span { color: var(--gray); }

/* ── ARTICLE ── */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { margin: 2rem 0 1rem; }
.article-body h3 { margin: 1.5rem 0 0.75rem; }
.article-body p { color: #374151; line-height: 1.8; }
.article-body blockquote {
  border-left: 4px solid var(--c3);
  padding: 1rem 1.5rem;
  background: var(--c5);
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--c1);
}
.article-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.article-meta span { font-size: 0.85rem; color: var(--gray); }
.article-meta .tag { background: var(--c5); color: var(--c3); padding: 0.2rem 0.75rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; }

/* ── SIDEBAR ── */
.sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.sidebar-widget { background: var(--white); border: 1px solid var(--c5); border-radius: var(--radius-card); padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-widget h4 { color: var(--c1); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--c5); }
.popular-post { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.popular-post img { width: 70px; height: 55px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.popular-post h5 { font-size: 0.85rem; color: var(--c1); line-height: 1.4; margin-bottom: 0.2rem; }
.popular-post span { font-size: 0.75rem; color: var(--gray); }

/* ── CONTACT FORM ── */
.contact-form { background: var(--white); border-radius: var(--radius-card); padding: 2.5rem; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; color: var(--c1); margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 2px solid var(--c5);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--c3); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { color: #ef4444; font-size: 0.8rem; margin-top: 0.25rem; display: none; }

/* ── ICON FEATURES ── */
.feature-icon-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--c2), var(--c3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--white);
}
.feature-icon-text h4 { color: var(--c1); margin-bottom: 0.35rem; }
.feature-icon-text p { color: var(--gray); font-size: 0.9rem; margin: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--c1), var(--c3));
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--c4); }
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: 0.35rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c3);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--c3);
}
.timeline-item h4 { color: var(--c1); margin-bottom: 0.4rem; }
.timeline-item p { color: var(--gray); font-size: 0.9rem; margin: 0; }
.timeline-item .step-num { color: var(--c3); font-size: 0.8rem; font-weight: 700; margin-bottom: 0.25rem; }

/* ── GALLERY MASONRY ── */
.gallery-masonry { columns: 3; gap: 1rem; }
.gallery-masonry img { width: 100%; border-radius: 12px; margin-bottom: 1rem; break-inside: avoid; transition: var(--transition); }
.gallery-masonry img:hover { transform: scale(1.02); box-shadow: var(--shadow-hover); }

/* ── SHARE BUTTONS ── */
.share-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: center; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.share-btn-tw { background: #1da1f2; color: white; }
.share-btn-fb { background: #1877f2; color: white; }
.share-btn-li { background: #0a66c2; color: white; }
.share-btn:hover { opacity: 0.85; transform: translateY(-2px); }

/* ── COMMENTS ── */
.comment-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--c5); }
.comment-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--c5); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.comment-content h5 { color: var(--c1); margin-bottom: 0.25rem; }
.comment-content span { font-size: 0.8rem; color: var(--gray); }
.comment-content p { color: #374151; font-size: 0.9rem; margin-top: 0.5rem; margin-bottom: 0; }

/* ── SOCIAL PROOF ── */
.badge-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--c5);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
}
.badge-item .badge-icon { font-size: 1.8rem; }
.badge-item h5 { color: var(--c1); font-size: 0.9rem; margin-bottom: 0.1rem; }
.badge-item span { color: var(--gray); font-size: 0.8rem; }

/* ── BUSINESS HOURS ── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--c5); }
.hours-table td { padding: 0.85rem 0; font-size: 0.95rem; }
.hours-table td:first-child { color: var(--c1); font-weight: 600; }
.hours-table td:last-child { color: var(--gray); text-align: right; }
.hours-table tr.today td { color: var(--c3); font-weight: 700; }

/* ── MAP ── */
.map-container { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); height: 380px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── FLOATING BUTTONS ── */
.floating-btns { display: flex; flex-direction: column; gap: 1rem; position: fixed; right: 1.5rem; bottom: 6rem; z-index: 900; }
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  border: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-hover); }
.float-top { background: var(--c1); color: var(--white); }
.float-chat { background: var(--c3); color: var(--white); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 860px; margin: 0 auto; padding: 60px 1.5rem; }
.legal-content h1 { margin-bottom: 0.5rem; }
.legal-content .last-updated { color: var(--gray); font-size: 0.9rem; margin-bottom: 3rem; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.3rem; color: var(--c2); margin-bottom: 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--c5); }
.legal-section p, .legal-section li { color: #374151; font-size: 0.95rem; line-height: 1.8; }
.legal-section ul { padding-left: 1.5rem; list-style: disc; }
.legal-section ul li { margin-bottom: 0.4rem; }

/* ── COOKIES TABLE ── */
.cookies-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.cookies-table th { background: var(--c1); color: var(--white); padding: 0.75rem 1rem; text-align: left; }
.cookies-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--c5); color: #374151; }
.cookies-table tr:nth-child(even) td { background: var(--c5); }

/* ── BEFORE/AFTER ── */
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.ba-item { border-radius: var(--radius-card); overflow: hidden; position: relative; }
.ba-item img { width: 100%; height: 280px; object-fit: cover; }
.ba-label {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--c1);
  color: var(--white);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ── EVENT CALENDAR ── */
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; }
.cal-header { text-align: center; font-weight: 700; color: var(--c1); padding: 0.5rem; font-size: 0.85rem; }
.cal-day {
  text-align: center;
  padding: 0.6rem 0.3rem;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.cal-day:hover { background: var(--c5); }
.cal-day.today { background: var(--c3); color: var(--white); font-weight: 700; }
.cal-day.event { background: var(--c5); color: var(--c1); font-weight: 600; border: 2px solid var(--c4); }
.cal-day.empty { opacity: 0; }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes countUp { from { opacity: 0; } to { opacity: 1; } }
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.bg-light { background: var(--light-gray); }
.bg-c5 { background: var(--c5); }
.bg-dark { background: var(--dark); }
.bg-gradient { background: linear-gradient(135deg, var(--c1), var(--c2)); }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; }
.py-2 { padding: 2rem 0; }
.gap-1 { gap: 1rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.w-100 { width: 100%; }
.hidden { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 2; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--c1); padding: 1rem; gap: 0.25rem; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .before-after-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { columns: 1; }
  .sidebar-layout { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 50px 0; }
  .hero-content h1 { font-size: 1.8rem; }
  .calendar-grid { grid-template-columns: repeat(7, 1fr); }
  .cal-day { padding: 0.4rem 0.1rem; font-size: 0.75rem; }
}
