/* ============================================================
   inkontinenca.com — style.css
   Paletë: e bardhë / blu mjekësore / jeshile e butë + accent
   CONFIG: ndryshoni variablat :root për rebranding të shpejtë
   ============================================================ */

/* === VARIABLAT === */
:root {
  --color-primary: #1a5fa8;
  --color-primary-dark: #0d3f73;
  --color-primary-light: #e8f1fb;
  --color-accent: #25a89a;
  --color-accent-light: #e6f7f6;
  --color-whatsapp: #25D366;
  --color-whatsapp-dark: #1da850;
  --color-text: #1a1a2e;
  --color-text-light: #4a5568;
  --color-text-muted: #718096;
  --color-bg: #ffffff;
  --color-bg-soft: #f8fafc;
  --color-bg-section: #f0f5ff;
  --color-border: #e2e8f0;
  --color-success: #38a169;
  --color-warning: #d69e2e;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1180px;
  --header-height: 68px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); text-decoration: underline; }
ul, ol { padding-left: 1.4em; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 700; color: var(--color-text); margin-bottom: 0.75rem; }
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

/* === LAYOUT === */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 4.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-alt { background: var(--color-bg-section); }
.section-dark { background: var(--color-primary); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }

/* === TIPOGRAFI === */
.lead { font-size: 1.15rem; color: var(--color-text-light); line-height: 1.8; }
.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.tag { display: inline-block; background: var(--color-primary-light); color: var(--color-primary); font-size: 0.78rem; font-weight: 600; padding: 0.2rem 0.7rem; border-radius: 100px; letter-spacing: 0.03em; text-transform: uppercase; }
.tag-accent { background: var(--color-accent-light); color: var(--color-accent); }

/* === HEADER === */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-height);
  display: flex; align-items: center;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem;
}
.logo {
  font-size: 1.55rem; font-weight: 700; color: var(--color-primary);
  letter-spacing: -0.02em; text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--color-primary-dark); }
.logo span { color: var(--color-accent); }

.site-nav { display: flex; align-items: center; gap: 0.2rem; }
.site-nav a {
  font-size: 0.875rem; font-weight: 500; color: var(--color-text);
  padding: 0.4rem 0.65rem; border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--color-primary-light); color: var(--color-primary); text-decoration: none;
}
.nav-cta {
  background: var(--color-whatsapp) !important; color: #fff !important;
  padding: 0.45rem 1rem !important; border-radius: 100px !important; font-weight: 600 !important;
  margin-left: 0.5rem;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--color-whatsapp-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 4px; cursor: pointer;
  background: none; border: none; padding: 0.4rem;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* === MOBILE NAV === */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .site-nav {
    display: none; position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 1.5rem 1.25rem; gap: 0.5rem; overflow-y: auto;
    border-top: 1px solid var(--color-border); z-index: 999;
  }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1rem; width: 100%; padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
  .nav-cta { margin-left: 0 !important; margin-top: 0.5rem; text-align: center !important; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem; border-radius: 100px;
  padding: 0.75rem 1.75rem; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-whatsapp { background: var(--color-whatsapp); color: #fff; }
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--color-primary); border: 2px solid var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; text-decoration: none; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff; padding: 5rem 0 4rem; overflow: hidden; position: relative;
}
.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.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; position: relative; }
.hero-content h1 { color: #fff; font-size: clamp(1.8rem, 4.5vw, 2.8rem); margin-bottom: 1rem; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 1.5rem; line-height: 1.8; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }
.hero-badge { background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: #fff; border-radius: 100px; padding: 0.35rem 0.9rem; font-size: 0.82rem; font-weight: 600; }
.hero-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-image img { width: 100%; height: 420px; object-fit: cover; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { height: 250px; }
  .hero { padding: 3rem 0 2.5rem; }
}

/* === TRUST STATS === */
.stats-bar { background: var(--color-primary-dark); padding: 1.5rem 0; }
.stats-inner { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.stat-item { text-align: center; color: #fff; }
.stat-item strong { display: block; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.stat-item span { font-size: 0.82rem; opacity: 0.8; margin-top: 0.25rem; display: block; }

/* === CARDS === */
.cards-grid { display: grid; gap: 1.5rem; }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md);
  padding: 1.75rem; transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { width: 48px; height: 48px; background: var(--color-primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.4rem; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--color-text-light); margin-bottom: 0; }
.card a.card-link { display: inline-block; margin-top: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--color-primary); }
.card-img img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-sm); margin-bottom: 1rem; }

@media (max-width: 900px) {
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cards-grid-4, .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
}

/* === SECTION TITLE === */
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title .tag { margin-bottom: 0.75rem; }
.section-title h2 { margin-bottom: 0.5rem; }
.section-title p { color: var(--color-text-light); max-width: 600px; margin: 0 auto; }

/* === DOCTOR BIO === */
.doctor-section { display: grid; grid-template-columns: 340px 1fr; gap: 3rem; align-items: start; }
.doctor-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.doctor-img img { width: 100%; height: 420px; object-fit: cover; }
.doctor-info h2 { margin-bottom: 0.5rem; }
.doctor-title { color: var(--color-accent); font-weight: 600; margin-bottom: 1rem; }
.doctor-list { list-style: none; padding: 0; margin: 1rem 0; }
.doctor-list li { padding: 0.5rem 0; border-bottom: 1px solid var(--color-border); display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.95rem; }
.doctor-list li:last-child { border-bottom: none; }
.doctor-list li::before { content: '✓'; color: var(--color-success); font-weight: 700; flex-shrink: 0; margin-top: 0.1rem; }
.rating { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: 100px; padding: 0.4rem 0.9rem; font-weight: 700; font-size: 0.9rem; margin-top: 1rem; }
.stars { color: #f6ad55; font-size: 1rem; }

@media (max-width: 768px) {
  .doctor-section { grid-template-columns: 1fr; }
  .doctor-img img { height: 280px; }
}

/* === FAQ ACCORDION === */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--color-border); border-radius: var(--radius-md); margin-bottom: 0.75rem; overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; background: #fff; border: none; cursor: pointer;
  padding: 1.1rem 1.25rem; font-size: 0.975rem; font-weight: 600; color: var(--color-text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: background 0.15s;
}
.faq-question:hover { background: var(--color-bg-soft); }
.faq-question[aria-expanded="true"] { background: var(--color-primary-light); color: var(--color-primary); }
.faq-icon { font-size: 1.2rem; line-height: 1; flex-shrink: 0; transition: transform 0.25s; font-weight: 700; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.1rem; font-size: 0.925rem; color: var(--color-text-light); line-height: 1.75; }
.faq-answer.open { display: block; }

/* === BLOG CARDS === */
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-img img { height: 180px; }
.blog-card .card-meta { font-size: 0.8rem; color: var(--color-text-muted); margin-bottom: 0.4rem; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.blog-card p { font-size: 0.875rem; color: var(--color-text-light); flex: 1; }
.blog-card .card-link { margin-top: auto; padding-top: 0.75rem; font-size: 0.875rem; }

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  border-radius: var(--radius-lg); padding: 3rem 2rem; text-align: center; color: #fff;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.88); margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* === WHATSAPP FLOATING === */
/* CONFIG: numri WhatsApp ndodhet këtu dhe te çdo href në HTML */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 9999;
  width: 58px; height: 58px; background: var(--color-whatsapp);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.6); text-decoration: none; }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-tooltip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: #1a1a2e; color: #fff; font-size: 0.78rem; font-weight: 600;
  white-space: nowrap; padding: 0.35rem 0.75rem; border-radius: 100px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* === BREADCRUMBS === */
.breadcrumbs { padding: 0.75rem 0; font-size: 0.82rem; color: var(--color-text-muted); }
.breadcrumbs a { color: var(--color-text-muted); }
.breadcrumbs a:hover { color: var(--color-primary); }
.breadcrumbs span { color: var(--color-text-muted); margin: 0 0.35rem; }

/* === ARTICLE / BLOG PAGE === */
.article-header { padding: 3rem 0 2rem; background: var(--color-bg-section); }
.article-header .breadcrumbs { margin-bottom: 1rem; }
.article-meta { font-size: 0.82rem; color: var(--color-text-muted); margin-top: 0.75rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 0.35rem; }

.article-body { max-width: 760px; }
.article-body h2 { margin-top: 2.25rem; margin-bottom: 0.75rem; padding-top: 2rem; border-top: 1px solid var(--color-border); }
.article-body h2:first-of-type { border-top: none; padding-top: 0; }
.article-body h3 { margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--color-primary); }
.article-body ul, .article-body ol { margin-bottom: 1rem; }
.article-body li { margin-bottom: 0.35rem; }
.article-body strong { color: var(--color-text); }

.toc {
  background: var(--color-bg-soft); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 1.5rem; margin: 2rem 0;
}
.toc h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.toc ol { margin: 0; }
.toc li { font-size: 0.9rem; margin-bottom: 0.35rem; }

.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.article-sidebar { position: sticky; top: calc(var(--header-height) + 1rem); height: fit-content; }
.sidebar-card { background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: 1rem; }
.sidebar-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-text-muted); margin-bottom: 0.75rem; }
.sidebar-card a { display: block; font-size: 0.875rem; padding: 0.3rem 0; border-bottom: 1px solid var(--color-border); color: var(--color-text-light); }
.sidebar-card a:last-child { border-bottom: none; }
.sidebar-card a:hover { color: var(--color-primary); text-decoration: none; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

/* === DISCLAIMER === */
.disclaimer {
  background: #fff9e6; border: 1px solid #f6d860; border-radius: var(--radius-md);
  padding: 1rem 1.25rem; font-size: 0.85rem; color: #744210;
  display: flex; gap: 0.75rem; align-items: flex-start; margin: 2rem 0;
}
.disclaimer strong { display: block; margin-bottom: 0.25rem; }

/* === RELATED ARTICLES === */
.related-articles { border-top: 1px solid var(--color-border); padding-top: 2rem; margin-top: 2.5rem; }
.related-articles h3 { margin-bottom: 1.25rem; }
.related-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-link { display: block; padding: 0.9rem 1rem; background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 500; color: var(--color-text); transition: all 0.15s; }
.related-link:hover { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; border-color: var(--color-primary); }

@media (max-width: 600px) {
  .related-list { grid-template-columns: 1fr; }
}

/* === TEST PAGES === */
.test-page { max-width: 680px; margin: 0 auto; }
.test-warning { background: #fff3cd; border: 1px solid #ffc107; border-radius: var(--radius-md); padding: 1rem 1.25rem; font-size: 0.875rem; color: #664d03; margin-bottom: 2rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.test-form { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; }
.test-question { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--color-border); }
.test-question:last-child { border-bottom: none; margin-bottom: 0; }
.test-question p { font-weight: 600; margin-bottom: 0.75rem; font-size: 0.95rem; }
.test-options { display: flex; flex-direction: column; gap: 0.4rem; }
.test-option { display: flex; align-items: center; gap: 0.6rem; }
.test-option label { font-size: 0.9rem; cursor: pointer; color: var(--color-text-light); }
.test-option input[type="radio"] { accent-color: var(--color-primary); width: 16px; height: 16px; cursor: pointer; }
.test-submit { width: 100%; padding: 1rem; background: var(--color-primary); color: #fff; border: none; border-radius: 100px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-top: 1.5rem; }
.test-submit:hover { background: var(--color-primary-dark); }
.test-result { display: none; margin-top: 1.5rem; padding: 1.5rem; border-radius: var(--radius-md); text-align: center; }
.test-result.show { display: block; }
.test-result.level-1 { background: #f0fff4; border: 1px solid #38a169; }
.test-result.level-2 { background: #fff9e6; border: 1px solid #d69e2e; }
.test-result.level-3 { background: #fffaf0; border: 1px solid #ed8936; }
.test-result.level-4 { background: #fff5f5; border: 1px solid #e53e3e; }
.result-score { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }
.result-label { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.result-desc { font-size: 0.9rem; margin-bottom: 1.25rem; }

/* === STEPS === */
.steps-list { counter-reset: steps; list-style: none; padding: 0; }
.step-item { display: flex; gap: 1.25rem; margin-bottom: 1.5rem; align-items: flex-start; }
.step-num {
  counter-increment: steps; content: counter(steps);
  width: 44px; height: 44px; min-width: 44px; background: var(--color-primary);
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.step-content h4 { margin-bottom: 0.25rem; }
.step-content p { font-size: 0.9rem; color: var(--color-text-light); margin: 0; }

/* === WHY US === */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1.25rem; background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius-md); }
.why-icon { font-size: 1.75rem; min-width: 2rem; }
.why-item h4 { margin-bottom: 0.25rem; }
.why-item p { font-size: 0.875rem; color: var(--color-text-light); margin: 0; }

@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

/* === CONTACT PAGE === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-info { background: var(--color-bg-soft); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 2rem; }
.contact-info h3 { margin-bottom: 1.25rem; }
.contact-info-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.1rem; font-size: 0.925rem; }
.contact-info-icon { font-size: 1.1rem; min-width: 1.25rem; margin-top: 0.1rem; }
.map-wrapper { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--color-border); }
.map-wrapper iframe { width: 100%; height: 360px; border: none; display: block; }

@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* === BLOG INDEX === */
.blog-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: 0.4rem 1rem; border: 1px solid var(--color-border); border-radius: 100px; background: #fff; font-size: 0.85rem; cursor: pointer; font-family: inherit; transition: all 0.15s; }
.filter-btn:hover, .filter-btn.active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

/* === FOOTER === */
.site-footer { background: var(--color-text); color: rgba(255,255,255,0.75); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { color: #fff; font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: color 0.15s; }
.footer-col ul li a:hover { color: #fff; text-decoration: none; }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.6rem; font-size: 0.875rem; color: rgba(255,255,255,0.7); }
.footer-contact-item a { color: rgba(255,255,255,0.7); }
.footer-contact-item a:hover { color: #fff; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  color: rgba(255,255,255,0.7); transition: background 0.15s;
}
.footer-social a:hover { background: var(--color-primary); color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.8); }
.footer-rating { display: inline-flex; align-items: center; gap: 0.4rem; color: #f6ad55; font-size: 0.82rem; }
.footer-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.5rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--color-text); color: rgba(255,255,255,0.9);
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.35s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; flex: 1; margin: 0; }
.cookie-banner a { color: #fff; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.btn-cookie-accept { background: var(--color-primary); color: #fff; border: none; padding: 0.45rem 1.1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); padding: 0.45rem 1rem; border-radius: 100px; font-size: 0.85rem; cursor: pointer; }
.btn-cookie-accept:hover { background: var(--color-primary-dark); }
.btn-cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

/* === LEGAL PAGES === */
.legal-content { max-width: 760px; }
.legal-content h2 { margin-top: 2rem; }
.legal-content h3 { margin-top: 1.5rem; color: var(--color-primary); }

/* === 404 PAGE === */
.page-404 { text-align: center; padding: 6rem 0; }
.page-404 .err-code { font-size: 6rem; font-weight: 700; color: var(--color-primary-light); line-height: 1; }
.page-404 h1 { font-size: 2rem; margin-bottom: 1rem; }
.page-404 p { color: var(--color-text-light); margin-bottom: 2rem; }

/* === UTILITY === */
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.gap-1 { gap: 0.5rem; } .gap-2 { gap: 1rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .items-center { align-items: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* === PILLAR PAGE === */
.pillar-intro { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; align-items: start; }
.pillar-intro img { border-radius: var(--radius-md); box-shadow: var(--shadow-md); }
.pillar-content h1 { margin-bottom: 1rem; }
.pillar-content p { color: var(--color-text-light); }

@media (max-width: 768px) {
  .pillar-intro { grid-template-columns: 1fr; }
}

/* === PRINT === */
@media print {
  .site-header, .site-footer, .whatsapp-float, .cookie-banner, .cta-banner { display: none !important; }
  body { font-size: 12pt; }
  a { color: inherit; text-decoration: none; }
}
