/* ============================================
   Clinica Armonia – Stiluri globale
   Paletă: verde închis + alb + accente crem
   ============================================ */

:root {
    --green-darkest: #1c3a2e;
    --green-dark: #2d5240;
    --green-medium: #4a7560;
    --green-light: #8aae9c;
    --green-pale: #e8f0eb;
    --cream: #f7f5f0;
    --gold: #b8956a;
    --white: #ffffff;
    --text-dark: #1f2a25;
    --text-muted: #5a6962;
    --shadow-sm: 0 2px 8px rgba(28, 58, 46, 0.06);
    --shadow-md: 0 8px 24px rgba(28, 58, 46, 0.10);
    --shadow-lg: 0 16px 48px rgba(28, 58, 46, 0.14);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 500;
    color: var(--green-darkest);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

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

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

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

/* ============================================
   Navigare
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(28, 58, 46, 0.06);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-darkest);
}

.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color var(--transition);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--green-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--green-dark);
    color: white !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-cta:hover {
    background: var(--green-darkest);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after { display: none; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--green-darkest);
    position: absolute;
    left: 0;
    transition: all var(--transition);
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg); top: 10px; }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg); top: 10px; }

@media (max-width: 880px) {
    .nav-toggle { display: block; }
    .nav-links {
        position: fixed;
        top: 72px;
        right: 0;
        background: white;
        flex-direction: column;
        width: 280px;
        height: calc(100vh - 72px);
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition);
        align-items: flex-start;
    }
    .nav-links.open { transform: translateX(0); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.01em;
    font-family: inherit;
}

.btn-primary {
    background: var(--green-dark);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--green-darkest);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--green-darkest);
    border: 1.5px solid var(--green-dark);
}

.btn-outline:hover {
    background: var(--green-dark);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 880px) {
    .hero-grid { grid-template-columns: 1fr; gap: 50px; }
    .hero { padding: 130px 0 80px; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green-medium);
    font-weight: 600;
    margin-bottom: 20px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--green-medium);
}

.hero h1 {
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--green-medium);
    font-weight: 400;
}

.hero-lead {
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    box-shadow: var(--shadow-lg);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(28, 58, 46, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-image-photo {
    background: var(--green-pale);
}

.hero-image-photo::after { display: none; }

.hero-image-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image .leaf {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid var(--green-pale);
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   Generic section
   ============================================ */
.section {
    padding: 120px 0;
}

.section-tight { padding: 80px 0; }

.section-alt {
    background: var(--cream);
}

.section-dark {
    background: var(--green-darkest);
    color: white;
}

.section-dark h2,
.section-dark h3 { color: white; }

.section-dark p { color: rgba(255, 255, 255, 0.75); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.section-header p {
    margin-top: 18px;
    font-size: 1.05rem;
}

/* ============================================
   Services grid (homepage teaser + full page)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.service-card {
    background: white;
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--green-pale);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--green-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--green-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-icon {
    background: var(--green-dark);
    color: white;
    transform: rotate(-6deg) scale(1.05);
}

.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; }

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--green-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

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

.service-link:hover::after { transform: translateX(4px); }

/* ============================================
   Service detail (full page) – alternating rows
   ============================================ */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--green-pale);
}

.service-row:last-child { border-bottom: none; }

.service-row.reverse .service-text { order: 2; }

@media (max-width: 880px) {
    .service-row { grid-template-columns: 1fr; gap: 30px; }
    .service-row.reverse .service-text { order: initial; }
}

.service-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-visual-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.7);
}

.service-visual-photo {
    background: var(--green-pale);
}

.service-visual-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-text h2 { margin-bottom: 20px; }

.service-text ul {
    list-style: none;
    margin-top: 24px;
}

.service-text li {
    position: relative;
    padding: 10px 0 10px 28px;
    color: var(--text-muted);
    border-bottom: 1px dashed var(--green-pale);
}

.service-text li:last-child { border-bottom: none; }

.service-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--green-dark);
    font-weight: 700;
}

/* ============================================
   Specialists
   ============================================ */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.specialist-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--green-pale);
}

.specialist-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.specialist-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--green-pale), var(--green-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--green-darkest);
    position: relative;
    overflow: hidden;
}

.specialist-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
}

.specialist-info {
    padding: 28px;
}

.specialist-info h3 { margin-bottom: 4px; }

.specialist-role {
    font-size: 0.85rem;
    color: var(--green-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-weight: 600;
}

.specialist-bio {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.specialist-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    font-size: 0.78rem;
    padding: 5px 12px;
    background: var(--green-pale);
    color: var(--green-darkest);
    border-radius: 100px;
    font-weight: 500;
}

/* Detailed specialist (full page) */
.specialist-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding: 50px 0;
    border-bottom: 1px solid var(--green-pale);
}

.specialist-detail:last-child { border-bottom: none; }

@media (max-width: 880px) {
    .specialist-detail { grid-template-columns: 1fr; }
}

.specialist-detail .specialist-photo {
    border-radius: var(--radius-md);
    aspect-ratio: 1;
}

.specialist-detail h2 { margin-bottom: 6px; }

.detail-credentials {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--green-pale);
    border-bottom: 1px solid var(--green-pale);
}

.detail-credentials div { font-size: 0.9rem; }

.detail-credentials strong { color: var(--green-darkest); }

.specialist-detail h4 {
    color: var(--green-darkest);
    margin: 24px 0 12px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.specialist-detail ul {
    list-style: none;
    margin-bottom: 16px;
}

.specialist-detail li {
    position: relative;
    padding: 6px 0 6px 22px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.specialist-detail li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: var(--green-medium);
    font-size: 1.2rem;
    line-height: 1;
}

/* ============================================
   Blog
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
    border: 1px solid var(--green-pale);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.blog-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--green-medium), var(--green-darkest));
    position: relative;
    overflow: hidden;
    color: transparent;
    font-size: 0;
}

.blog-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    z-index: 1;
}

.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40% auto;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-image::after {
    transform: scale(1.08);
}

.blog-image[data-icon="anxiety"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M28 50 C25 44 30 36 38 38 C40 32 50 30 56 35 C66 32 72 40 70 48 C75 52 72 62 64 60 L38 60 C30 62 24 56 28 50 Z'/><line x1='38' y1='66' x2='35' y2='78'/><line x1='50' y1='66' x2='47' y2='78'/><line x1='62' y1='66' x2='59' y2='78'/></svg>");
}

.blog-image[data-icon="relations"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='32' cy='34' r='9'/><path d='M18 72 C18 52 46 52 46 72'/><circle cx='68' cy='34' r='9'/><path d='M54 72 C54 52 82 52 82 72'/><path d='M44 56 L56 56'/></svg>");
}

.blog-image[data-icon="parenting"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='34' cy='28' r='10'/><path d='M18 78 C18 50 50 50 50 78'/><circle cx='68' cy='48' r='6'/><path d='M58 78 C58 62 78 62 78 78'/><path d='M50 64 L62 60'/></svg>");
}

.blog-image[data-icon="burnout"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M30 18 L70 18 L70 26 L55 50 L70 74 L70 82 L30 82 L30 74 L45 50 L30 26 Z'/><circle cx='50' cy='52' r='2' fill='white' stroke='none'/><circle cx='50' cy='62' r='2' fill='white' stroke='none'/><circle cx='46' cy='58' r='1.5' fill='white' stroke='none'/></svg>");
}

.blog-image[data-icon="depression"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M28 22 C24 19 28 14 33 14 C37 10 47 12 49 18 C57 14 68 18 65 26 L28 26 Z'/><line x1='34' y1='32' x2='32' y2='40'/><line x1='48' y1='32' x2='46' y2='40'/><line x1='62' y1='32' x2='60' y2='40'/><circle cx='50' cy='58' r='9'/><path d='M40 80 C40 70 60 70 60 80 L60 86 L40 86 Z'/></svg>");
}

.blog-image[data-icon="mindfulness"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='50' cy='50' r='4' fill='white' stroke='none'/><circle cx='50' cy='50' r='12'/><circle cx='50' cy='50' r='22'/><circle cx='50' cy='50' r='32' stroke-dasharray='3 4'/></svg>");
}

.blog-image[data-icon="self-esteem"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='50' cy='32' r='9'/><path d='M50 41 L50 70'/><path d='M50 50 L28 28'/><path d='M50 50 L72 28'/><path d='M50 70 L38 86'/><path d='M50 70 L62 86'/></svg>");
}

.blog-image[data-icon="trauma"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M50 80 C18 64 18 30 36 30 C43 30 48 36 50 42 C52 36 57 30 64 30 C82 30 82 64 50 80 Z'/><path d='M50 36 L44 50 L54 56 L48 70'/></svg>");
}

.blog-image[data-icon="couple"]::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><circle cx='32' cy='32' r='8'/><path d='M20 68 C20 50 44 50 44 68'/><circle cx='68' cy='32' r='8'/><path d='M56 68 C56 50 80 50 80 68'/><path d='M50 50 C45 46 45 40 50 40 C54 40 56 44 56 46 C56 51 50 56 50 56 C50 56 44 51 44 46 C44 44 46 40 50 40'/></svg>");
}

.blog-content {
    padding: 28px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 0.82rem;
    color: var(--green-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card h3 {
    margin-bottom: 12px;
    transition: color var(--transition);
}

.blog-card:hover h3 { color: var(--green-medium); }

.blog-excerpt {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

/* ============================================
   Contact
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

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

.contact-info-block {
    padding: 40px;
    background: var(--green-darkest);
    color: white;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.contact-info-block::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.contact-info-block h2 { color: white; margin-bottom: 30px; position: relative; }

.contact-info-block p { color: rgba(255, 255, 255, 0.8); position: relative; }

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 28px;
    position: relative;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-item-text strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.contact-item-text span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
}

/* Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--green-pale);
}

.contact-form h2 { margin-bottom: 8px; }

.contact-form > p { margin-bottom: 28px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-field {
    margin-bottom: 18px;
    position: relative;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green-darkest);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--green-pale);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--green-dark);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 82, 64, 0.08);
}

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

.form-success {
    background: var(--green-pale);
    color: var(--green-darkest);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--green-dark);
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: none;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-success.visible { display: block; }

.btn-submit { width: 100%; }

/* Map */
.map-block {
    margin-top: 80px;
}

.map-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--green-pale);
    height: 450px;
    position: relative;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.85);
    transition: filter var(--transition);
}

.map-wrapper:hover iframe { filter: saturate(1); }

/* ============================================
   CTA section
   ============================================ */
.cta-band {
    background: var(--green-darkest);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before,
.cta-band::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.cta-band::before { top: -150px; left: -100px; }
.cta-band::after { bottom: -150px; right: -100px; }

.cta-band h2 { color: white; margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.75); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .btn-primary { background: white; color: var(--green-darkest); }
.cta-band .btn-primary:hover { background: var(--cream); }

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

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #14241c;
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

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

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-brand p { font-size: 0.92rem; margin-top: 16px; }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 0.92rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--green-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   Page header (sub-pages)
   ============================================ */
.page-header {
    padding: 140px 0 70px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--green-pale) 0%, transparent 60%);
    opacity: 0.5;
    z-index: 0;
}

.page-header > * { position: relative; z-index: 1; }

.page-header h1 { margin-bottom: 16px; }

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================
   Reveal animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float { animation: float 6s ease-in-out infinite; }

@keyframes pulse-soft {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   Floating "Suna acum" button
   ============================================ */
.floating-call {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--green-dark);
    color: white !important;
    padding: 14px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(28, 58, 46, 0.25);
    transition: all var(--transition);
    text-decoration: none;
}

.floating-call::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 100px;
    background: var(--green-dark);
    opacity: 0.25;
    z-index: -1;
    animation: pulse-ring 2.4s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.4; }
    70% { transform: scale(1.25); opacity: 0; }
    100% { transform: scale(1.25); opacity: 0; }
}

.floating-call:hover {
    background: var(--green-darkest);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28, 58, 46, 0.35);
}

.floating-call svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .floating-call {
        padding: 14px;
        bottom: 16px;
        right: 16px;
    }
    .floating-call span { display: none; }
}

/* Hero "Suna acum" inline button variant */
.btn-call {
    background: white;
    color: var(--green-darkest) !important;
    border: 1.5px solid var(--green-dark);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-call:hover {
    background: var(--green-dark);
    color: white !important;
}

.btn-call svg { width: 18px; height: 18px; }

/* ============================================
   Blog article (single post)
   ============================================ */
.article-hero {
    padding: 130px 0 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    position: relative;
}

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

.breadcrumbs a {
    color: var(--green-medium);
    transition: color var(--transition);
}

.breadcrumbs a:hover { color: var(--green-darkest); }

.breadcrumbs span { color: var(--green-light); }

.article-meta-top {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--green-medium);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 16px;
}

.article-meta-top .tag {
    background: var(--green-dark);
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
}

.article-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
    max-width: 850px;
}

.article-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 720px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.article-author {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid var(--green-pale);
    border-bottom: 1px solid var(--green-pale);
    margin-bottom: 40px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-medium), var(--green-darkest));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

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

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

.article-cover {
    width: 100%;
    aspect-ratio: 21/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 60px;
    background: var(--green-pale);
    position: relative;
}

.article-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 600px) {
    .article-cover { aspect-ratio: 4/3; }
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 100px;
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-dark);
}

.article-body p {
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-body p.lead {
    font-size: 1.25rem;
    color: var(--green-darkest);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 500;
}

.article-body h2 {
    font-size: 1.8rem;
    margin: 50px 0 20px;
}

.article-body h3 {
    font-size: 1.3rem;
    margin: 36px 0 14px;
    color: var(--green-darkest);
}

.article-body ul,
.article-body ol {
    margin: 0 0 28px 24px;
    color: var(--text-dark);
}

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

.article-body strong { color: var(--green-darkest); }

.article-body em { color: var(--green-medium); }

.article-body figure {
    margin: 40px -40px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.article-body figure img {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: var(--green-pale);
}

.article-body figcaption {
    background: var(--cream);
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    border-top: 1px solid var(--green-pale);
}

@media (max-width: 880px) {
    .article-body figure { margin: 36px 0; }
}

.pull-quote {
    margin: 48px -20px;
    padding: 36px 40px;
    background: var(--green-pale);
    border-left: 4px solid var(--green-dark);
    border-radius: var(--radius-sm);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--green-darkest);
    font-style: italic;
    position: relative;
}

.pull-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--green-dark);
    opacity: 0.3;
    line-height: 1;
}

@media (max-width: 600px) {
    .pull-quote { margin: 36px 0; padding: 28px 24px; font-size: 1.25rem; }
}

.callout {
    background: var(--cream);
    border: 1px solid var(--green-pale);
    border-radius: var(--radius-md);
    padding: 26px 30px;
    margin: 36px 0;
}

.callout h4 {
    color: var(--green-darkest);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.callout h4::before {
    content: '✦';
    color: var(--green-dark);
    font-size: 1.2rem;
}

.callout p { margin-bottom: 0; font-size: 0.98rem; }

.article-end {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--green-pale);
    text-align: center;
}

.article-end p {
    font-style: italic;
    color: var(--green-medium);
    margin-bottom: 24px;
}

/* Related articles */
.related-section {
    background: var(--cream);
    padding: 80px 0;
}

.related-section h2 {
    text-align: center;
    margin-bottom: 50px;
}

/* ============================================
   Admin page
   ============================================ */
.admin-page {
    background: var(--cream);
    min-height: 100vh;
    padding: 140px 0 60px;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: white;
    padding: 22px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.admin-toolbar h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

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

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: white;
    padding: 22px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--green-dark);
}

.admin-stat-card .stat-num {
    font-size: 2rem;
    text-align: left;
}

.admin-stat-card .stat-label {
    text-align: left;
    font-size: 0.78rem;
}

.appointments-table-wrapper {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.appointments-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.appointments-table thead {
    background: var(--green-darkest);
    color: white;
}

.appointments-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.appointments-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--green-pale);
    color: var(--text-dark);
    vertical-align: top;
}

.appointments-table tbody tr {
    transition: background var(--transition);
}

.appointments-table tbody tr:hover {
    background: var(--cream);
}

.appointments-table .msg-cell {
    max-width: 380px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.empty-state {
    text-align: center;
    padding: 80px 30px;
    color: var(--text-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}

.btn-icon {
    background: transparent;
    border: 1px solid var(--green-pale);
    padding: 7px 11px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.btn-icon:hover {
    background: #fee;
    color: #c0392b;
    border-color: #c0392b;
}

.login-card {
    max-width: 420px;
    margin: 200px auto;
    background: white;
    padding: 50px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.login-card h2 {
    margin-bottom: 8px;
    font-family: 'Cormorant Garamond', serif;
}

.login-card p { margin-bottom: 28px; font-size: 0.95rem; }

.login-card .form-field { text-align: left; }

.login-error {
    color: #c0392b;
    font-size: 0.9rem;
    margin-top: 12px;
    display: none;
}

.login-error.visible { display: block; }

@media (max-width: 600px) {
    .appointments-table {
        font-size: 0.85rem;
    }
    .appointments-table th,
    .appointments-table td {
        padding: 12px 10px;
    }
}
