/*
  MonRemorquageAuto — Clean CSS
  - Normalize v8
  - Base + Layout
  - Mobile nav (CSS only)
  - Sections + Components + Pages
*/

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.blink {
  animation: blink 1.2s step-start infinite;
  font-weight: 700;
  color: #f7c948;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================
   NORMALIZE (v8.0.1)
========================= */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* =========================
   CSS VARIABLES
========================= */

:root {
  /* Couleurs principales */
  --color-primary: #ff9900;
  --color-primary-dark: #e68a00;
  --color-primary-light: #ffad33;
  
  /* Couleurs de texte */
  --color-text: #333;
  --color-text-light: #555;
  --color-text-muted: #777;
  --color-text-white: #fff;
  
  /* Couleurs de fond */
  --color-bg-light: #f5f5f5;
  --color-bg-white: #fff;
  --color-bg-dark: #111;
  --color-bg-card: #f9f9f9;
  
  /* Bordures */
  --color-border: #ddd;
  --color-border-light: rgba(255, 255, 255, 0.12);
  
  /* Ombres */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.2);
  
  /* Espacements */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 20px;
  --space-lg: 30px;
  --space-xl: 40px;
  --space-2xl: 60px;
  --space-3xl: 80px;
  
  /* Typographie */
  --font-base: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-size-sm: 13px;
  --font-size-base: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 28px;
  --font-size-3xl: 48px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.35s ease;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;
}

/* =========================
   BASE / RESET
========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Media */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: var(--color-text-white);
}

/* =========================
   UTILS
========================= */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.center {
  text-align: center;
}

.divider {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
  margin: var(--space-md) auto;
  border-radius: 2px;
}

.divider.left {
  margin-left: 0;
}

/* =========================
   HERO / HEADER
========================= */

.hero {
  position: relative;
  background: url("assets/images/imagedepannage.png")
    center / cover no-repeat;
  color: #333;
  z-index: 1;
  background-color: #FFF;
}

.hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.header-top {
  position: relative;
  z-index: 2; /* au-dessus de l'overlay */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: 16px;
  background-color: #FFF;
  padding: 15px 60px 30px 30px;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  transition: transform var(--transition-base);
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 0;
}

.logo:hover {
  transform: scale(1.02);
}

/* Nav desktop */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav a {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-base);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav a:hover::after {
  width: 100%;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  font-size: var(--font-size-base);
  text-transform: uppercase;
  padding: var(--space-xs) 0;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-base);
  display: inline-block;
  user-select: none;
}

.nav-dropdown-toggle::after {
  content: '▾';
  margin-left: 5px;
  font-size: 0.8em;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  min-width: 200px;
  padding: 8px 0;
  z-index: 1000;
}

/* Créer une zone invisible pour garder le hover actif */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  display: none;
  z-index: 999;
}

.nav-dropdown:hover::before {
  display: block;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-transform: none;
  font-size: var(--font-size-sm);
  transition: background var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--color-primary);
}


/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  color: var(--color-text-white);
}

@media (max-width: 768px) {
  .hero-content {
    padding: var(--space-3xl) var(--space-lg);
  }
}   

.hero h1 {
  font-size: clamp(32px, 5vw, var(--font-size-3xl));
  max-width: 700px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contexte header au-dessus de l'overlay hero */
.header-top {
  position: relative;
  z-index: 10;
}

/* Toggle invisible mais présent */
.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Burger */
.burger-menu {
  display: none;
  position: relative;         /* IMPORTANT: sinon z-index ne marche pas */
  z-index: 1003;              /* au-dessus du menu + overlay */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-menu span {
  width: 26px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  display: block;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

/* Overlay cliquable */
.nav-overlay {
  display: none;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  /* Hide dropdown arrow on mobile */
  .nav-dropdown-toggle::after {
    content: '▾';
  }

  /* Mobile dropdown styling */
  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-toggle {
    display: block;
    padding: 18px var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--font-size-md);
    text-align: left;
    cursor: pointer;
    color: #FFF;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    padding-left: 15px;
  }

  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown-menu a {
    padding: 14px var(--space-md) 14px calc(var(--space-md) * 2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: var(--font-size-sm);
    background: transparent;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  /* Overlay (doit être sous le menu mais au-dessus du site) */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1000;
  }

  /* Drawer nav (au-dessus de l'overlay) */
  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    z-index: 1002;
    backdrop-filter: blur(10px);
  }

  .nav a {
    padding: 18px var(--space-md);
    border-bottom: 1px solid var(--color-border-light);
    font-size: var(--font-size-md);
    text-align: left;
    color: #FFF;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  /* OPEN */
  .nav-toggle:checked ~ .nav {
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
  }

  .nav-toggle:checked ~ .nav-overlay {
    display: block;
  }

  /* Burger -> X */
  .nav-toggle:checked + .burger-menu span {
    background: #fff;
  }

  .nav-toggle:checked + .burger-menu span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle:checked + .burger-menu span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked + .burger-menu span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* =========================
   LOCK SCROLL WHEN MOBILE NAV IS OPEN
========================= */

/* Empêche le scroll de la page quand le menu est ouvert */
body:has(.nav-toggle:checked) {
  overflow: hidden;
}
/* =========================
   BUTTONS
========================= */

.btn-primary {
  display: inline-block;
  margin-top: var(--space-md);
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: 14px 30px;
  font-weight: bold;
  border-radius: var(--radius-sm);
  border: none;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(255, 153, 0, 0.25);
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 153, 0, 0.3);
}

/* =========================
   SECTIONS / LAYOUT
========================= */

.section {
  padding: var(--space-3xl) 0;
}

.section.light {
  background: var(--color-bg-light);
}

.city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-xl);
}

.pill {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: var(--color-primary);
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
  gap: var(--space-xl);
  align-items: center;
}

@media (max-width: 768px) {
  .grid-2 {
    gap: var(--space-lg);
  }
}

/* =========================
   SERVICES
========================= */

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.service {
  background: var(--color-bg-white);
  padding: 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  border: 1px solid transparent;
}

.service:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.services-showcase .services {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.services-showcase .service {
  text-align: left;
  padding: 28px 24px;
  border: 1px solid rgba(255, 153, 0, 0.2);
  border-top: 4px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}


.services-showcase .service:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 153, 0, 0.45);
}

.services-showcase .service h3 {
  margin: 0 0 12px;
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.35;
  color: var(--color-text);
}

.services-showcase .service p {
  margin: 0;
  color: #4f4f4f;
  line-height: 1.75;
  font-size: var(--font-size-md);
}

@media (max-width: 768px) {
  .services-showcase .services {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-showcase .service {
    padding: 22px 18px;
  }

  .services-showcase .service h3 {
    font-size: 19px;
  }
}

.process-steps .services {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  position: relative;
}

.process-steps .services::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 44px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary-light), var(--color-primary));
  opacity: 0.55;
}

.process-steps .service {
  text-align: left;
  padding: 24px;
  position: relative;
}

.process-steps .step-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35;
  text-align: left;
}

.process-steps .step-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-text-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 153, 0, 0.3);
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .process-steps .services {
    gap: 14px;
  }

  .process-steps .services::before {
    left: 41px;
  }

  .process-steps .step-title {
    gap: 10px;
    font-size: 18px;
  }

  .process-steps .step-badge {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}

  /* =========================
     FAQ
  ========================= */

  .faq-section .faq-list {
    max-width: 900px;
    margin: var(--space-xl) auto 0;
    display: grid;
    gap: 12px;
  }

  .faq-section .faq-item {
    background: var(--color-bg-white);
    border: 1px solid rgba(255, 153, 0, 0.25);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
  }

  .faq-section .faq-item:hover {
    border-color: rgba(255, 153, 0, 0.45);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
  }

  .faq-section .faq-item summary {
    list-style: none;
    cursor: pointer;
    position: relative;
    font-weight: 700;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.5;
    padding: 18px 52px 18px 20px;
  }

  .faq-section .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-section .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-primary);
    transition: transform var(--transition-base), color var(--transition-base);
  }

  .faq-section .faq-item[open] summary::after {
    content: "−";
  }

  .faq-section .faq-item p {
    margin: 0;
    padding: 0 20px 18px;
    color: var(--color-text-light);
    line-height: 1.8;
    font-size: var(--font-size-md);
  }

  @media (max-width: 768px) {
    .faq-section .faq-list {
      gap: 10px;
    }

    .faq-section .faq-item summary {
      font-size: 16px;
      padding: 16px 46px 16px 16px;
    }

    .faq-section .faq-item summary::after {
      right: 14px;
      font-size: 22px;
    }

    .faq-section .faq-item p {
      padding: 0 16px 16px;
      font-size: 15px;
    }
  }

/* =========================
   CTA
========================= */

.cta {
  position: relative;
  background: url("https://www.monremorquageauto.com/wp-content/uploads/2022/12/final-dl.beatsnoop.com-96RX3WSjcp.jpg")
    center / cover fixed;
  color: var(--color-text);
  padding: 100px 0;
}

@media (max-width: 768px) {
  .cta {
    padding: var(--space-2xl) 0;
  }
}

.cta .overlay {
  position: absolute;
  inset: 0;
  background: var(--color-bg-light);
}

.cta .container {
  position: relative;
  z-index: 1;
}

/* =========================
   FOOTER
========================= */

.footer {
  background: var(--color-bg-white);
  color: var(--color-text-white);
  padding: 50px 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.footer h3,
.footer h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  border-radius: 0;
}

.footer a {
  display: block;
  margin-bottom: 6px;
  font-size: var(--font-size-base);
  transition: color var(--transition-base), padding-left var(--transition-base);
  color: var(--color-text);

}

.footer a:hover {
  color: var(--color-primary);
  padding-left: 5px;
}

.footer p{
  color: var(--color-text);
}

.copyright {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: var(--font-size-sm);
  color: #aaa;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: bold;
  color: var(--color-text);
  font-size: var(--font-size-base);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) 15px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all var(--transition-base);
  background: var(--color-bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.1);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info {
  margin-top: 30px;
}

.contact-item {
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  transition: all var(--transition-base);
}

.contact-item:hover {
  background: var(--color-bg-white);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.contact-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.contact-item p {
  margin-bottom: 5px;
  color: #555;
}

.contact-item .small {
  font-size: 13px;
  color: #777;
}

.contact-item a {
  color: #ff9900;
  font-weight: bold;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* =========================
   BLOG
========================= */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--color-bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  cursor: pointer;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 0;
  transition: transform var(--transition-slow);
}

.blog-card-content {
  padding: 25px;
}

.blog-date {
  display: inline-block;
  font-size: var(--font-size-sm);
  color: var(--color-primary);
  font-weight: bold;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #333;
  line-height: 1.4;
}

.blog-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
}

.blog-link:hover {
  color: var(--color-primary-dark);
  gap: 12px;
}

.blog-link::after {
  content: '→';
  transition: transform var(--transition-base);
}

.blog-link:hover::after {
  transform: translateX(3px);
}

/* =========================
   ARTICLE PAGE
========================= */

.article-content {
  background: #fff;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f5f5f5;
}

.article-date,
.article-category {
  font-size: var(--font-size-base);
  font-weight: bold;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-body {
  max-width: 800px;
  margin: 0 auto;
}

.article-body h2 {
  font-size: clamp(22px, 4vw, var(--font-size-2xl));
  color: var(--color-text);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-md);
  line-height: 1.3;
}

.article-body p {
  font-size: var(--font-size-md);
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.article-body ul {
  margin: 20px 0 20px 30px;
  line-height: 1.8;
}

.article-body ul li {
  margin-bottom: 10px;
  color: #555;
}

.article-body a {
  color: #ff9900;
  font-weight: bold;
  text-decoration: underline;
}

.article-body a:hover {
  color: #e68a00;
}

.article-footer {
  max-width: 800px;
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 2px solid #f5f5f5;
}

.article-footer .btn-primary {
  display: inline-block;
  margin-top: 0;
}

/* =========================
   NAVBAR MOBILE@MEDIA
========================= */

@media (max-width: 768px) {
 .header-top {
    padding: var(--space-md);
  }
}