/* ========================================
   Cap Logistique Dark Card Theme
   Author: Design Team
   Version: 1.0
   ======================================== */

   :root {
    --primary-dark: #0a1216;
    --secondary-dark: #0e1a1f;
    --accent-teal: #2ecc71;
    --accent-teal-light: #34e07a;
    --text-white: #ffffff;
    --text-gray: #e0e0e0;
    --card-bg: #0d191c;
    --card-border: rgba(46, 204, 113, 0.1);
    --shadow: rgba(0, 0, 0, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: var(--primary-dark);
    color: var(--text-white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  
  /* Header & Navigation */
  header {
    background-color: var(--secondary-dark);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px var(--shadow);
  }
  
  .logo img {
    height: 50px;
  }
  
  nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
  }
  
  nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
  }
  
  nav a:hover,
  nav a.active {
    color: var(--accent-teal);
  }
  
  nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-teal);
  }
  
  .cta-button {
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .cta-button:hover {
    background-color: var(--accent-teal-light);
    transform: translateY(-2px);
  }
  
  /* Hero Section */
  .hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom, var(--primary-dark), var(--secondary-dark));
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero h1 span {
    color: var(--accent-teal);
  }
  
  .hero img {
    max-width: 80%;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-top: 2rem;
  }
  
  /* Services Section */
  .services {
    padding: 4rem 2rem;
    
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    background-color: var(--primary-dark);
  }
  
  .service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow);
  }
  
  /* Legal mentions cards - no hover effect for static content */
  .mentions-content .service-card:hover {
    transform: none;
    box-shadow: 0 5px 15px var(--shadow);
  }
  
  .service-card h3 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }
  
  .service-card ul {
    padding-left: 1.2rem;
    margin: 1rem 0;
  }
  
  .service-card li {
    margin: 0.5rem 0;
    font-size: 0.95rem;
  }
  
  /* Promo Section */
  .promo {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  }
  
  .promo h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }
  
  .promo h2 span {
    color: var(--accent-teal);
  }
  
  .promo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .promo-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
  }
  
  .promo-image {
    flex: 1;
    min-width: 300px;
  }
  
  .promo-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px var(--shadow);
  }
  
  .promo-button {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: var(--accent-teal);
    color: var(--primary-dark);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .promo-button:hover {
    background-color: var(--accent-teal-light);
    transform: scale(1.05);
  }
  
  /* Why Us Section */
  .why-us {
    padding: 4rem 2rem;
    background-color: var(--primary-dark);
  }
  
  .why-us h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  .why-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
  }
  
  .why-card:hover {
    transform: translateY(-5px);
  }
  
  .why-card h3 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  
  /* CTA Section */
  .specific-need {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--secondary-dark);
  }
  
  .specific-need h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .specific-need p {
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .specific-need .cta-button {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
  }
  
  /* Footer */
  footer {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-top: 1px solid var(--card-border);
    text-align: center;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
    text-align: left;
  }
  
  .footer-column h4 {
    color: var(--accent-teal);
    margin-bottom: 1rem;
  }
  
  .footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--accent-teal);
  }
  
  .contact-info p {
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--card-border);
    font-size: 0.85rem;
    color: var(--text-gray);
  }
  
  .footer-bottom a {
    color: var(--accent-teal);
    margin: 0 0.5rem;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    nav ul {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .promo-container {
      flex-direction: column;
    }
  
    .promo-text, .promo-image {
      min-width: 100%;
    }
  }