:root {
  --accent:       #e44d26;
  --gold:         #c9a84c;
  --gold-light:   #f0d080;
  --rose:         #be3a6e;
  --rose-light:   #e87aaa;
  --rose-pale:    #fce7f3;
  --dark:         #120608;
  --dark2:        #1c0a0f;
  --dark3:        #261018;
  --text-light:   #f8edf2;
  --text-muted:   #9a6878;
  --border:       rgba(190,58,110,0.18);
  --border-gold:  rgba(201,168,76,0.22);
  --border-light: rgba(232,122,170,0.3);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;
}

*, *::before, *::after { 
  box-sizing: border-box; 
}

html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body { 
  font-family: var(--font-body); 
  color: var(--text-light); 
  background: var(--dark); 
}

/* HEADER */
#site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 1000; 
  background: transparent; 
  transition: background .4s, backdrop-filter .4s, box-shadow .4s; 
  border-bottom: 1px solid transparent; 
}

#site-header.scrolled { 
  background: rgba(18,6,8,.97); 
  backdrop-filter: blur(16px); 
  box-shadow: 0 2px 24px rgba(0,0,0,.6); 
  border-bottom-color: var(--border); 
}

.header-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
  height: 64px; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 20px; 
}

.header-logo { 
  font-family: var(--font-display); 
  font-size: 18px; 
  color: var(--gold-light); 
  text-decoration: none; 
  white-space: nowrap; 
  flex-shrink: 0; 
}

.header-logo span { 
  color: var(--rose-light); 
}

.main-nav { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
}

.main-nav a { 
  color: var(--text-muted); 
  text-decoration: none; 
  font-size: 13px; 
  font-weight: 600; 
  letter-spacing: .04em; 
  text-transform: uppercase; 
  padding: 6px 10px; 
  border-radius: 6px; 
  transition: color .2s, background .2s; 
  white-space: nowrap; 
}

.main-nav a:hover { 
  color: var(--rose-pale); 
  background: rgba(190,58,110,.1); 
}

.lang-nav { 
  display: flex; 
  align-items: center; 
  gap: 4px; 
  flex-shrink: 0; 
}

.lang-nav a { 
  color: var(--text-muted); 
  text-decoration: none; 
  font-size: 12px; 
  font-weight: 600; 
  padding: 4px 7px; 
  border-radius: 4px; 
  border: 1px solid transparent; 
  transition: all .2s; 
}

.lang-nav a.active, 
.lang-nav a:hover { 
  color: var(--gold-light); 
  border-color: var(--border-gold); 
  background: rgba(201,168,76,.08); 
}

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 6px; 
  background: none; 
  border: none; 
}

.hamburger span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--text-light); 
  border-radius: 2px; 
}

.mobile-menu { 
  display: none; 
  flex-direction: column; 
  background: rgba(18,6,8,.98); 
  border-top: 1px solid var(--border); 
  padding: 16px 24px 20px; 
}

.mobile-menu.open { 
  display: flex; 
}

.mobile-menu a { 
  color: var(--text-light); 
  text-decoration: none; 
  padding: 10px 0; 
  font-size: 15px; 
  border-bottom: 1px solid var(--border); 
}

.mobile-menu a:last-child { 
  border-bottom: none; 
}

/* HERO MINIMAL */
.page-hero {
  padding: 120px 0 64px;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark3) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(190,58,110,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(201,168,76,.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner { 
  position: relative; 
  z-index: 1; 
  max-width: 600px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

.page-hero-eyebrow { 
  font-size: 11px; 
  font-weight: 600; 
  letter-spacing: .22em; 
  text-transform: uppercase; 
  color: var(--rose-light); 
  margin-bottom: 14px; 
}

.page-hero h1 { 
  font-family: var(--font-display); 
  font-size: clamp(2rem, 4.5vw, 3.4rem); 
  font-weight: 700; 
  color: var(--text-light); 
  margin: 0 0 14px; 
  line-height: 1.15; 
}

.page-hero h1 em { 
  font-style: normal; 
  color: var(--gold-light); 
}

.page-hero p { 
  font-size: 16px; 
  color: var(--text-muted); 
  line-height: 1.75; 
  margin: 0; 
}

/* BREADCRUMB */
.breadcrumb { 
  background: var(--dark2); 
  padding: 13px 0; 
  border-bottom: 1px solid var(--border); 
}

.breadcrumb-inner { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 24px; 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  font-size: 13px; 
  color: var(--text-muted); 
}

.breadcrumb a { 
  color: var(--rose-light); 
  text-decoration: none; 
}

.breadcrumb a:hover { 
  text-decoration: underline; 
}

/* LAYOUT */
.section { 
  padding: 72px 0; 
}

.section-alt { 
  background: var(--dark2); 
}

.container { 
  max-width: 1100px; 
  margin: 0 auto; 
  padding: 0 24px; 
}

/* CONTACT GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

/* CARD ALINA */
.alina-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: sticky;
  top: 88px;
}

.alina-photo-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.alina-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform .4s ease;
}

.alina-card:hover .alina-photo { 
  transform: scale(1.03); 
}

.alina-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,6,8,.95) 0%, rgba(18,6,8,.2) 50%, transparent 100%);
}

.alina-photo-badge {
  position: absolute;
  top: 16px; 
  right: 16px;
  background: rgba(190,58,110,.85);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

.alina-info {
  padding: 22px 24px 26px;
}

.alina-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 4px;
}

.alina-title {
  font-size: 13px;
  color: var(--rose-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.alina-bio {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.alina-bio strong { 
  color: var(--gold-light); 
  font-weight: 600; 
}

.alina-contacts { 
  display: flex; 
  flex-direction: column; 
  gap: 10px; 
}

.alina-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--dark3);
  transition: border-color .2s, color .2s, background .2s;
}

.alina-contact-item:hover {
  border-color: var(--border-light);
  color: var(--text-light);
  background: rgba(190,58,110,.08);
}

.contact-icon { 
  font-size: 16px; 
  flex-shrink: 0; 
}

.alina-social { 
  display: flex; 
  gap: 8px; 
  margin-top: 16px; 
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
}

.social-btn:hover { 
  border-color: var(--border-light); 
  color: var(--text-light); 
  background: rgba(190,58,110,.1); 
}

.social-btn.fb:hover { 
  background: rgba(24,119,242,.12); 
  border-color: rgba(24,119,242,.3); 
  color: #93c5fd; 
}

.social-btn.ig:hover { 
  background: rgba(225,48,108,.12); 
  border-color: rgba(225,48,108,.3); 
  color: #f9a8d4; 
}

/* FORM SECTION */
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 0 0 8px;
}

.form-section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

.form-section-desc strong { 
  color: var(--gold-light); 
}

/* TOPICS */
.topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.topic-item {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}

.topic-item:hover,
.topic-item.active {
  border-color: var(--border-light);
  color: var(--text-light);
  background: rgba(190,58,110,.1);
}

.topic-emoji { 
  font-size: 16px; 
  flex-shrink: 0; 
}

/* FORM */
.contact-form { 
  display: flex; 
  flex-direction: column; 
  gap: 18px; 
}

.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 16px; 
}

.form-group { 
  display: flex; 
  flex-direction: column; 
  gap: 6px; 
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--rose-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-input, 
.form-textarea, 
.form-select {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-light);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.form-input::placeholder, 
.form-textarea::placeholder { 
  color: var(--text-muted); 
}

.form-input:focus, 
.form-textarea:focus, 
.form-select:focus {
  border-color: var(--rose-light);
  box-shadow: 0 0 0 3px rgba(190,58,110,.1);
}

.form-select option { 
  background: var(--dark3); 
  color: var(--text-light); 
}

.form-textarea { 
  resize: vertical; 
  min-height: 130px; 
  line-height: 1.6; 
}

.form-checkbox { 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
}

.form-checkbox input[type=checkbox] { 
  width: 16px; 
  height: 16px; 
  margin-top: 2px; 
  flex-shrink: 0; 
  accent-color: var(--rose); 
  cursor: pointer; 
}

.form-checkbox label { 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.55; 
  cursor: pointer; 
}

.form-checkbox a { 
  color: var(--rose-light); 
  text-decoration: none; 
}

.form-checkbox a:hover { 
  text-decoration: underline; 
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rose);
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
  align-self: flex-start;
}

.btn-submit:hover { 
  background: var(--rose-light); 
  color: var(--dark); 
  transform: translateY(-1px); 
}

/* SUCCESS MESSAGE */
.form-success {
  display: none;
  background: rgba(5,150,105,.1);
  border: 1px solid rgba(52,211,153,.3);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.form-success.show { 
  display: block; 
}

.form-success h3 { 
  font-family: var(--font-display); 
  font-size: 1.3rem; 
  color: #6ee7b7; 
  margin: 0 0 8px; 
}

.form-success p { 
  font-size: 14px; 
  color: rgba(110,231,183,.7); 
  margin: 0; 
}

/* ALTERNATIVE CONTACT */
.alt-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.alt-contact-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
}

.alt-methods { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.alt-method {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.alt-method.email { 
  color: var(--gold-light); 
}

.alt-method.email:hover { 
  border-color: var(--border-gold); 
  background: rgba(201,168,76,.08); 
}

.alt-method.fb { 
  color: #93c5fd; 
}

.alt-method.fb:hover { 
  border-color: rgba(24,119,242,.3); 
  background: rgba(24,119,242,.08); 
}

.alt-method.ig { 
  color: #f9a8d4; 
}

.alt-method.ig:hover { 
  border-color: rgba(225,48,108,.3); 
  background: rgba(225,48,108,.08); 
}

/* FAQ RAPID */
.quick-faq { 
  margin-top: 40px; 
}

.quick-faq-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 0 0 16px;
}

.qfaq-item {
  border-bottom: 1px solid var(--border);
}

.qfaq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  transition: color .2s;
}

.qfaq-question:hover { 
  color: var(--rose-pale); 
}

.qfaq-icon { 
  font-size: 18px; 
  color: var(--rose-light); 
  flex-shrink: 0; 
  transition: transform .3s; 
}

.qfaq-item.open .qfaq-icon { 
  transform: rotate(45deg); 
}

.qfaq-answer { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height .35s ease; 
}

.qfaq-answer-inner { 
  padding: 0 0 14px; 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.7; 
}

.qfaq-item.open .qfaq-answer { 
  max-height: 200px; 
}

/* SHARE */
.share-section { 
  padding: 36px 0; 
  border-top: 1px solid var(--border); 
}

.share-title { 
  font-size: 13px; 
  font-weight: 600; 
  color: var(--text-muted); 
  text-align: center; 
  margin-bottom: 14px; 
  text-transform: uppercase; 
  letter-spacing: .1em; 
}

.share-buttons { 
  display: flex; 
  gap: 10px; 
  justify-content: center; 
  flex-wrap: wrap; 
}

.share-btn { 
  display: inline-flex; 
  align-items: center; 
  gap: 7px; 
  padding: 9px 18px; 
  border-radius: 8px; 
  font-size: 13px; 
  font-weight: 600; 
  text-decoration: none; 
  cursor: pointer; 
  border: none; 
  transition: opacity .2s, transform .15s; 
  font-family: var(--font-body); 
}

.share-btn:hover { 
  opacity: .88; 
  transform: translateY(-1px); 
}

.share-fb  { 
  background: #1877f2; 
  color: #fff; 
}

.share-wa  { 
  background: #25d366; 
  color: #fff; 
}

.share-copy { 
  background: var(--dark3); 
  color: var(--rose-pale); 
  border: 1px solid var(--border); 
}

/* FOOTER */
#footer { 
  background: #080204; 
  border-top: 1px solid var(--border); 
  padding: 56px 0 0; 
}

.footer-grid { 
  display: grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
  gap: 40px; 
  margin-bottom: 44px; 
}

.footer-brand h2 { 
  font-family: var(--font-display); 
  font-size: 1.35rem; 
  color: var(--gold-light); 
  margin: 0 0 10px; 
}

.footer-brand p { 
  font-size: 14px; 
  color: var(--text-muted); 
  line-height: 1.7; 
  margin: 0 0 18px; 
}

.footer-socials { 
  display: flex; 
  gap: 10px; 
}

.footer-social-link { 
  width: 36px; 
  height: 36px; 
  border-radius: 50%; 
  border: 1px solid var(--border); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: var(--text-muted); 
  text-decoration: none; 
  font-size: 14px; 
  transition: border-color .2s, color .2s; 
}

.footer-social-link:hover { 
  border-color: var(--gold); 
  color: var(--gold); 
}

.footer-col h4 { 
  font-size: 12px; 
  font-weight: 600; 
  color: var(--rose-light); 
  letter-spacing: .12em; 
  text-transform: uppercase; 
  margin: 0 0 14px; 
}

.footer-col ul { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.footer-col ul li { 
  margin-bottom: 8px; 
}

.footer-col ul li a { 
  font-size: 14px; 
  color: var(--text-muted); 
  text-decoration: none; 
  transition: color .2s; 
}

.footer-col ul li a:hover { 
  color: var(--rose-pale); 
}

.footer-bottom { 
  border-top: 1px solid var(--border); 
  padding: 18px 0; 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  gap: 12px; 
  flex-wrap: wrap; 
}

.footer-bottom p { 
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0; 
}

.footer-bottom a { 
  color: var(--gold); 
  text-decoration: none; 
}

.footer-bottom a:hover { 
  text-decoration: underline; 
}

/* GDPR BANNER */
#gdpr-banner { 
  position: fixed; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  z-index: 9998; 
  background: rgba(18,6,8,.97); 
  border-top: 1px solid var(--border); 
  backdrop-filter: blur(10px); 
  padding: 16px 24px; 
  display: flex; 
  align-items: center; 
  gap: 20px; 
  flex-wrap: wrap; 
  transform: translateY(100%); 
  transition: transform .4s ease; 
}

#gdpr-banner.show { 
  transform: translateY(0); 
}

.gdpr-text { 
  flex: 1; 
  font-size: 13px; 
  color: var(--text-muted); 
  line-height: 1.55; 
  min-width: 260px; 
}

.gdpr-text a { 
  color: var(--rose-light); 
  text-decoration: none; 
}

.gdpr-actions { 
  display: flex; 
  gap: 10px; 
  flex-shrink: 0; 
}

.gdpr-accept { 
  background: var(--rose); 
  color: #fff; 
  border: none; 
  padding: 9px 20px; 
  border-radius: 6px; 
  font-size: 13px; 
  font-weight: 600; 
  cursor: pointer; 
  font-family: var(--font-body); 
  transition: background .2s; 
}

.gdpr-accept:hover { 
  background: var(--rose-light); 
  color: var(--dark); 
}

.gdpr-reject { 
  background: transparent; 
  color: var(--text-muted); 
  border: 1px solid var(--border); 
  padding: 9px 16px; 
  border-radius: 6px; 
  font-size: 13px; 
  cursor: pointer; 
  font-family: var(--font-body); 
}

/* AI BUTTON */
#ai-btn { 
  position: fixed; 
  bottom: 24px; 
  right: 24px; 
  z-index: 997; 
  width: 56px; 
  height: 56px; 
  border-radius: 50%; 
  background: var(--accent); 
  color: #fff; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-decoration: none; 
  box-shadow: 0 4px 16px rgba(228,77,38,.45); 
  transition: transform .25s; 
  font-size: 22px; 
}

#ai-btn:hover { 
  transform: scale(1.08); 
}

/* ==================== RESPONSIVE ==================== */

/* TABLET ȘI MAI MIC (pana la 900px) */
@media (max-width: 900px) {
  .main-nav { 
    display: none; 
  }
  
  .hamburger { 
    display: flex; 
  }
  
  /* Contact grid devine vertical */
  .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 40px;
  }
  
  .alina-card { 
    position: static; 
    max-width: 400px; 
    margin: 0 auto; 
  }
  
  /* Topics pe 2 coloane */
  .topics-grid { 
    grid-template-columns: 1fr 1fr; 
  }
  
  /* Form pe o coloană */
  .form-row { 
    grid-template-columns: 1fr; 
  }
  
  /* Footer pe 2 coloane */
  .footer-grid { 
    grid-template-columns: 1fr 1fr; 
  }
}

/* MOBIL MIC (pana la 600px) */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }
  
  /* Spațiere compactă */
  .header-inner, 
  .container, 
  .breadcrumb-inner { 
    padding-left: 16px; 
    padding-right: 16px; 
  }
  
  /* 🔧 LANG NAV VIZIBIL PE MOBIL */
  .lang-nav { 
    display: flex; 
    gap: 2px; 
  }
  
  .lang-nav a { 
    padding: 3px 6px; 
    font-size: 10px; 
  }
  
  /* Header ordonat */
  .header-inner {
    gap: 8px;
  }
  
  .header-logo {
    font-size: 15px;
  }
  
  /* Topics pe o coloană */
  .topics-grid { 
    grid-template-columns: 1fr; 
  }
  
  /* Alternative contact pe verticală */
  .alt-methods { 
    flex-direction: column; 
  }
  
  .alt-method {
    width: 100%;
    justify-content: center;
  }
  
  /* Footer pe o coloană */
  .footer-grid { 
    grid-template-columns: 1fr; 
    gap: 30px; 
  }
  
  /* Submit button full width pe mobil */
  .btn-submit {
    width: 100%;
    align-self: stretch;
  }
  
  /* Hero mai compact */
  .page-hero {
    padding: 100px 0 50px;
  }
  
  /* Footer simplificat */
  .footer-bottom { 
    flex-direction: column; 
    text-align: center; 
    gap: 8px; 
  }
}
