/* ============================================================
   SECUFER NANTES - secufer.css
   ============================================================ */

/* --- Variables --- */
:root {
  --c-navy:         #0a1f44;
  --c-orange:       #e85d04;
  --c-orange-light: #ff7c2a;
  --c-bg:           #f8f9fa;
  --c-text:         #1a1a2e;
  --c-muted:        #6c757d;
  --c-white:        #ffffff;
  --radius-card:    12px;
  --shadow-card:    0 4px 20px rgba(0,0,0,0.08);
  --transition:     0.3s ease;
}

/* --- Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Topbar --- */
.topbar {
  background: var(--c-orange);
  padding: 0.45rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-white);
}

.topbar a {
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar a:hover { opacity: 0.85; }

/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.navbar-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: 0.5px;
}

.navbar-logo span { color: var(--c-orange); }

.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--c-orange);
  border-bottom-color: var(--c-orange);
}

.navbar-cta {
  background: var(--c-orange);
  color: var(--c-white) !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 6px;
  border-bottom: none !important;
  font-weight: 700 !important;
  transition: background var(--transition) !important;
}

.navbar-cta:hover { background: var(--c-orange-light) !important; }

/* --- Burger --- */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--c-white);
  border-radius: 3px;
  transition: var(--transition);
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  background: var(--c-navy);
  flex-direction: column;
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: rgba(255,255,255,0.88);
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--c-orange); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a6e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='0.03'%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") repeat;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--c-white);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.trust-item::before {
  content: '✓';
  background: var(--c-orange);
  color: var(--c-white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--c-orange);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}

.btn-primary:hover {
  background: var(--c-orange-light);
  border-color: var(--c-orange-light);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--c-white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-align: center;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--c-white);
  padding: 2.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  min-width: 160px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* --- Sections --- */
.section {
  padding: 5rem 1.5rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: rgba(232,93,4,0.12);
  color: var(--c-orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.9rem;
}

.section h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 700px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.section-bg {
  background: var(--c-bg);
}

.section-white {
  background: var(--c-white);
}

/* --- Cards --- */
.card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.93rem;
  color: var(--c-muted);
  line-height: 1.7;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* --- Check List --- */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: var(--c-text);
  line-height: 1.6;
}

.check-list li::before {
  content: '✓';
  background: var(--c-orange);
  color: var(--c-white);
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- Info Boxes --- */
.info-box-navy {
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.info-box-navy h3 {
  color: var(--c-orange);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.info-box-navy p { color: rgba(255,255,255,0.85); font-size: 0.95rem; }

.info-box-orange {
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: var(--radius-card);
  padding: 2rem;
}

.info-box-orange h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--c-white);
}

.info-box-orange p { color: rgba(255,255,255,0.9); font-size: 0.95rem; }

/* --- Steps --- */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  counter-reset: step;
  margin-top: 2rem;
}

.step {
  flex: 1 1 200px;
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-card);
  position: relative;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}

.step p { font-size: 0.9rem; color: var(--c-muted); }

/* --- Carousel Reviews --- */
.carousel-section {
  background: var(--c-navy);
  padding: 4rem 0;
  overflow: hidden;
}

.carousel-header {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 2.5rem;
}

.carousel-header .section-label {
  background: rgba(232,93,4,0.25);
  color: #ff9a5c;
}

.carousel-header h2 {
  color: var(--c-white);
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
  padding: 0.5rem 0;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  background: var(--c-white);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  min-width: 300px;
  max-width: 320px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.6rem;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--c-navy);
}

.review-location {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-top: 0.15rem;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--c-navy);
  text-align: left;
  gap: 1rem;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--c-bg); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-orange);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--c-muted);
  line-height: 1.75;
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--c-orange);
  padding: 5rem 1.5rem;
  text-align: center;
  color: var(--c-white);
}

.cta-banner h2 {
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  background: var(--c-white);
  color: var(--c-orange);
  border-color: var(--c-white);
}

.cta-banner .btn-primary:hover {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}

.cta-banner .btn-outline {
  border-color: rgba(255,255,255,0.8);
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --- Footer Badge --- */
.footer-badge {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* --- Footer --- */
.footer {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 4rem 1.5rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 320px;
}

.footer h4 {
  color: var(--c-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer ul li a:hover { color: var(--c-orange); }

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-white);
}

.footer-logo span { color: var(--c-orange); }

.footer-tel {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-orange);
  margin-top: 0.5rem;
  transition: opacity var(--transition);
}

.footer-tel:hover { opacity: 0.8; }

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* --- Float CTA --- */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-orange);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(232,93,4,0.5);
  transition: transform var(--transition), background var(--transition);
  text-decoration: none;
}

.float-cta:hover {
  background: var(--c-orange-light);
  transform: scale(1.1);
}

/* --- Reveal on scroll --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- Two-column layout --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.two-col-60-40 {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 3rem;
  align-items: start;
}

/* --- Prose text --- */
.prose p {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-navy);
  margin: 2rem 0 0.75rem;
}

/* --- Contact page --- */
.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--c-navy);
  margin: 1rem 0;
  transition: color var(--transition);
}

.contact-phone:hover { color: var(--c-orange); }

.contact-phone-icon {
  background: var(--c-orange);
  color: var(--c-white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.mention-block {
  background: var(--c-bg);
  border-radius: var(--radius-card);
  padding: 2rem;
  border: 1px solid #dee2e6;
  margin-top: 1rem;
}

.mention-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 0.75rem;
}

.mention-block p, .mention-block li {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.7;
}

/* --- Hero small (pages internes) --- */
.hero-small {
  min-height: 50vh;
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a6e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
  color: var(--c-white);
}

.hero-small h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 1rem;
  max-width: 760px;
}

.hero-small p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin-bottom: 2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col-60-40 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-links { display: none; }
  .burger { display: flex; }

  .card-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .steps { flex-direction: column; }

  .hero { min-height: auto; padding: 4rem 1.25rem 3rem; }
  .section { padding: 3.5rem 1.25rem; }

  .stats-inner { gap: 1.5rem; }
  .stat-item { min-width: 130px; }
  .stat-number { font-size: 2rem; }

  .float-cta { width: 52px; height: 52px; font-size: 1.3rem; bottom: 1.25rem; right: 1.25rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .trust-items { gap: 0.6rem 1rem; }
  .cta-banner h2 { font-size: 1.6rem; }
  .contact-phone { font-size: 1.4rem; }
}
