/* ==================================================
   LOGILIFT - STYLE GLOBAL PREMIUM
   Fichier : assets/css/style.css
   Description : styles principaux du site
   Couleurs : Bleu & Orange (identité LOGILIFT)
   ================================================== */

/* ===============================
   VARIABLES GLOBALES
   =============================== */
:root {
  --blue-dark: #0b2c4d;
  --blue-light: #1e5fa3;
  --orange: #f7931e;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --gray: #e0e0e0;
  --dark: #0a0a0a;
}

/* ===============================
   RESET & BASE
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-weight: 700;
}

section {
  padding: 90px 10%;
}

/* ===============================
   LOADER
   =============================== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#loader span {
  color: var(--white);
  font-size: 2rem;
  letter-spacing: 5px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===============================
   NAVBAR
   =============================== */
.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px ;
  padding-right: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  display: flex;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--white);
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

/* ===============================
   HERO
   =============================== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(11,44,77,0.85), rgba(11,44,77,0.85)),
              url('../images/ChatGPT\ Image\ 25\ déc.\ 2025\,\ 11_28_32.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero-content {
    margin-top: 10%;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3.8rem;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--orange);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

/* ===============================
   BOUTONS
   =============================== */
.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #d87f16;
}

.btn-secondary {
  border: 2px solid var(--orange);
  color: var(--orange);
}

.btn-secondary:hover {
  background: var(--orange);
  color: var(--white);
}

/* ===============================
   SERVICES PREVIEW
   =============================== */
.services-preview h2 {
  text-align: center;
  margin-bottom: 50px;
  color: var(--blue-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-card h3 {
  margin: 15px 0;
  color: var(--orange);
}

/* ===============================
   STATS
   =============================== */
.stats {
  background: var(--blue-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat span {
  font-size: 3rem;
  color: var(--orange);
}

/* ===============================
   WHY US
   =============================== */
.why-us h2 {
  text-align: center;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.why-grid div {
  background: var(--gray-light);
  padding: 30px;
  border-radius: 15px;
  font-weight: 600;
}

/* ===============================
   CTA
   =============================== */
.cta {
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-light));
  color: var(--white);
  text-align: center;
}

.cta h2 {
  margin-bottom: 30px;
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 40px 10%;
}

/* ===============================
   BOUTONS FLOTTANTS
   =============================== */
.whatsapp,
.top {
  position: fixed;
  right: 25px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  z-index: 1000;
}

.whatsapp {
  bottom: 25px;
  background: #25d366;
}

.top {
  bottom: 90px;
  background: var(--orange);
  display: none;
}

.imlogo{
    width: 400px;
    height: 400px;
}

.second{
    text-align: center;
    padding: auto;
    background-color: #ffffff;
    color: gray;
}

.second h4{
    color: orange;
    font-size: large;
}

.second i{
    color: orange;
}


