/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a192f;
  color: #e2e8f0;
  line-height: 1.6;
  overflow-x: hidden
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit
}

img {
  max-width: 100%;
  display: block
}

ul,
ol {
  list-style: none
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit
}

::-webkit-scrollbar {
  width: 6px
}

::-webkit-scrollbar-track {
  background: #0a192f
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border-radius: 3px
}

/* ============ TYPOGRAPHY ============ */
.font-playfair {
  font-family: 'Playfair Display', serif
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem
}

@media(min-width:640px) {
  .container {
    padding: 0 1.5rem
  }
}

@media(min-width:1024px) {
  .container {
    padding: 0 2rem
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem
}

@media(min-width:1024px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr)
  }
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center
}

.text-center {
  text-align: center
}

/* ============ COLORS ============ */
:root {
  --bg-primary: #0a192f;
  --bg-secondary: #112240;
  --bg-tertiary: #1a2744;
  --gold: #d4af37;
  --gold-hover: #c4a030;
  --gold-light: rgba(212, 175, 55, .1);
  --gold-border: rgba(212, 175, 55, .3);
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-gray: #94a3b8;
  --text-dark-gray: #64748b;
  --border-color: #1e293b;
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  transition: all .3s
}

.nav.scrolled {
  background: rgba(10, 25, 47, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem
}

.nav-logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--gold), #b8972e);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.1rem
}

.nav-logo-text {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem
}

.nav-logo-sub {
  display: none;
  color: var(--gold);
  font-size: .75rem
}

@media(min-width:640px) {
  .nav-logo-sub {
    display: block
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem
}

@media(min-width:1024px) {
  .nav-links {
    display: flex
  }
}

.nav-links button,
.nav-links a {
  color: var(--text-gray);
  transition: color .2s;
  background: none;
  border: none;
  font-size: .95rem;
  text-decoration: none
}

.nav-links button:hover,
.nav-links a:hover {
  color: var(--gold)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: var(--bg-secondary);
  border-radius: .5rem;
  padding: .25rem
}

.lang-btn {
  padding: .375rem .75rem;
  border-radius: .35rem;
  font-size: .875rem;
  font-weight: 500;
  transition: all .2s;
  color: var(--text-dark-gray)
}

.lang-btn:hover {
  color: #fff
}

.lang-btn.active {
  background: var(--gold);
  color: var(--bg-primary)
}

.nav-cta {
  display: none;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem;
  font-weight: 600;
  transition: background .2s
}

@media(min-width:768px) {
  .nav-cta {
    display: flex
  }
}

.nav-cta:hover {
  background: var(--gold-hover)
}

.mobile-toggle {
  display: block;
  color: #fff;
  background: none;
  border: none
}

@media(min-width:1024px) {
  .mobile-toggle {
    display: none
  }
}

.mobile-menu {
  display: none;
  background: var(--bg-secondary);
  border-radius: .75rem;
  margin-top: .5rem;
  padding: 1rem
}

.mobile-menu.open {
  display: block
}

.mobile-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: .75rem 1rem;
  color: var(--text-gray);
  border-radius: .5rem;
  transition: all .2s
}

.mobile-menu button:hover {
  color: var(--gold);
  background: var(--bg-tertiary)
}

.mobile-menu .mobile-cta {
  margin-top: 1rem;
  text-align: center;
  background: var(--gold);
  color: var(--bg-primary);
  font-weight: 600
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary), var(--bg-primary))
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1920') center/cover;
  opacity: .1
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary), transparent, rgba(10, 25, 47, .8))
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 0;
  max-width: 48rem
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: 9999px;
  color: var(--gold);
  font-size: .875rem;
  margin-bottom: 1.5rem
}

.hero-badge-dot {
  width: .5rem;
  height: .5rem;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem
}

.hero h1 span {
  display: block;
  color: var(--gold)
}

@media(min-width:640px) {
  .hero h1 {
    font-size: 3rem
  }
}

@media(min-width:1024px) {
  .hero h1 {
    font-size: 3.75rem
  }
}

.hero-desc {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 42rem
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .75rem;
  font-weight: 600;
  transition: all .2s;
  box-shadow: 0 8px 30px rgba(212, 175, 55, .2)
}

.hero-cta:hover {
  background: var(--gold-hover);
  transform: scale(1.05)
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem
}

.hero-stats .stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold)
}

@media(min-width:640px) {
  .hero-stats .stat-number {
    font-size: 2.25rem
  }
}

.hero-stats .stat-label {
  color: var(--text-gray);
  font-size: .875rem
}

/* ============ SECTIONS ============ */
.section {
  padding: 5rem 0
}

.section-dark {
  background: var(--bg-primary)
}

.section-light {
  background: var(--bg-secondary)
}

.section-gradient {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary))
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem
}

@media(min-width:640px) {
  .section-title {
    font-size: 2.25rem
  }
}

.section-subtitle {
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto
}

/* ============ SERVICE CARDS ============ */
.service-card {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: .75rem;
  border: 1px solid var(--border-color);
  transition: all .3s
}

.service-card:hover {
  border-color: rgba(212, 175, 55, .5);
  transform: translateY(-4px)
}

.service-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--gold-light);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: background .3s
}

.service-card:hover .service-icon {
  background: rgba(212, 175, 55, .2)
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
  font-family: 'Playfair Display', serif
}

.service-card p {
  color: var(--text-gray);
  font-size: .875rem;
  margin-bottom: 1rem
}

.service-link {
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s
}

.service-link:hover {
  gap: .5rem
}

/* ============ ABOUT ============ */
.about-image {
  position: relative
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--gold);
  padding: 1.5rem;
  border-radius: .75rem
}

.about-badge .number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bg-primary)
}

.about-badge .label {
  color: rgba(10, 25, 47, .7);
  font-size: .875rem
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--gold-light);
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.feature-item h4 {
  color: #fff;
  font-weight: 500
}

.feature-item p {
  color: var(--text-gray);
  font-size: .875rem
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem
}

@media(min-width:640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ============ GERMANY SECTION ============ */
.germany-card {
  position: relative
}

.germany-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(to right, rgba(212, 175, 55, .2), transparent);
  border-radius: 1rem;
  filter: blur(20px)
}

.germany-inner {
  position: relative;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(212, 175, 55, .2)
}

.germany-flags {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 2.5rem
}

.germany-features {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.germany-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-light)
}

.germany-feature svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  flex-shrink: 0
}

.germany-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color)
}

.germany-stats .stat {
  text-align: center
}

.germany-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold)
}

.germany-stats .stat-label {
  font-size: .75rem;
  color: var(--text-gray)
}

/* ============ SEO CONTENT ============ */
.seo-content {
  max-width: 56rem;
  margin: 0 auto
}

.seo-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem
}

@media(min-width:640px) {
  .seo-content h2 {
    font-size: 1.875rem
  }
}

.seo-content p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto
}

.faq-item {
  background: var(--bg-primary);
  border-radius: .75rem;
  overflow: hidden;
  border: 1px solid var(--border-color)
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #fff;
  font-weight: 500;
  background: none;
  border: none
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  transition: transform .3s;
  flex-shrink: 0
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg)
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray)
}

.faq-item.open .faq-answer {
  display: block
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem
}

@media(min-width:768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr
  }
}

.footer-desc {
  color: var(--text-gray);
  margin-bottom: 1rem
}

.footer-location {
  color: var(--text-dark-gray);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .5rem
}

.footer h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.footer-links button,
.footer-links a {
  color: var(--text-gray);
  transition: color .2s;
  background: none;
  border: none;
  text-align: left;
  font-size: .95rem
}

.footer-links button:hover,
.footer-links a:hover {
  color: var(--gold)
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem
}

@media(min-width:640px) {
  .footer-bottom {
    flex-direction: row
  }
}

.footer-bottom p {
  color: var(--text-dark-gray);
  font-size: .875rem
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.footer-bottom-links button {
  color: var(--text-dark-gray);
  font-size: .875rem;
  background: none;
  border: none;
  transition: color .2s
}

.footer-bottom-links button:hover {
  color: var(--text-gray)
}

.admin-dot {
  width: .75rem;
  height: .75rem;
  background: var(--border-color);
  border-radius: 50%;
  border: none;
  transition: background .2s
}

.admin-dot:hover {
  background: var(--gold)
}

.footer-chat-btn {
  width: 100%;
  padding: .75rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem;
  font-weight: 600;
  transition: background .2s;
  border: none
}

.footer-chat-btn:hover {
  background: var(--gold-hover)
}

/* ============ BUTTONS ============ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem;
  font-weight: 600;
  transition: background .2s;
  border: none
}

.btn-gold:hover {
  background: var(--gold-hover)
}

.btn-outline {
  padding: .75rem 1.5rem;
  border: 1px solid var(--border-color);
  color: #fff;
  border-radius: .5rem;
  transition: background .2s
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .05)
}

/* ============ CHAT WIDGET ============ */
.chat-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1rem;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to right, var(--gold), #b8972e);
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(212, 175, 55, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
  z-index: 50;
  border: none
}

@media(min-width:640px) {
  .chat-btn {
    right: 1.5rem
  }
}

.chat-btn:hover {
  transform: scale(1.1)
}

.chat-btn svg {
  width: 1.75rem;
  height: 1.75rem;
  color: var(--bg-primary)
}

.chat-btn .unread {
  position: absolute;
  top: -.25rem;
  right: -.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: #ef4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  animation: pulse 2s infinite
}

.chat-widget {
  display: none;
  position: fixed;
  bottom: 6rem;
  right: 1rem;
  width: calc(100% - 2rem);
  max-width: 24rem;
  max-height: 80vh;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, .5);
  overflow: hidden;
  z-index: 50;
  flex-direction: column;
  min-height: 400px;
}

.hidden {
  display: none !important;
}

@media(min-width:640px) {
  .chat-widget {
    right: 1.5rem
  }
}

.chat-widget.open {
  display: flex
}

.chat-header {
  background: linear-gradient(to right, var(--gold), #b8972e);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: .75rem
}

.chat-header-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, .2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.chat-header-avatar svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff
}

.chat-header h3 {
  font-weight: 600;
  color: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  font-size: 1rem
}

.chat-header p {
  font-size: .875rem;
  color: rgba(10, 25, 47, .7)
}

.chat-close {
  color: rgba(10, 25, 47, .7);
  background: none;
  border: none;
  transition: color .2s
}

.chat-close:hover {
  color: var(--bg-primary)
}

.chat-close svg {
  width: 1.5rem;
  height: 1.5rem
}

.chat-body {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column
}

.chat-form {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: auto
}

.chat-form label {
  display: block;
  font-size: .875rem;
  color: var(--text-gray);
  margin-bottom: .25rem
}

.chat-form input,
.chat-form select,
.chat-form textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: #fff;
  outline: none;
  transition: border-color .2s
}

.chat-form input:focus,
.chat-form select:focus,
.chat-form textarea:focus {
  border-color: var(--gold)
}

.chat-form input.error,
.chat-form textarea.error {
  border-color: #ef4444
}

.chat-form .error-msg {
  color: #f87171;
  font-size: .75rem;
  margin-top: .25rem
}

.chat-form textarea {
  resize: none
}

.chat-form .honeypot {
  display: none
}

.chat-submit {
  width: 100%;
  padding: .75rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem;
  font-weight: 600;
  border: none;
  transition: background .2s
}

.chat-submit:hover {
  background: var(--gold-hover)
}

.chat-submit:disabled {
  opacity: .5;
  cursor: not-allowed
}

.chat-messages {
  flex: 1;
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.chat-msg {
  display: flex
}

.chat-msg.user {
  justify-content: flex-end
}

.chat-msg.admin {
  justify-content: flex-start
}

.chat-bubble {
  max-width: 80%;
  border-radius: .5rem;
  padding: .75rem
}

.chat-msg.user .chat-bubble {
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem .5rem 0 .5rem
}

.chat-msg.admin .chat-bubble {
  background: var(--bg-secondary);
  color: #fff;
  border-radius: .5rem .5rem .5rem 0
}

.chat-bubble p {
  font-size: .875rem
}

.chat-bubble .time {
  font-size: .75rem;
  margin-top: .25rem;
  display: block
}

.chat-msg.user .time {
  color: rgba(10, 25, 47, .6)
}

.chat-msg.admin .time {
  color: var(--text-dark-gray)
}

.chat-typing {
  display: flex;
  gap: .25rem;
  padding: .75rem;
  background: var(--bg-secondary);
  border-radius: .5rem;
  width: fit-content
}

.chat-typing span {
  width: .5rem;
  height: .5rem;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce .6s infinite
}

.chat-typing span:nth-child(2) {
  animation-delay: .15s
}

.chat-typing span:nth-child(3) {
  animation-delay: .3s
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-6px)
  }
}

.chat-input-area {
  padding: 1rem;
  border-top: 1px solid var(--border-color)
}

.chat-input-row {
  display: flex;
  gap: .5rem
}

.chat-input-row input {
  flex: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: #fff;
  font-size: .875rem;
  outline: none
}

.chat-input-row input:focus {
  border-color: var(--gold)
}

.chat-input-row button {
  padding: .75rem 1rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem;
  border: none;
  transition: background .2s
}

.chat-input-row button:hover {
  background: var(--gold-hover)
}

.chat-input-row button:disabled {
  opacity: .5
}

.chat-end-btn {
  width: 100%;
  margin-top: .75rem;
  padding: .5rem;
  font-size: .875rem;
  color: var(--text-gray);
  background: none;
  border: none;
  transition: color .2s
}

.chat-end-btn:hover {
  color: #f87171
}

/* ============ ADMIN LOGIN MODAL ============ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 50;
  align-items: center;
  justify-content: center
}

.modal-overlay.open {
  display: flex
}

.modal-box {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 1rem;
  width: 100%;
  max-width: 24rem;
  margin: 0 1rem
}

.modal-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif
}

.modal-box input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: #fff;
  margin-bottom: 1rem;
  outline: none
}

.modal-box input:focus {
  border-color: var(--gold)
}

.modal-box input.error {
  border-color: #ef4444
}

.modal-error {
  color: #f87171;
  font-size: .875rem;
  margin-bottom: 1rem;
  display: none
}

.modal-error.show {
  display: block
}

.modal-buttons {
  display: flex;
  gap: .75rem
}

.modal-buttons button {
  flex: 1;
  padding: .75rem;
  border-radius: .5rem;
  font-weight: 600;
  border: none;
  transition: background .2s
}

/* ============ ARTICLES PAGE ============ */
.articles-header {
  padding: 4rem 0;
  background: linear-gradient(to bottom, var(--bg-secondary), var(--bg-primary))
}

.articles-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem
}

@media(min-width:768px) {
  .articles-header h1 {
    font-size: 3rem
  }
}

.articles-filters {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color)
}

.filters-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between
}

@media(min-width:768px) {
  .filters-inner {
    flex-direction: row
  }
}

.search-box {
  position: relative;
  width: 100%;
  max-width: 24rem
}

.search-box input {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem .75rem 2.5rem;
  color: #fff;
  outline: none
}

.search-box input:focus {
  border-color: var(--gold)
}

.search-box svg {
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-dark-gray)
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem
}

.cat-btn {
  padding: .5rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  transition: all .2s;
  background: var(--bg-secondary);
  color: var(--text-gray);
  border: none
}

.cat-btn:hover {
  color: #fff
}

.cat-btn.active {
  background: var(--gold);
  color: var(--bg-primary)
}

.article-card {
  background: var(--bg-secondary);
  border-radius: .75rem;
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
  border: 2px solid transparent
}

.article-card:hover {
  border-color: rgba(212, 175, 55, .5)
}

.article-card img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  transition: transform .3s
}

.article-card:hover img {
  transform: scale(1.05)
}

.article-card-body {
  padding: 1.5rem
}

.article-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem
}

.article-cat {
  padding: .25rem .75rem;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 9999px;
  font-size: .75rem
}

.article-date {
  color: var(--text-dark-gray);
  font-size: .75rem
}

.article-card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .75rem;
  transition: color .2s;
  font-family: 'Playfair Display', serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.article-card:hover h2 {
  color: var(--gold)
}

.article-card .excerpt {
  color: var(--text-gray);
  font-size: .875rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem
}

.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.article-card .author {
  color: var(--text-dark-gray);
  font-size: .875rem
}

.article-card .read-more {
  color: var(--gold);
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: gap .2s
}

.article-card:hover .read-more {
  gap: .5rem
}

/* Article Detail */
.article-detail {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem
}

.article-cover {
  position: relative;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem
}

@media(min-width:768px) {
  .article-cover {
    height: 24rem
  }
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.article-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-primary), transparent, transparent)
}

.article-detail h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 1.5rem
}

@media(min-width:768px) {
  .article-detail h1 {
    font-size: 2.5rem
  }
}

@media(min-width:1024px) {
  .article-detail h1 {
    font-size: 3rem
  }
}

.article-detail .meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem
}

.article-detail .description {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.7
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: .75rem
}

.article-content p {
  color: #cbd5e1;
  line-height: 1.8;
  margin: .75rem 0
}

.article-content ul,
.article-content ol {
  margin: .75rem 0 .75rem 1.5rem;
  color: #cbd5e1
}

.article-content ul {
  list-style: disc
}

.article-content ol {
  list-style: decimal
}

.article-content li {
  margin: .5rem 0
}

.article-content a {
  color: var(--gold);
  text-decoration: underline
}

.article-content a:hover {
  color: #e5c349
}

.article-content blockquote {
  border-left: 4px solid var(--gold);
  padding-left: 1.5rem;
  font-style: italic;
  color: var(--text-gray);
  margin: 1.5rem 0
}

.article-content img {
  border-radius: .75rem;
  margin: 2rem 0;
  width: 100%
}

.article-content strong {
  color: #fff;
  font-weight: 600
}

.article-content em {
  color: #cbd5e1
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 2rem 0
}

.article-share {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between
}

.share-buttons {
  display: flex;
  gap: .75rem
}

.share-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--bg-tertiary);
  color: var(--text-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  border: none
}

.share-btn:hover {
  background: var(--gold);
  color: var(--bg-primary)
}

.share-btn svg {
  width: 1.25rem;
  height: 1.25rem
}

.article-cta-box {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(to right, var(--gold-light), transparent);
  border: 1px solid rgba(212, 175, 55, .2);
  border-radius: 1rem
}

.article-cta-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .5rem;
  font-family: 'Inter', sans-serif
}

.article-cta-box p {
  color: var(--text-gray);
  margin-bottom: 1rem
}

.back-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--gold);
  transition: color .2s;
  background: none;
  border: none;
  font-size: 1rem
}

.back-link:hover {
  color: #e5c349
}

.back-link svg {
  width: 1.25rem;
  height: 1.25rem
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 25, 47, .95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color)
}

.sticky-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem
}

/* ============ ADMIN PANEL ============ */
.admin-panel {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 50;
  overflow: hidden;
  display: none
}

.admin-panel.open {
  display: block
}

.admin-header {
  height: 4rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem
}

.admin-body {
  display: flex;
  height: calc(100vh - 4rem)
}

.admin-sidebar {
  width: 16rem;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.admin-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

.admin-nav-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-radius: .5rem;
  transition: all .2s;
  color: var(--text-gray);
  background: none;
  border: none;
  text-align: left
}

.admin-nav-btn:hover {
  background: var(--bg-tertiary);
  color: #fff
}

.admin-nav-btn.active {
  background: var(--gold);
  color: var(--bg-primary)
}

.admin-nav-btn .nav-label {
  display: flex;
  align-items: center;
  gap: .75rem
}

.admin-nav-btn .badge {
  padding: .125rem .5rem;
  font-size: .75rem;
  border-radius: 9999px
}

.admin-nav-btn.active .badge {
  background: var(--bg-primary);
  color: var(--gold)
}

.admin-nav-btn:not(.active) .badge {
  background: #ef4444;
  color: #fff
}

.admin-logout {
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  color: #f87171;
  border-radius: .5rem;
  transition: background .2s;
  background: none;
  border: none
}

.admin-logout:hover {
  background: rgba(239, 68, 68, .1)
}

.admin-content {
  flex: 1;
  overflow: auto;
  padding: 1.5rem
}

.admin-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif
}

.stat-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
  margin-bottom: 2rem
}

@media(min-width:768px) {
  .stat-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(min-width:1024px) {
  .stat-cards {
    grid-template-columns: repeat(4, 1fr)
  }
}

.stat-card {
  padding: 1rem;
  border-radius: .75rem;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.stat-card .stat-info p:first-child {
  color: var(--text-gray);
  font-size: .875rem
}

.stat-card .stat-info p:last-child {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-top: .25rem
}

.stat-card .stat-icon {
  font-size: 1.875rem
}

.stat-blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, .2), rgba(37, 99, 235, .2));
  border-color: rgba(59, 130, 246, .3)
}

.stat-green {
  background: linear-gradient(135deg, rgba(34, 197, 94, .2), rgba(22, 163, 74, .2));
  border-color: rgba(34, 197, 94, .3)
}

.stat-yellow {
  background: linear-gradient(135deg, rgba(234, 179, 8, .2), rgba(202, 138, 4, .2));
  border-color: rgba(234, 179, 8, .3)
}

.stat-purple {
  background: linear-gradient(135deg, rgba(168, 85, 247, .2), rgba(147, 51, 234, .2));
  border-color: rgba(168, 85, 247, .3)
}

.admin-table {
  width: 100%;
  background: var(--bg-secondary);
  border-radius: .75rem;
  overflow: hidden
}

.admin-table thead {
  background: var(--bg-tertiary)
}

.admin-table th {
  text-align: left;
  padding: 1rem;
  color: var(--text-gray);
  font-weight: 500
}

.admin-table td {
  padding: 1rem;
  border-top: 1px solid var(--border-color)
}

.admin-table td.text-white {
  color: #fff
}

.admin-table td.text-gray {
  color: var(--text-gray)
}

.admin-table td.truncate {
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.admin-table select {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: .25rem;
  padding: .25rem .5rem;
  color: #fff;
  font-size: .875rem
}

.admin-table .btn-delete {
  color: #f87171;
  background: none;
  border: none;
  transition: color .2s
}

.admin-table .btn-delete:hover {
  color: #fca5a5
}

.status-badge {
  padding: .25rem .5rem;
  font-size: .75rem;
  border-radius: 9999px
}

.status-pending {
  background: rgba(234, 179, 8, .2);
  color: #facc15
}

.status-active {
  background: rgba(34, 197, 94, .2);
  color: #4ade80
}

.status-resolved {
  background: rgba(59, 130, 246, .2);
  color: #60a5fa
}

.status-archived {
  background: rgba(100, 116, 139, .2);
  color: #94a3b8
}

/* Admin Chat */
.admin-chat {
  display: flex;
  gap: 1rem;
  height: calc(100vh - 10rem);
  min-height: 300px
}

.chat-list {
  width: 20rem;
  min-width: 16rem;
  background: var(--bg-secondary);
  border-radius: .75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column
}

.chat-list-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0
}

.chat-list-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff
}

.chat-list-items {
  overflow-y: auto;
  flex: 1
}

.chat-list-item {
  width: 100%;
  display: block;
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  transition: background .2s;
  background: none;
  text-decoration: none;
  color: inherit
}

.chat-list-item:hover,
.chat-list-item.active {
  background: var(--bg-tertiary)
}

.chat-list-item .item-top {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.chat-list-item .item-name {
  color: #fff;
  font-weight: 500
}

.chat-list-item .item-unread {
  width: 1.25rem;
  height: 1.25rem;
  background: #ef4444;
  color: #fff;
  font-size: .7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.chat-list-item .item-preview {
  font-size: .875rem;
  color: var(--text-gray);
  margin-top: .25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.chat-list-item .item-date {
  font-size: .75rem;
  color: var(--text-dark-gray);
  margin-top: .25rem
}

.chat-window {
  flex: 1;
  background: var(--bg-secondary);
  border-radius: .75rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0
}

.chat-window-header {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0
}

.chat-window-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff
}

.chat-window-header p {
  font-size: .875rem;
  color: var(--text-gray)
}

.chat-window-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.chat-window-input {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: .75rem;
  flex-shrink: 0
}

.chat-window-input input {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: #fff;
  outline: none;
  min-width: 0
}

.chat-window-input input:focus {
  border-color: var(--gold)
}

.chat-window-input button {
  padding: .75rem 1.5rem;
  background: var(--gold);
  color: var(--bg-primary);
  border-radius: .5rem;
  font-weight: 600;
  border: none;
  transition: background .2s;
  flex-shrink: 0
}

.chat-window-input button:hover {
  background: var(--gold-hover)
}

.chat-empty {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark-gray)
}

/* Admin Articles */
.admin-article-list {
  display: flex;
  flex-direction: column;
  gap: 1rem
}

.admin-article-item {
  background: var(--bg-secondary);
  border-radius: .75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem
}

.admin-article-item img {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: .5rem
}

.admin-article-info {
  flex: 1
}

.admin-article-info h3 {
  color: #fff;
  font-weight: 600
}

.admin-article-info p {
  font-size: .875rem;
  color: var(--text-gray);
  margin-top: .25rem
}

.admin-article-info .article-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: .5rem
}

.admin-article-info .article-meta-row span {
  font-size: .75rem;
  color: var(--text-dark-gray)
}

.admin-article-actions {
  display: flex;
  gap: .5rem
}

.admin-article-actions button {
  padding: .5rem .75rem;
  border-radius: .5rem;
  transition: background .2s;
  border: none;
  font-size: .875rem
}

.btn-edit {
  color: var(--gold);
  background: none
}

.btn-edit:hover {
  background: var(--gold-light)
}

/* Admin Article Editor */
.article-editor {
  display: flex;
  flex-direction: column;
  gap: 1.5rem
}

.editor-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

@media(min-width:1024px) {
  .editor-row {
    grid-template-columns: 1fr 1fr
  }
}

.editor-row-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem
}

@media(min-width:1024px) {
  .editor-row-3 {
    grid-template-columns: 1fr 1fr 1fr
  }
}

.editor-field label {
  display: block;
  font-size: .875rem;
  color: var(--text-gray);
  margin-bottom: .5rem
}

.editor-field input,
.editor-field select,
.editor-field textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: .75rem 1rem;
  color: #fff;
  outline: none
}

.editor-field input:focus,
.editor-field select:focus,
.editor-field textarea:focus {
  border-color: var(--gold)
}

.editor-content {
  min-height: 400px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  padding: 1rem;
  color: #fff;
  outline: none
}

.editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem
}

/* Admin Settings */
.settings-form {
  max-width: 36rem;
  background: var(--bg-secondary);
  border-radius: .75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem
}

/* ============ SVG ICON HELPER ============ */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle
}

/* ============ UTILITY ============ */
.mb-4 {
  margin-bottom: 1rem
}

.mb-6 {
  margin-bottom: 1.5rem
}

.mb-8 {
  margin-bottom: 2rem
}

.mb-12 {
  margin-bottom: 3rem
}

.mb-16 {
  margin-bottom: 4rem
}

.mt-4 {
  margin-top: 1rem
}

.mt-8 {
  margin-top: 2rem
}

.mt-12 {
  margin-top: 3rem
}

.hidden {
  display: none !important
}

.block {
  display: block
}

/* ============ ADMIN RESPONSIVE ============ */

/* Mobil: sidebar daha dar */
@media(max-width:767px) {
  .mobile-menu-btn {
    display: flex !important
  }

  .admin-sidebar {
    position: absolute;
    z-index: 100;
    height: calc(100vh - 4rem);
    width: 16rem !important;
    background: var(--bg-secondary);
    padding: 1rem !important;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
  }

  .admin-sidebar .nav-label span:last-child,
  .admin-sidebar .admin-logout span:last-child {
    display: inline
  }

  .admin-nav-btn {
    justify-content: flex-start;
    padding: .75rem 1rem
  }

  .admin-nav-btn .badge {
    position: static;
    font-size: .75rem;
    padding: .125rem .5rem
  }

  .admin-content {
    padding: 1rem .75rem
  }
}

/* ============ CHAT RESPONSIVE ============ */

/* Geri butonu: sadece mobilde göster */
.chat-back-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: .5rem;
  color: var(--text-gray);
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s
}

.chat-back-btn:hover {
  background: var(--bg-primary);
  color: #fff
}

@media(max-width:767px) {
  .admin-chat {
    height: calc(100vh - 7rem);
    gap: 0;
    position: relative
  }

  .chat-list {
    width: 100%;
    min-width: unset;
    border-radius: .5rem;
    display: flex;
    flex-direction: column
  }

  .chat-window {
    width: 100%;
    border-radius: .5rem;
    flex-direction: column
  }

  /* Geri butonu mobilde görünür */
  .chat-back-btn {
    display: flex
  }

  /* Mobilde input alanı daha büyük */
  .chat-window-input {
    padding: .75rem
  }

  .chat-window-input input {
    font-size: 16px /* iOS zoom önleme */
  }

  .chat-window-input button {
    padding: .75rem 1rem;
    font-size: .875rem
  }

  /* Chat listesi item biraz daha kompakt */
  .chat-list-item {
    padding: .75rem 1rem
  }

  /* Mesajlar alanı */
  .chat-window-messages {
    padding: .75rem
  }
}

@media(min-width:768px) {
  /* Desktop: chat-window her zaman flex */
  .chat-window {
    display: flex !important
  }

  .chat-list {
    display: flex !important
  }
}

/* ============ TYPING DOTS ANIMATION ============ */
.typing-dots {
  display: flex;
  align-items: center;
  gap: 3px;
}

.typing-dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ca3af;
  animation: typingBounce 1.4s infinite ease-in-out both;
  font-size: 0;
  line-height: 0;
}

.typing-dots span:nth-child(1) { animation-delay: 0s; }
.typing-dots span:nth-child(2) { animation-delay: 0.16s; }
.typing-dots span:nth-child(3) { animation-delay: 0.32s; }

@keyframes typingBounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============ BLOCKED STATUS BADGE ============ */
.status-blocked {
  background: rgba(239, 68, 68, .15);
  color: #f87171;
}

/* ============ CHAT WELCOME SCREEN ============ */
.chat-welcome .btn-outline {
  background: var(--bg-secondary, #1e293b);
  border: 1px solid var(--border-color, #334155);
  color: #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  cursor: pointer;
}

.chat-welcome .btn-outline:hover {
  background: var(--gold, #c6a87c);
  color: #0a192f;
  border-color: var(--gold, #c6a87c);
}