/* ═══════════════════════════════════════════════════════════════════
   SERRURIER LYON — MAIN STYLESHEET
   ═══════════════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ────────────────────────────────────────────── */
:root {
  --red:          #C0392B;
  --red-dark:     #96281B;
  --red-light:    #E74C3C;
  --white:        #FFFFFF;
  --off-white:    #F8F9FA;
  --gray-100:     #F1F3F5;
  --gray-200:     #E9ECEF;
  --gray-400:     #ADB5BD;
  --gray-600:     #6C757D;
  --gray-700:     #495057;
  --gray-800:     #343A40;
  --dark:         #1A1A2E;
  --dark-2:       #16213E;

  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.18);
  --shadow-red:   0 8px 32px rgba(192,57,43,.35);

  --radius:       12px;
  --radius-lg:    20px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);

  --font-body:    'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;

  --header-h:     72px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; height: auto; }
a    { text-decoration: none; color: inherit; transition: var(--transition); }
ul   { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────────────── */
h1,h2,h3,h4,h5 { line-height: 1.2; }

/* ── 4. LAYOUT UTILITIES ─────────────────────────────────────────── */
.container      { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad    { padding: 100px 0; }
.text-center    { text-align: center; }

/* ── 5. SECTION LABELS ───────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  background: rgba(192,57,43,.1);
  color: var(--red);
  border: 1px solid rgba(192,57,43,.25);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(255,255,255,.15);
  color: white;
  border-color: rgba(255,255,255,.3);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title--white { color: white; }
.section-title--left  { text-align: left; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-subtitle--white { color: rgba(255,255,255,.75); }
.section-header         { text-align: center; margin-bottom: 64px; }
.section-header--white .section-title { color: white; }

/* ── 6. BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--red);
  color: white;
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,43,.5);
}
.btn--outline {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.6);
}
.btn--outline:hover {
  background: white;
  color: var(--red);
  border-color: white;
}
.btn--ghost {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--ghost:hover {
  background: var(--red);
  color: white;
}
.btn--large { padding: 18px 40px; font-size: 1.1rem; }
.btn--full  { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ═══════════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  padding: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.site-header.scrolled {
  height: 60px;
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-logo img,
.site-logo .logo-svg {
  width: 46px;
  height: 46px;
}
.logo-texts       { display: flex; flex-direction: column; }
.logo-name        { font-size: 1.2rem; font-weight: 800; color: var(--dark); letter-spacing: -.3px; line-height: 1.2; }
.logo-tagline     { font-size: .68rem; color: var(--red); font-weight: 500; }

/* Primary navigation */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.primary-nav a {
  padding: 9px 15px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 7px;
}
.primary-nav a:hover,
.primary-nav a.current {
  color: var(--red);
  background: rgba(192,57,43,.07);
}
.primary-nav .nav-cta {
  background: var(--red);
  color: white !important;
  padding: 10px 22px;
  margin-left: 10px;
  box-shadow: var(--shadow-red);
  border-radius: 8px;
}
.primary-nav .nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 998;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--gray-800);
}
.mobile-nav a:hover { background: var(--gray-100); color: var(--red); }
.mobile-nav .nav-cta-mobile {
  background: var(--red);
  color: white !important;
  text-align: center;
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, #0d1117 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg-blobs {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(192,57,43,.22) 0%, transparent 48%),
    radial-gradient(circle at 82% 78%, rgba(192,57,43,.16) 0%, transparent 48%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02) 0%, transparent 70%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  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='%23ffffff' fill-opacity='0.018'%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/svg%3E");
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0 60px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 500;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: #2ECC71;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46,204,113,.2);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { transform:scale(1); opacity:1; }
  50%      { transform:scale(1.3); opacity:.7; }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  color: white;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title-accent { color: var(--red-light); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.22rem);
  color: rgba(255,255,255,.72);
  max-width: 680px;
  margin: 0 auto 44px;
  line-height: 1.8;
}
.hero-subtitle strong { color: white; }
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 68px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  backdrop-filter: blur(8px);
  max-width: 700px;
  margin: 0 auto;
  gap: 0;
}
.stat        { text-align: center; padding: 0 32px; }
.stat-number { display: block; font-size: 1.85rem; font-weight: 900; color: white; }
.stat-label  { display: block; font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; }
.stat-div    { width: 1px; height: 52px; background: rgba(255,255,255,.14); }
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 13px;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--red-light);
  border-radius: 2px;
  animation: scroll-anim 2s ease infinite;
}
@keyframes scroll-anim {
  0%   { opacity:1; transform:translateY(0); }
  100% { opacity:0; transform:translateY(16px); }
}

/* ═══════════════════════════════════════════════════════════════════
   SECTION : CE QUE NOUS FAISONS
   ═══════════════════════════════════════════════════════════════════ */
.what-we-do { background: var(--white); }
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.what-card {
  padding: 38px 30px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: white;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.what-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.what-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(192,57,43,.2); }
.what-card:hover::after { transform: scaleX(1); }
.what-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(192,57,43,.3);
}
.what-icon svg { width: 28px; height: 28px; stroke: white; }
.what-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.what-card p  { color: var(--gray-600); font-size: .93rem; line-height: 1.75; }

/* ═══════════════════════════════════════════════════════════════════
   SECTION : NOS SERVICES
   ═══════════════════════════════════════════════════════════════════ */
.services-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.services-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: var(--transition);
  color: white;
  overflow: hidden;
}
.service-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(192,57,43,.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.service-card--featured {
  background: linear-gradient(135deg, rgba(192,57,43,.28) 0%, rgba(150,40,27,.18) 100%);
  border-color: rgba(192,57,43,.6);
}
.service-card--featured:hover { border-color: var(--red-light); }
.card-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--red); color: white;
  font-size: .68rem; font-weight: 700;
  padding: 5px 13px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: .5px;
}
.card-number { font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,.055); line-height: 1; margin-bottom: 10px; }
.card-emoji  { font-size: 2.2rem; margin-bottom: 16px; }
.service-card h3 { font-size: 1.22rem; font-weight: 700; margin-bottom: 12px; }
.service-card p  { color: rgba(255,255,255,.62); font-size: .88rem; margin-bottom: 20px; line-height: 1.7; }
.card-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 24px; }
.card-list li {
  font-size: .86rem;
  color: rgba(255,255,255,.68);
  padding-left: 18px;
  position: relative;
}
.card-list li::before { content: '→'; position: absolute; left: 0; color: var(--red-light); font-weight: 700; }
.card-price {
  display: inline-block;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: white; font-weight: 700;
  padding: 6px 18px; border-radius: 100px; font-size: .83rem;
}
.service-card--featured .card-price { background: var(--red); border-color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════
   SECTION : POURQUOI NOUS
   ═══════════════════════════════════════════════════════════════════ */
.why-us { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
}
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: white;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(192,57,43,.2); }
.why-icon {
  font-size: 1.6rem;
  width: 52px; height: 52px;
  background: rgba(192,57,43,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-content h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.why-content p  { font-size: .87rem; color: var(--gray-600); line-height: 1.65; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stars        { color: #F39C12; font-size: 1.1rem; margin-bottom: 14px; }
.testimonial p { font-size: .92rem; color: var(--gray-700); font-style: italic; line-height: 1.75; margin-bottom: 14px; }
.testimonial-author { font-size: .82rem; font-weight: 600; color: var(--red); }

/* ═══════════════════════════════════════════════════════════════════
   SECTION : À PROPOS
   ═══════════════════════════════════════════════════════════════════ */
.about-section { background: white; }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-box {
  background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
  border-radius: var(--radius-lg);
  height: 460px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
  position: relative;
  overflow: hidden;
}
.about-image-box::before { content: '🔐'; font-size: 10rem; opacity: .12; position: absolute; }
.about-image-box::after  { content: '🔐'; font-size: 5rem; }
.about-badge {
  position: absolute;
  bottom: -22px; right: -22px;
  background: var(--red);
  color: white;
  border-radius: var(--radius);
  padding: 20px 26px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 900; }
.about-badge span   { font-size: .78rem; opacity: .85; }
.about-float {
  position: absolute;
  top: 20px; left: -22px;
  background: white;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--gray-200);
}
.about-float span { font-size: 1.4rem; }
.about-float p    { font-size: .78rem; font-weight: 600; color: var(--dark); max-width: 130px; line-height: 1.3; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content p  { color: var(--gray-600); margin-bottom: 16px; line-height: 1.8; }
.about-checklist  { display: flex; flex-direction: column; gap: 11px; margin: 26px 0; }
.about-check      { display: flex; align-items: center; gap: 12px; }
.check-icon       { font-size: 1rem; }
.about-check span { font-size: .93rem; font-weight: 500; color: var(--gray-800); }

/* ═══════════════════════════════════════════════════════════════════
   SECTION : CONTACT
   ═══════════════════════════════════════════════════════════════════ */
.contact-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--transition);
}
.info-card:hover { background: rgba(255,255,255,.11); border-color: rgba(192,57,43,.4); }
.info-icon    { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.info-card h4 { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.info-card a,
.info-card p  { font-size: .97rem; color: white; font-weight: 600; display: block; }
.info-card small { font-size: .78rem; color: rgba(255,255,255,.4); display: block; margin-top: 2px; }

/* Contact form */
.contact-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-box h3 { font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .82rem; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--gray-800);
  background: white;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: .78rem; color: var(--gray-400); text-align: center; margin-top: 10px; }

/* ═══════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════ */
.site-footer {
  background: #0c0f18;
  color: rgba(255,255,255,.65);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
}
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.45); margin-top: 16px; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  color: white; font-size: .78rem;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .9px; margin-bottom: 20px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: .87rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--red-light); padding-left: 4px; }
.footer-phone {
  font-size: 1.1rem !important;
  font-weight: 700;
  color: var(--red-light) !important;
  margin-bottom: 4px !important;
}
.footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem;
  color: white;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); }
.footer-bottom {
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-inner p { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-legal a:hover { color: var(--red-light); }

/* ═══════════════════════════════════════════════════════════════════
   FLOATING CTA BUTTON
   ═══════════════════════════════════════════════════════════════════ */
.floating-call {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 62px; height: 62px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 30px rgba(192,57,43,.55);
  z-index: 997;
  animation: float-bob 3.5s ease-in-out infinite;
  transition: var(--transition);
}
.floating-call:hover {
  transform: scale(1.15);
  box-shadow: 0 10px 40px rgba(192,57,43,.75);
}
@keyframes float-bob {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════ */
[data-aos] { opacity: 0; transition: opacity .65s ease, transform .65s ease; }
[data-aos="fade-up"]    { transform: translateY(35px); }
[data-aos="fade-down"]  { transform: translateY(-35px); }
[data-aos="fade-right"] { transform: translateX(-35px); }
[data-aos="fade-left"]  { transform: translateX(35px); }
[data-aos="zoom-in"]    { transform: scale(.92); }
[data-aos].is-visible   { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════════════
   WORDPRESS SPECIFIC
   ═══════════════════════════════════════════════════════════════════ */
.wp-block-image { margin: 24px 0; }
.alignwide  { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull  { max-width: 100%; }
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px);
  clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}
.wp-caption { text-align: center; }
.wp-caption-text { font-size: .85rem; color: var(--gray-600); margin-top: 6px; }
.page-content img { border-radius: var(--radius); }

/* Gutenberg blocks */
.wp-block-separator { border-color: var(--gray-200); margin: 40px 0; }
.wp-block-quote { border-left: 4px solid var(--red); padding: 16px 24px; margin: 24px 0; background: var(--gray-100); border-radius: 0 8px 8px 0; }
.wp-block-quote p { font-style: italic; font-size: 1.05rem; }
.wp-block-quote cite { font-size: .85rem; color: var(--gray-600); margin-top: 8px; display: block; }

/* Page: inner content area */
.page-wrap { padding: calc(var(--header-h) + 60px) 0 80px; }
.entry-title { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800; color: var(--dark); margin-bottom: 24px; }
.entry-content p { margin-bottom: 16px; line-height: 1.8; color: var(--gray-700); }
.entry-content h2 { font-size: 1.7rem; font-weight: 700; margin: 32px 0 12px; }
.entry-content h3 { font-size: 1.3rem; font-weight: 700; margin: 24px 0 10px; }
.entry-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.entry-content ul li { margin-bottom: 6px; color: var(--gray-700); }

/* 404 page */
.error-404-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.error-404-wrap h1 { font-size: 8rem; color: var(--red); line-height: 1; margin-bottom: 16px; }
.error-404-wrap h2 { font-size: 2rem; margin-bottom: 12px; }
.error-404-wrap p  { color: var(--gray-600); margin-bottom: 28px; }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-inner  { gap: 48px; }
}

@media (max-width: 768px) {
  .primary-nav  { display: none; }
  .hamburger    { display: flex; }
  :root { --header-h: 64px; }

  .hero-stats   { flex-direction: column; gap: 22px; padding: 24px; }
  .stat-div     { width: 60px; height: 1px; }

  .about-inner  { grid-template-columns: 1fr; }
  .about-float  { left: 0; top: -18px; }
  .about-badge  { bottom: -18px; right: 0; }

  .contact-grid         { grid-template-columns: 1fr; }
  .services-grid        { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .testimonials-grid    { grid-template-columns: 1fr; }
  .footer-grid          { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner  { flex-direction: column; text-align: center; }

  .contact-form-box { padding: 28px 22px; }
  .floating-call    { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn--large   { width: 100%; justify-content: center; }
  .why-grid     { grid-template-columns: 1fr; }
}
