:root {
    --primary: #E63946;
    --secondary: #FF8FA3;
    --accent: #F1FAEE;
    --dark: #1D3557;
    --light: #F8F9FA;
    --text-muted: #6C757D;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 800px;
}

/* =====================
   HEADER & NAV
   ===================== */
.main-header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-red { color: var(--primary); }

.nav-links { display: flex; gap: 30px; }

.nav-links a {
    font-weight: 600;
    color: var(--dark);
    font-size: 1rem;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

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

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.header-cta .btn { padding: 10px 25px; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
    position: relative;
    padding: 100px 0 140px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(29, 53, 87, 0.9) 0%, rgba(29, 53, 87, 0.4) 60%, rgba(29, 53, 87, 0.1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero .lead {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.search-box {
    background: #fff;
    padding: 10px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    margin-bottom: 40px;
    max-width: 600px;
}

.search-form {
    display: flex;
    gap: 10px;
    position: relative;
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-icon {
    color: var(--primary);
    width: 20px;
    height: 20px;
    margin-right: 12px;
}

.search-input-group input {
    border: none;
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.search-results {
    position: absolute;
    top: calc(100% + 15px);
    left: 0; right: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 100;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-item {
    padding: 12px 25px;
    cursor: pointer;
    color: var(--dark);
    transition: background 0.2s;
    border-bottom: 1px solid #f5f5f5;
}

.search-item:last-child { border-bottom: none; }
.search-item:hover { background: var(--light); color: var(--primary); }
.search-item strong { display: block; font-size: 1rem; }
.search-item small { color: var(--text-muted); }

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

/* =====================
   POPULAR CITIES
   ===================== */
.popular-cities {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.city-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: var(--light);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.city-card:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.city-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.city-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.city-card i {
    color: var(--primary);
    opacity: 0.3;
    transition: var(--transition);
}

.city-card:hover i {
    opacity: 1;
    transform: translateX(5px);
}

.all-regions-cta .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* =====================
   INTRO TEXT
   ===================== */
.intro-text .content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.intro-text .content-text p {
    margin-bottom: 25px;
}

.intro-text .content-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* =====================
   BLOG / MAGAZINE PREVIEW
   ===================== */
.blog-preview {
    background: var(--light);
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.blog-header-text {
    max-width: 600px;
}

.blog-eyebrow {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: left;
}

.blog-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card--featured {
    display: flex;
    flex-direction: column;
}

.blog-card-img {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
}

.blog-card-body {
    padding: 30px;
}

.blog-tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.blog-card-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.blog-card-excerpt {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.blog-read-more {
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-card--small .blog-card-inner-link {
    display: flex;
    gap: 15px;
    padding: 15px;
}

.blog-card-img-small {
    width: 100px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-card-title-small {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.4;
}

.blog-cta-box {
    background: var(--dark);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: #fff;
    margin-top: auto;
}

.blog-cta-emoji {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.blog-cta-box p {
    font-weight: 600;
    margin-bottom: 20px;
}

/* =====================
   FAQ
   ===================== */
.faq {
    background: #fff;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.faq-item p {
    color: var(--text-muted);
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.2rem;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-block { width: 100%; display: block; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.3);
}

.btn-secondary { background: var(--dark); color: #fff; }
.btn-secondary:hover { background: #2a4a75; transform: translateY(-2px); }

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-text {
    background: transparent;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 10px 20px;
}
.btn-text:hover { color: var(--primary); }

.btn-lg { padding: 18px 40px; font-size: 1.2rem; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 80px 0; }

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.text-primary { color: var(--primary); }

/* =====================
   MOBILE MENU (OFFCANVAS)
   ===================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0; right: -320px;
    width: 320px; max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10002;
    padding: 25px;
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-header .logo { font-size: 1.4rem; }

.mobile-menu-close {
    background: none; border: none; font-size: 1.5rem;
    cursor: pointer; color: var(--dark); padding: 5px;
}

.mobile-nav-links {
    display: flex; flex-direction: column; gap: 20px;
    margin-bottom: 30px;
}
.mobile-nav-links a {
    font-size: 1.3rem; font-weight: 600; color: var(--dark);
    display: block; padding: 5px 0;
}
.mobile-nav-links a:hover { color: var(--primary); padding-left: 10px; }

.mobile-cta { margin-top: auto; padding-bottom: 20px; }
.mobile-cta .btn { width: 100%; display: block; text-align: center; }

/* =====================
   BREADCRUMBS
   ===================== */
.breadcrumbs-bar {
    background: #fdfdfd;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumbs li { display: flex; align-items: center; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin: 0 10px; opacity: 0.5; }
.breadcrumbs a { color: var(--text-muted); transition: color 0.3s; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs [aria-current="page"] { color: var(--primary); font-weight: 600; }

/* =====================
   SKIP LINK (Accessibilité)
   ===================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 10px;
    background: var(--primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 99999;
    transition: top 0.2s;
    text-decoration: none;
}
.skip-link:focus { top: 0; }

/* =====================
   SCROLL ANIMATIONS
   ===================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.5, 0, 0, 1), transform 1s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* Failsafe si JS désactivé */
noscript .reveal-on-scroll { opacity: 1; transform: none; }

/* =====================
   ARTICLES & CARDS
   ===================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.article-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.15);
}

.article-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.article-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.article-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta svg {
    width: 14px;
    height: 14px;
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.4;
}

.article-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cta-section {
    background: var(--dark);
    color: #fff;
    padding: 60px 30px;
    border-radius: var(--border-radius);
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.cta-section > * {
    position: relative;
    z-index: 1;
}

.cta-section h2 { margin-bottom: 15px; color: #fff; }
.cta-section p { margin-bottom: 30px; opacity: 0.8; font-size: 1.1rem; }

/* =====================
   FOOTER — COMPACT
   ===================== */
.main-footer {
    background: var(--dark);
    color: #fff;
    margin-top: 60px;
}

.footer-seo {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-seo-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-seo-col {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-seo-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
    white-space: nowrap;
    padding-top: 3px;
    min-width: 130px;
}

.footer-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.footer-tag {
    display: inline-block;
    padding: 3px 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    white-space: nowrap;
}

.footer-tag:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.footer-tag--active {
    background: rgba(230, 57, 70, 0.25);
    border-color: var(--primary);
    color: var(--secondary);
    font-weight: 600;
}

.footer-tag--more {
    border-color: var(--secondary);
    color: var(--secondary);
    font-weight: 600;
}

.footer-tag--more:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}

.footer-tag small {
    opacity: 0.7;
    font-size: 0.7em;
}

.footer-bottom {
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 700;
}

.footer-logo-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.footer-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.footer-nav a:hover { color: var(--secondary); }

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s;
}

.footer-legal a:hover { color: var(--secondary); }

.footer-legal span { opacity: 0.5; }

/* =====================
   COOKIE BANNER
   ===================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.18);
    border-radius: var(--border-radius);
    z-index: 9990;
    border-left: 5px solid var(--primary);
    animation: cookieSlideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes cookieSlideUp {
    from { transform: translateY(120%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.cookie-container {
    padding: 22px 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-content h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.55;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-actions .btn {
    padding: 10px 22px;
    font-size: 0.875rem;
}

.cookie-reopen-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 9988;
    transition: var(--transition);
}

.cookie-reopen-btn:hover {
    transform: scale(1.12);
    background: var(--primary);
}

.cookie-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10003;
    padding: 20px;
    backdrop-filter: blur(3px);
}

.modal-content {
    background: #fff;
    padding: 35px;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes modalPop {
    from { transform: scale(0.9) translateY(20px); opacity: 0; }
    to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.modal-content h3 {
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 1.3rem;
}

.modal-content > p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-option-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    gap: 16px;
}

.cookie-option-item:last-of-type {
    border-bottom: none;
}

.cookie-option-info strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
    color: var(--dark);
}

.cookie-option-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.cookie-option-item input[type="checkbox"] {
    width: 42px;
    height: 22px;
    -webkit-appearance: none;
    appearance: none;
    background: #ddd;
    border-radius: 11px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    flex-shrink: 0;
    outline-offset: 2px;
}

.cookie-option-item input[type="checkbox"]:checked {
    background: var(--primary);
}

.cookie-option-item input[type="checkbox"]::before {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 16px; height: 16px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.cookie-option-item input[type="checkbox"]:checked::before {
    transform: translateX(20px);
}

.modal-actions {
    margin-top: 22px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-actions .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* =====================
   QUIZ
   ===================== */
.quiz-card {
    background: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-top: 40px;
    border: 2px solid var(--secondary);
}

.quiz-option {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 10px;
    background: var(--light);
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-weight: 600;
}

.quiz-option:hover { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.quiz-option.selected { background: var(--primary); color: #fff; border-color: var(--primary); }

.quiz-progress {
    height: 5px;
    background: #eee;
    border-radius: 3px;
    margin-bottom: 25px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.3s;
}

/* =====================
   TESTIMONIALS
   ===================== */
.article-testimonial {
    background: var(--accent);
    padding: 22px;
    border-radius: var(--border-radius);
    margin-bottom: 18px;
    border-left: 5px solid var(--primary);
}

.article-testimonial-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.article-testimonial-meta { font-size: 0.85rem; font-weight: 600; }

/* =====================
   ARTICLE LAYOUT (SINGLE)
   ===================== */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.article-body {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.article-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.article-badge-inline {
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
}

.article-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-date svg { width: 16px; height: 16px; }

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--dark);
}

.article-featured-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-rich-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-rich-content h2,
.article-rich-content h3 {
    color: var(--dark);
    margin: 30px 0 15px;
    font-family: 'Playfair Display', serif;
}

.article-rich-content p {
    margin-bottom: 20px;
}

.article-rich-content ul,
.article-rich-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-rich-content li {
    margin-bottom: 10px;
}

.article-testimonials-section {
    background: var(--light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin: 40px 0;
}

.article-testimonials-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    margin-bottom: 25px;
}

.article-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-name {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.author-city {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.article-divider {
    border: 0;
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 40px 0;
}

.quiz-header h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.quiz-header p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.quiz-question {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.quiz-options {
    display: grid;
    gap: 15px;
}

.hidden { display: none !important; }

.quiz-result-content {
    margin-bottom: 30px;
}

.quiz-heart-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    display: inline-block;
}

.quiz-result-content h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.quiz-result-content p {
    font-size: 1.1rem;
    color: #555;
}

.article-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-info strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.share-actions {
    display: flex;
    gap: 10px;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.article-bottom-cta {
    background: var(--dark);
    color: #fff;
    padding: 50px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.article-bottom-cta h2 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.article-bottom-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.article-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.recommended-articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recommended-article {
    display: flex;
    align-items: center;
    gap: 15px;
}

.recommended-article img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
}

.recommended-article-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.recommended-article-info a {
    color: var(--dark);
}

.recommended-article-info a:hover {
    color: var(--primary);
}

.article-badge-small {
    background: var(--light);
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.widget-cities {
    border-top: 4px solid var(--primary);
}

.widget-cities p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.city-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.city-tag {
    background: var(--light);
    color: var(--dark);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.city-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* =====================
   EXIT INTENT POPUP
   ===================== */
.exit-popup-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(29, 53, 87, 0.85);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: #fff;
    width: 100%;
    max-width: 500px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(-40px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    text-align: center;
    border-top: 8px solid var(--primary);
}

.exit-popup-overlay.active .exit-popup-content {
    transform: translateY(0) scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px; right: 15px;
    background: none; border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    padding: 5px;
}
.exit-popup-close:hover { color: var(--primary); transform: rotate(90deg); }

.exit-popup-badge {
    display: inline-block;
    background: rgba(255, 143, 163, 0.2);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.exit-popup-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.2;
}

.exit-popup-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.exit-popup-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    outline: none;
    transition: var(--transition);
    text-align: center;
}

.exit-popup-form input[type="email"]:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.exit-popup-footer {
    margin-top: 20px;
}

.btn-close-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 5px 10px;
    opacity: 0.7;
}

.privacy-note {
    font-size: 0.75rem;
    color: #999;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.exit-popup-success {
    padding: 20px 0;
}
.exit-popup-success .success-icon {
    color: #2ecc71;
    margin-bottom: 20px;
}
.exit-popup-success h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 992px) {
    .footer-seo-label { min-width: 110px; }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .blog-sidebar article {
        flex: 1;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links, .header-cta { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero { padding: 80px 0; min-height: auto; text-align: center; }
    .hero-content { text-align: center; margin: 0 auto; }
    .hero h1 { font-size: 2.2rem; }
    .hero-stats { justify-content: center; flex-wrap: wrap; gap: 20px; }
    
    .search-box { border-radius: 20px; padding: 15px; }
    .search-form { flex-direction: column; }
    .search-input-group { padding: 0; }
    .search-box .btn { width: 100%; border-radius: 10px; }
    
    .section-title { font-size: 2.2rem; }
    .blog-title { font-size: 2rem; }
    
    .city-grid { grid-template-columns: 1fr; }

    .footer-seo-col {
        flex-direction: column;
        gap: 8px;
    }

    .footer-seo-label { min-width: unset; }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-nav { gap: 12px; }

    .footer-legal {
        flex-wrap: wrap;
        gap: 6px;
    }

    .cookie-banner {
        left: 8px;
        right: 8px;
        bottom: 8px;
        border-radius: 12px;
    }

    .cookie-container {
        padding: 16px 18px;
    }

    .cookie-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions .btn {
        width: 100%;
        text-align: center;
    }

    .modal-content {
        padding: 24px 20px;
        margin: 0 4px;
    }

    .article-body { padding: 25px; }
    .article-title { font-size: 2rem; }
    .article-testimonials-grid { grid-template-columns: 1fr; }
    .article-bottom-cta { padding: 30px 20px; }

    .exit-popup-content { padding: 30px 20px; }
    .exit-popup-header h2 { font-size: 1.6rem; }
}

/* =====================
   HELPERS
   ===================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }