/* ============================================================
   TravelGuides.ro — Global Stylesheet
   Version: 1.0 | 2026
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --bg: #faf9f6;
    --bg-warm: #f5f0e8;
    --bg-card: #ffffff;
    --bg-dark: #1a1a1a;

    --ocean: #1a7a8a;
    --ocean-light: #e0f4f5;
    --ocean-dark: #0f5460;
    --sunset: #e8734a;
    --sunset-light: #fde8e0;
    --forest: #2d6a4f;
    --forest-light: #d8f3dc;
    --sand: #d4a574;
    --sand-light: #f0e0cc;
    --purple: #8b5cf6;
    --purple-light: #ede9fe;

    --text: #1a1a1a;
    --text-sec: #5a5a5a;
    --text-muted: #8a8a8a;
    --border: #e8e4dd;
    --shadow-sm: 0 1px 8px rgba(0,0,0,0.04);
    --shadow: 0 2px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
    --r: 16px;
    --r-sm: 10px;
    --r-full: 9999px;

    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

html {
    scroll-behavior: smooth;
}

.article-content h2 {
    scroll-margin-top: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ocean); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ocean-dark); }

img { max-width: 100%; height: auto; }
.mono { font-family: var(--font-mono); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { letter-spacing: -0.02em; line-height: 1.25; }

p {
    text-indent: 2.5rem;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ocean);
    margin-bottom: 0.5rem;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}
.section-sub {
    font-size: 0.95rem;
    color: var(--text-sec);
    margin-bottom: 2rem;
}
.accent-gradient {
    background: linear-gradient(135deg, var(--ocean), var(--sunset));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.site-nav .brand {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--ocean-dark);
    letter-spacing: -0.03em;
    text-decoration: none;
}
.site-nav .brand span { color: var(--sunset); }

.nav-link-custom {
    color: var(--text-sec);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.nav-link-custom:hover {
    background: var(--ocean-light);
    color: var(--ocean-dark);
}
.nav-link-custom.active {
    background: var(--ocean-light);
    color: var(--ocean-dark);
    font-weight: 600;
}

/* Mobile hamburger */
.nav-toggle {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 1.1rem;
    color: var(--text-sec);
    cursor: pointer;
}
.nav-toggle:hover { border-color: var(--ocean); color: var(--ocean); }


/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-custom {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0;
    margin: 0;
}
.breadcrumb-custom a { color: var(--text-muted); text-decoration: none; }
.breadcrumb-custom a:hover { color: var(--ocean); }
.breadcrumb-custom .current { color: var(--ocean); font-weight: 600; }


/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero-home {
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--bg-warm) 50%, var(--sunset-light) 100%);
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}
.hero-home::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,115,74,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.hero-page {
    background: linear-gradient(135deg, var(--ocean-light) 0%, var(--bg-warm) 50%, var(--sunset-light) 100%);
    padding: 3rem 0 2rem;
    text-align: center;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
}
.hero-page-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}
.hero-sub {
    font-size: 1.05rem;
    color: var(--text-sec);
    max-width: 70%;
}
.hero-stats {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.hero-stats strong {
    display: block;
    font-size: 1.3rem;
    color: var(--ocean-dark);
    font-weight: 700;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-tg {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-primary-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,122,138,0.3);
    color: #fff;
}

.btn-secondary-tg {
    background: #fff;
    color: var(--ocean-dark);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1.5px solid var(--border);
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.btn-secondary-tg:hover {
    border-color: var(--ocean);
    color: var(--ocean);
}

.btn-calc {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-dark));
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.btn-calc:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26,122,138,0.25);
    color: #fff;
}


/* ============================================================
   CARDS
   ============================================================ */
.card-base {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}
.card-base:hover {
    box-shadow: var(--shadow);
}

/* Destination card */
.dest-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.5rem;
    transition: all 0.3s;
    display: block;
    color: var(--text);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.dest-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    color: var(--text);
    border-color: transparent;
}
.dest-card .emoji{
    display: inline-block;
    font-size: 1.5rem;
    line-height: 1;
    opacity: .75;
    margin-bottom: .35rem;
}
.dest-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.25rem; }
.dest-card .sub { font-size: 0.82rem; color: var(--text-muted); }
.dest-card .tag {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: var(--r-full);
}

/* Tool card */
.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem;
    transition: all 0.3s;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: var(--text);
    text-decoration: none;
}
.tool-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: var(--text);
    border-color: var(--ocean-light);
}
.tool-card .tool-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--ocean-light);
}
.tool-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.tool-card p { font-size: 0.85rem; color: var(--text-sec); margin: 0; }

.tool-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
}


/* ============================================================
   FORM ELEMENTS (Calculators)
   ============================================================ */
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-sec);
    margin-bottom: 0.4rem;
}
.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(26,122,138,0.1);
}

/* Step number badge */
.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ocean-light);
    color: var(--ocean);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    margin-right: 6px;
}

/* Toggle button grids */
.toggle-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.toggle-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.toggle-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }

.toggle-btn {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text-sec);
    font-size: 0.82rem;
    font-weight: 600;
}
.toggle-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.toggle-btn.active {
    background: var(--ocean-light);
    border-color: var(--ocean);
    color: var(--ocean-dark);
}
.toggle-btn .icon {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 4px;
}

.form-check-input:checked {
    background-color: var(--ocean);
    border-color: var(--ocean);
}


/* ============================================================
   RESULT CARDS
   ============================================================ */
.result-card {
    background: linear-gradient(135deg, var(--ocean-dark) 0%, #0f6875 100%);
    border-radius: var(--r);
    padding: 2rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.result-card::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.result-amount {
    font-family: var(--font-mono);
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
}
.result-amount small { font-size: 0.4em; opacity: 0.7; }

/* Breakdown items */
.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}
.breakdown-item:last-child { border-bottom: none; }
.breakdown-bar {
    height: 6px;
    border-radius: 3px;
    margin-top: 4px;
}


/* ============================================================
   INFO & ALERT BOXES
   ============================================================ */
.info-box {
    background: var(--ocean-light);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 0.85rem;
    color: var(--ocean-dark);
    border-left: 3px solid var(--ocean);
}


/* ============================================================
   FEATURE ICONS
   ============================================================ */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}


/* ============================================================
   TABLES
   ============================================================ */
.table-tg {
    border-radius: 12px;
    overflow: hidden;
    font-size: 0.88rem;
}
.table-tg thead th {
    background: var(--ocean-light);
    color: var(--ocean-dark);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--ocean);
    padding: 12px;
}
.table-tg td { padding: 10px 12px; }
.table-tg tbody tr:hover { background: var(--bg-warm); }


/* ============================================================
   ACCORDION (FAQ)
   ============================================================ */
.accordion-tg .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    margin-bottom: 8px;
}
.accordion-tg .accordion-button {
    background: var(--bg-card);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 12px !important;
    padding: 1rem 1.25rem;
}
.accordion-tg .accordion-button:not(.collapsed) {
    background: var(--ocean-light);
    color: var(--ocean-dark);
    box-shadow: none;
}
.accordion-tg .accordion-button:focus { box-shadow: none; }
.accordion-tg .accordion-body {
    color: var(--text-sec);
    font-size: 0.88rem;
    line-height: 1.8;
}


/* ============================================================
   CHECKLIST (interactive)
   ============================================================ */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    margin-bottom: 6px;
    transition: all 0.2s;
    cursor: pointer;
}
.checklist-item:hover { background: var(--ocean-light); border-color: var(--ocean); }
.checklist-item.checked {
    background: var(--forest-light);
    border-color: var(--forest);
    text-decoration: line-through;
    color: var(--text-muted);
}
.checklist-item .check-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.checklist-item.checked .check-box {
    background: var(--forest);
    border-color: var(--forest);
    color: #fff;
}


/* ============================================================
   AD SLOTS
   ============================================================ */
.ad-slot {
    background: var(--bg-warm);
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.78rem;
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-dark);
    color: #ccc;
    padding: 3rem 0 2rem;
    font-size: 0.85rem;
    margin-top: auto;
}
.site-footer a { color: #aaa; text-decoration: none; }
.site-footer a:hover { color: var(--sand); }
.site-footer h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-warm { background: var(--bg-warm) !important; }
.bg-ocean-light { background: var(--ocean-light) !important; }
.text-ocean { color: var(--ocean) !important; }
.text-ocean-dark { color: var(--ocean-dark) !important; }
.text-sunset { color: var(--sunset) !important; }
.text-forest { color: var(--forest) !important; }
.text-sec { color: var(--text-sec) !important; }
.text-muted-tg { color: var(--text-muted) !important; }
.fw-800 { font-weight: 800 !important; }

/* Guide article content */
.article-content { font-size: 0.94rem; color: var(--text-sec); line-height: 1.9; }
.article-content h2 { font-size: 1.3rem; color: var(--text); font-weight: 700; margin: 2rem 0 0.75rem; }
.article-content h3 { font-size: 1.1rem; color: var(--text); font-weight: 600; margin: 1.5rem 0 0.5rem; }
.article-content p { margin-bottom: 1rem; }
.article-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.article-content li { margin-bottom: 0.4rem; }
.article-content .highlight {
    padding: 14px 18px;
    background: var(--ocean-light);
    border-radius: 12px;
    border-left: 3px solid var(--ocean);
    margin: 1.5rem 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .hero-home { padding: 3.5rem 0 3rem; }
    .hero-stats { gap: 1.5rem; }
}

@media (max-width: 767px) {
    .hero-home { padding: 2.5rem 0 2rem; }
    .hero-stats { gap: 1rem; flex-wrap: wrap; }
    .card-base { padding: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .toggle-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .nav-desktop { display: none !important; }
}

@media (min-width: 768px) {
    .nav-mobile-toggle { display: none !important; }
}


/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.4s ease forwards; }


/* ============================================================
   GHIDURI
   ============================================================ */
/* Wrapper */
.tg-controls-wrap { margin-top: 1rem; }
/* Tabs */
.tg-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: .75rem;
}
.tg-tab {
    display: inline-block;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 600;
}
.tg-tab.is-active {
    background: var(--ocean-light);
    color: var(--ocean);
}

/* Controls card */
.tg-controls { padding: 1rem; }
.tg-controls__row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: end;
}
.tg-controls__col { min-width: 180px; }
.tg-controls__col--grow { flex: 1 1 260px; min-width: 220px; }
.tg-controls__col--btn { min-width: 120px; }
.tg-label {
    display: block;
    font-size: .78rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: .25rem;
}

.tg-empty-lead { max-width: 500px; margin: 0 auto 1.5rem; }

/* Tags (optional) */
.tag { display: inline-block; font-size: .72rem; padding: .25rem .5rem; border-radius: 999px; }
.tag--primary { background: var(--ocean-light); color: var(--ocean); }


/* ─── SIDEBAR TOC ─── */
.sidebar-wrap { position: sticky; top: 80px; }
.sidebar-toc { padding: 1.25rem; }
.sidebar-toc-title {
    font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.06em;
    color: var(--text-muted); margin-bottom: 0.75rem;
}
.sidebar-toc-link {
    display: block; font-size: 0.82rem; padding: 6px 10px;
    color: var(--text-sec); text-decoration: none;
    border-left: 3px solid transparent; border-radius: 0 6px 6px 0;
    transition: all 0.2s ease; line-height: 1.4;
}
.sidebar-toc-link:hover {
    color: var(--ocean); background: var(--ocean-light);
    border-left-color: var(--ocean);
}
.sidebar-toc-link.active {
    color: var(--ocean-dark); font-weight: 700;
    background: var(--ocean-light); border-left-color: var(--ocean);
}
.sidebar-tools { padding: 1.25rem; background: var(--ocean-light); margin-top: 0.75rem; }
.sidebar-tools-title {
    font-size: 0.82rem; font-weight: 700;
    color: var(--ocean-dark); margin-bottom: 0.5rem;
}
.sidebar-tools a {
    display: block; font-size: 0.82rem; padding: 3px 0;
    color: var(--ocean-dark); text-decoration: none;
}
.sidebar-tools a:hover { text-decoration: underline; }

.last-updated{
    font-size:0.85rem;color:var(--text-muted);
}
.p-125{
    padding:1.25rem;
}


/* ============================================================
   ERROR PAGES
   ============================================================ */
.error-section { padding: 5rem 0; text-align: center; }
.error-emoji { font-size: 6rem; line-height: 1; opacity: 0.2; margin-bottom: 1rem; }
.error-heading { font-size: 2rem; font-weight: 800; }
.error-desc { max-width: 450px; margin: 1rem auto 2rem; }


/* ============================================================
   FOOTER EXTRAS
   ============================================================ */
.footer-brand-accent { color: #d4a574; }
.footer-desc { font-size: 0.82rem; line-height: 1.7; color: #999; }
.footer-links { font-size: 0.82rem; }
.footer-divider { border-color: #333; margin: 1.5rem 0; }
.footer-copyright { font-size: 0.75rem; color: #666; }


/* ============================================================
   RESULT CARD INTERNALS
   ============================================================ */
.result-label { opacity: 0.6; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem; }
.result-sub { font-size: 0.85rem; opacity: 0.6; }
.result-detail { margin-top: 8px; font-size: 0.82rem; }


/* ============================================================
   BREAKDOWN EXTRAS
   ============================================================ */
.breakdown-heading { font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.breakdown-category { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.breakdown-category-spaced { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 12px 0 6px; }
.breakdown-sub { font-size: 0.78rem; color: var(--text-muted); }
.mono-600 { font-family: var(--font-mono); font-weight: 600; }


/* ============================================================
   PLACEHOLDER CARDS (empty state)
   ============================================================ */
.placeholder-card { min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.placeholder-card--sm { min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.placeholder-emoji { font-size: 3.5rem; margin-bottom: 1rem; opacity: 0.3; }
.placeholder-title { font-size: 1.05rem; font-weight: 600; }
.placeholder-desc { font-size: 0.85rem; }


/* ============================================================
   FORM EXTRAS
   ============================================================ */
.form-check-label-custom { font-size: 0.9rem; font-weight: 500; }
.form-label--lg { font-size: 1rem; }


/* ============================================================
   TIP / SFATURI CARDS
   ============================================================ */
.tip-emoji { font-size: 2rem; margin-bottom: 0.5rem; }
.tip-title { font-size: 1rem; font-weight: 700; }
.tip-text { font-size: 0.85rem; }
.tip-card { padding: 1.25rem; }
.tip-card-title { font-size: 1rem; font-weight: 700; }
.tip-card-desc { font-size: 0.88rem; }


/* ============================================================
   HOMEPAGE EXTRAS
   ============================================================ */
.hero-emoji { font-size: 8rem; line-height: 1; opacity: 0.8; }
.emoji-lg { font-size: 2rem; }
.feature-text { font-size: 0.88rem; }
.link-bold { font-weight: 600; font-size: 0.9rem; }
.feature-icon--sunset { background: var(--sunset-light); color: var(--sunset); }
.feature-icon--forest { background: var(--forest-light); color: var(--forest); }


/* ============================================================
   ARTICLE INDEX CARDS
   ============================================================ */
.article-card-link { text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.article-card-emoji { font-size: 2.5rem; margin-bottom: 0.75rem; }
.article-card-badge { font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 12px; background: var(--ocean-light); color: var(--ocean); display: inline-block; margin-bottom: 0.5rem; }
.article-card-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.article-card-desc { font-size: 0.85rem; margin-bottom: 0.75rem; }
.article-card-meta { font-size: 0.75rem; color: var(--text-muted); }
.cta-desc { max-width: 500px; margin: 0 auto 1.5rem; }


/* ============================================================
   CALCULATOARE INDEX
   ============================================================ */
.tool-detail-icon { font-size: 2.5rem; line-height: 1; }
.tool-detail-title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.tool-detail-tag { font-size: 0.68rem; font-weight: 700; padding: 3px 8px; border-radius: 12px; }
.tool-detail-desc { font-size: 0.88rem; margin-bottom: 0.75rem; }
.tool-feature-badge { font-size: 0.72rem; font-weight: 600; padding: 4px 10px; background: var(--bg-warm); border-radius: 8px; color: var(--text-sec); }
.btn-primary-tg--sm { font-size: 0.85rem; }
.btn-secondary-tg--sm { font-size: 0.82rem; padding: 10px 16px; }


/* ============================================================
   ARTICLE SIDEBAR
   ============================================================ */
.sidebar-sticky { position: sticky; top: 80px; }
.sidebar-heading { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 0.75rem; }
.sidebar-link { font-size: 0.82rem; padding: 4px 0; border-bottom: 1px solid var(--border); }
.sidebar-tools-heading { font-size: 0.82rem; font-weight: 700; color: var(--ocean-dark); margin-bottom: 0.5rem; }
.sidebar-tool-link { font-size: 0.82rem; padding: 3px 0; }


/* ============================================================
   HERO VARIANTS
   ============================================================ */
.hero-page--compact { padding: 3rem 0 2rem; }
.hero-page--guide { padding: 3.5rem 0 2.5rem; }
.hero-meta { font-size: 0.82rem; color: var(--text-muted); }


/* ============================================================
   GUIDE QUICK FACTS
   ============================================================ */
.fact-icon { font-size: 1.5rem; margin-bottom: 0.3rem; }
.fact-label { font-size: 0.72rem; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.fact-value { font-size: 1rem; font-weight: 700; color: var(--ocean-dark); margin-top: 0.25rem; }
.dest-emoji-lg { font-size: 3rem; margin-bottom: 0.5rem; }


/* ============================================================
   CHECKLIST EXTRAS
   ============================================================ */
.checklist-type-btn { padding: 14px 20px; }
.checklist-progress-label { font-size: 0.9rem; }
.progress-track { background: var(--border); height: 8px; border-radius: 4px; overflow: hidden; }
.progress-fill { background: var(--ocean); height: 100%; width: 0%; border-radius: 4px; transition: width 0.3s; }
.btn-check-all { font-size: 0.78rem; color: var(--forest); border: 1px solid var(--forest); border-radius: 8px; }
.btn-uncheck-all { font-size: 0.78rem; color: var(--sunset); border: 1px solid var(--sunset); border-radius: 8px; }
.checklist-category { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.checklist-text { font-size: 0.88rem; }


/* ============================================================
   COMPARATOR PRETURI
   ============================================================ */
.th-min-180 { min-width: 180px; }
.th-min-110 { min-width: 110px; }
.th-min-100 { min-width: 100px; }
.period-label { font-size: 0.68rem; display: block; }
.pack-type { font-size: 0.8rem; color: var(--text-muted); }
.savings-badge { background: var(--forest-light); color: var(--forest); font-weight: 700; font-size: 0.82rem; padding: 4px 10px; border-radius: 20px; display: inline-block; }
.savings-detail { font-size: 0.72rem; color: var(--forest); margin-top: 2px; }
.savings-card-emoji { font-size: 1.8rem; margin-bottom: 0.5rem; }
.savings-card-title { font-size: 0.9rem; font-weight: 700; }
.savings-card-amount { font-size: 1.8rem; font-weight: 700; color: var(--forest); margin: 0.5rem 0; }
.savings-card-label { font-size: 0.78rem; color: var(--text-muted); }
.savings-card-pct { background: var(--forest-light); color: var(--forest); font-weight: 700; font-size: 0.75rem; padding: 3px 8px; border-radius: 12px; }


/* ============================================================
   CONVERTOR FUS ORAR
   ============================================================ */
.tz-card-emoji { font-size: 1.5rem; margin-bottom: 0.3rem; }
.tz-card-city { font-size: 0.82rem; font-weight: 600; margin-bottom: 0.5rem; }
.tz-card-time { font-size: 1.6rem; font-weight: 700; color: var(--ocean); }
.conversion-source { font-size: 1.1rem; opacity: 0.7; margin: 0.5rem 0; }
.conversion-equals { font-size: 1.5rem; opacity: 0.5; }
.conversion-detail { margin-top: 10px; font-size: 0.82rem; opacity: 0.6; }


/* ============================================================
   BACSIS CALCULATOR
   ============================================================ */
.bacsis-detail { font-size: 0.9rem; opacity: 0.7; margin-top: 4px; }
.bacsis-summary { margin-top: 12px; font-size: 0.85rem; }
.etiquette-heading { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
.etiquette-desc { font-size: 0.88rem; margin-bottom: 0.75rem; }


/* ============================================================
   WARNING & NOTE BOXES
   ============================================================ */
.warning-box { padding: 1rem 1.25rem; background: #fef3c7; border-left: 4px solid #f59e0b; border-radius: 0 10px 10px 0; margin-bottom: 1.5rem; }
.note-box { padding: 12px; background: var(--ocean-light); border-radius: 10px; border-left: 3px solid var(--ocean); margin-top: 1.5rem; }


/* ============================================================
   ANIMATION DELAYS
   ============================================================ */
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.15s; }
.anim-delay-3 { animation-delay: 0.2s; }
.anim-delay-4 { animation-delay: 0.25s; }

/* ============================================================
   Badges
   ============================================================ */
.badge-diff {
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
}

.badge-diff-div {
    font-size: 0.72rem;
    margin-top: 4px;
    display: inline-block;
}

.badge-diff-span {
    font-size: 0.78rem;
}

/* Variatii culoare */
.badge-diff-zero {
    background: var(--forest-light);
    color: var(--forest);
}

.badge-diff-positive {
    background: var(--sunset-light);
    color: var(--sunset);
}

.badge-diff-negative {
    background: var(--ocean-light);
    color: var(--ocean);
}
/* Status */
.badge-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}
.badge-status-lg {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
}
/* Statusuri */
.badge-status-obligatoriu {
    background: #fee2e2;
    color: #dc2626;
}

.badge-status-asteptat {
    background: var(--sunset-light);
    color: var(--sunset);
}

.badge-status-apreciat {
    background: var(--ocean-light);
    color: var(--ocean);
}

.badge-status-inclus {
    background: var(--forest-light);
    color: var(--forest);
}

.badge-status-default {
    background: #f3f4f6;
    color: #6b7280;
}

.badge-status-green {
    background: var(--forest-light);
    color: var(--forest);
}


/* ============================================================
   HOLIDAY CALCULATOR
   ============================================================ */
.holiday-row-weekend { opacity: 0.6; }


/* ============================================================
   TIPS
   ============================================================ */
.pct {
    font-weight: 600;
}

.pct-high {
    color: var(--sunset);
}

.pct-medium {
    color: var(--ocean);
}

.pct-low {
    color: var(--forest);
}

.pct-zero {
    color: var(--text-muted);
}
