/* ============================================================
   FORCE SÉCURITÉ SERVICES INC.
   Palette : Navy + Or (issue du logo)
   Surveiller · Protéger · Intervenir · Assister
   ============================================================ */

:root {
  --navy-900: #0b1a36;
  --navy-800: #102347;
  --navy-700: #18305e;
  --navy-600: #1f3d75;
  --gold-500: #f5c518;
  --gold-400: #ffd34d;
  --gold-600: #c9a014;
  --white: #ffffff;
  --gray-50: #f6f7fb;
  --gray-100: #eef0f6;
  --gray-200: #d9dde8;
  --gray-500: #6b7689;
  --gray-700: #3a4257;
  --gray-900: #161a26;

  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(11, 26, 54, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 26, 54, 0.12);
  --shadow-lg: 0 20px 50px rgba(11, 26, 54, 0.18);

  --font-body: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display: 'Oswald', 'Montserrat', sans-serif;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ---------- HEADER ---------- */
.site-header {
  background: var(--navy-900);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.brand-logo {
  height: 74px;
  width: auto;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: var(--gold-500);
  line-height: 1;
}
.brand-name em {
  font-style: normal;
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-top: 4px;
}
.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
}
.main-nav a {
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color .2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--gold-500);
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold-500);
}
.header-phone {
  background: var(--gold-500);
  color: var(--navy-900) !important;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s;
}
.header-phone:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
}
.phone-icon { font-size: 16px; }

/* ---------- HERO ---------- */
.hero {
  background:
    linear-gradient(135deg, rgba(11,26,54,0.94) 0%, rgba(16,35,71,0.90) 100%),
    radial-gradient(circle at 20% 20%, rgba(245,197,24,0.12), transparent 50%),
    var(--navy-900);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-text { max-width: 620px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin: 0 0 22px;
}
.hero-accent { color: var(--gold-500); }
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(255,255,255,0.85);
  margin: 0 0 34px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero visual — scène pleine (Liam dans lobby moderne) */
.hero-visual {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4 / 5;
}
.hero-scene {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid var(--gold-500);
  box-shadow:
    0 0 0 8px rgba(245, 197, 24, 0.15),
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 10px 25px rgba(0, 0, 0, 0.35);
  z-index: 1;
  background: var(--navy-900);
}
.hero-scene img,
.hero-scene video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Halo doré doux animé derrière la scène */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -8% -8% -8% -8%;
  border-radius: 24px;
  background: conic-gradient(
    from 210deg,
    transparent 0%,
    rgba(245,197,24,0.30) 25%,
    transparent 50%,
    transparent 100%
  );
  filter: blur(28px);
  z-index: 0;
  animation: heroGlow 9s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0%   { opacity: 0.45; transform: rotate(0deg); }
  100% { opacity: 0.85; transform: rotate(18deg); }
}

/* Badge 24/7 en pastille dorée */
.hero-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  z-index: 3;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 30px rgba(245, 197, 24, 0.4), 0 0 0 4px var(--navy-900);
  transform: rotate(-8deg);
}
.badge-num {
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.5px;
}
.badge-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.15;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(245,197,24,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* ---------- TRUST BAR (AMP / BSP) ---------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 36px 0;
}
.trust-label {
  text-align: center;
  font-family: var(--font-display);
  color: var(--navy-700);
  letter-spacing: 3px;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 22px;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-img-amp {
  height: 105px;
  width: auto;
}
.trust-img-bsp {
  height: 85px;
  width: auto;
}
.trust-bsp {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.bsp-permit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-700);
  letter-spacing: 0.3px;
  padding-left: 12px;
}
.bsp-permit sup { font-size: 10px; }

/* ---------- SECTIONS ---------- */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy-900);
  text-align: center;
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.section-lead {
  text-align: center;
  font-size: 17px;
  color: var(--gray-500);
  max-width: 620px;
  margin: 0 auto 50px;
}

/* ---------- SERVICES GRID ---------- */
.services {
  padding: 90px 0;
  background: var(--gray-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-500);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-icon {
  font-size: 42px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: 50%;
  margin-bottom: 6px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0;
}
.service-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-700);
  margin-top: auto;
}
.service-card:hover .service-arrow {
  color: var(--gold-600);
}

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--white);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 8px;
}
.cta-inner p {
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.85);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--font-display);
  color: var(--gold-500);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.footer-col p,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.footer-col a:hover { color: var(--gold-500); }
.footer-logo {
  height: 96px;
  width: auto;
  margin-bottom: 14px;
}
.footer-tag {
  color: var(--gold-500);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-links li { margin-bottom: 6px; }

/* Icônes pour téléphone / courriel / adresse — auto-appliquées via sélecteurs d'attribut */
.footer-col a[href^="tel:"]::before,
.footer-col a[href^="mailto:"]::before,
.contact-info a[href^="tel:"]::before,
.contact-info a[href^="mailto:"]::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  vertical-align: -3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer-col a[href^="tel:"]::before,
.contact-info a[href^="tel:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5C518'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56-.35-.12-.74-.03-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
}
.footer-col a[href^="mailto:"]::before,
.contact-info a[href^="mailto:"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5C518'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}
/* Épingle devant le paragraphe adresse (celui qui suit tel/courriel) */
.footer-col p:has(a[href^="tel:"], a[href^="mailto:"]) + p::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  vertical-align: -3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F5C518'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E") no-repeat center / contain;
}
/* Le lien du header (bouton téléphone) garde son style original — pas d'icône ajoutée */
.header-phone::before { display: none !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-signature {
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--gold-500);
  opacity: 0.75;
  font-style: italic;
}
@media (max-width: 600px) {
  .footer-bottom .container { justify-content: center; text-align: center; }
}

/* ============================================================
   PAGES DE SERVICES
   ============================================================ */
.service-hero {
  background:
    linear-gradient(135deg, rgba(11,26,54,0.88), rgba(16,35,71,0.85)),
    var(--navy-900);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
}
.service-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 14px;
  letter-spacing: 0.5px;
}
.service-hero h1 span { color: var(--gold-500); }
.service-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold-500); }

.service-body {
  padding: 80px 0;
}
.service-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.service-text h2 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 28px;
  margin: 30px 0 14px;
}
.service-text h2:first-child { margin-top: 0; }
.service-text p {
  color: var(--gray-700);
  font-size: 16px;
  margin-bottom: 16px;
}
.service-text ul.bullets {
  margin: 10px 0 24px;
}
.service-text ul.bullets li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: var(--gray-700);
}
.service-text ul.bullets li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.service-gallery {
  display: grid;
  gap: 16px;
}
.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-height: 200px;
  background: var(--gray-100);
}

.service-cta {
  background: var(--gray-50);
  padding: 60px 0;
  text-align: center;
}
.service-cta h2 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 10px;
}
.service-cta p {
  color: var(--gray-500);
  margin: 0 0 24px;
}

/* Page À propos / Contact */
.page-section {
  padding: 80px 0;
}
.page-section h2 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-size: 28px;
  margin: 0 0 16px;
}
.page-section p {
  color: var(--gray-700);
  font-size: 16px;
  margin-bottom: 14px;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.value-card .v-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 14px;
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.value-card p {
  color: var(--gray-500);
  font-size: 14px;
  margin: 0;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}
.contact-info p {
  font-size: 16px;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.contact-info strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy-900);
  margin-top: 18px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-form {
  background: var(--gray-50);
  padding: 36px;
  border-radius: var(--radius-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(245,197,24,0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-phone { font-size: 14px; padding: 8px 14px; }
  .brand-name { font-size: 18px; }
  .brand-logo { height: 60px; }
  .hero { padding: 60px 0 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-text { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 340px; margin-inline: auto; }
  .hero-badge { width: 100px; height: 100px; right: 0; }
  .badge-num { font-size: 26px; }
  .services { padding: 60px 0; }
  .service-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .btn { padding: 12px 22px; font-size: 14px; }
  .footer-grid { gap: 30px; }
}
