/* ===== SERHAT SIGORTA - GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700&display=swap');

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

:root {
  --gold: #C8A84E;
  --gold-light: #D4BC6A;
  --gold-dark: #A68A30;
  --black: #111111;
  --black-light: #1a1a1a;
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.7);
  --white-60: rgba(255,255,255,0.6);
  --white-50: rgba(255,255,255,0.5);
  --white-40: rgba(255,255,255,0.4);
  --white-20: rgba(255,255,255,0.2);
  --white-10: rgba(255,255,255,0.1);
  --white-5: rgba(255,255,255,0.05);
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-400: #a3a3a3;
  --gray-600: #525252;
  --border: #e5e5e5;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gold { color: var(--gold); }
.text-balance { text-wrap: balance; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
  color: var(--white);
}

.header-topbar {
  border-bottom: 1px solid rgba(200,168,78,0.2);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-topbar a {
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.header-topbar a:hover { color: var(--gold-light); }

.header-topbar .location {
  color: var(--white-70);
  display: none;
  align-items: center;
  gap: 0.375rem;
}
.header-topbar .location svg { color: var(--gold); }

@media(min-width:640px) {
  .header-topbar .location { display: flex; }
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: 400px;
  height: 100px;
  object-fit: contain; /* logo bozulmaz */
  display: block;
}
@media (max-width: 576px) {
  .logo-img {
    width: 200px;
    height: 50px;
  }
}
.partner-card {
  width: 220px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  max-width: 80%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}


.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-70);
}
.nav-links a:hover { color: var(--gold); }

@media(min-width:768px) {
  .nav-links { display: flex; }
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--black); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid rgba(200,168,78,0.3);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(200,168,78,0.1);
  color: var(--white);
}

.header-cta { display: none; }
@media(min-width:768px) { .header-cta { display: inline-flex; } }

.mobile-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
}
@media(min-width:768px) { .mobile-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(200,168,78,0.2);
  background: var(--black);
  padding: 0.75rem 1rem 1rem;
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--white-70);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-gold {
  margin-top: 0.75rem;
  width: 100%;
  text-align: center;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media(min-width:1024px) { .hero { min-height: 700px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,17,17,0.95), rgba(17,17,17,0.8), rgba(17,17,17,0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(200,168,78,0.3);
  background: rgba(200,168,78,0.1);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}
.hero-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
}
.hero-badge svg { color: var(--gold); }

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
.hero h1 span { display: block; color: var(--gold); }

@media(min-width:768px) { .hero h1 { font-size: 3rem; } }
@media(min-width:1024px) { .hero h1 { font-size: 3.75rem; } }

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--white-70);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media(min-width:640px) { .hero-buttons { flex-direction: row; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
@media(min-width:1024px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }

.hero-stats .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
@media(min-width:768px) { .hero-stats .stat-value { font-size: 1.875rem; } }
.hero-stats .stat-label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--white-60);
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--white);
  padding: 5rem 0;
}
@media(min-width:1024px) { .about { padding: 7rem 0; } }

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media(min-width:1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}
@media(min-width:768px) { .section-title { font-size: 2.25rem; } }

.section-desc {
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.features-grid {
  display: grid;
  gap: 0.75rem;
}
@media(min-width:640px) { .features-grid { grid-template-columns: 1fr 1fr; } }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.feature-item span {
  font-size: 0.875rem;
  color: var(--black);
}

.about-card {
  position: relative;
}
.about-card-inner {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--white);
  padding: 2rem;
}
@media(min-width:1024px) { .about-card-inner { padding: 3rem; } }

.about-card-inner .card-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,168,78,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}
.about-card-inner h3 {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
}
.about-card-inner .card-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 0.25rem;
}
.info-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--gray-100);
}
.info-box .info-label {
  font-weight: 500;
  font-size: 0.875rem;
}
.info-box .info-value {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}
.info-box a { color: var(--gold); }
.info-box a:hover { color: var(--gold-light); }

.about-card-deco {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(200,168,78,0.2);
  border-radius: 1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--black);
  padding: 5rem 0;
}
@media(min-width:1024px) { .services { padding: 7rem 0; } }

.services .section-title,
.services .section-desc {
  text-align: center;
}
.services .section-title { color: var(--white); }
.services .section-desc {
  color: var(--white-60);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}
@media(min-width:640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s;
}
.service-card:hover {
  border-color: rgba(200,168,78,0.3);
  background: rgba(200,168,78,0.05);
}

.service-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: rgba(200,168,78,0.1);
  margin-bottom: 1rem;
}
.service-icon svg { color: var(--gold); width: 24px; height: 24px; }

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--white-60);
}

/* ===== PARTNERS CAROUSEL ===== */
.partners {
  background: var(--white);
  padding: 4rem 0 5rem;
}

.partners .section-title { text-align: center; }
.partners .section-desc {
  text-align: center;
  max-width: 36rem;
  margin: 1rem auto 0;
  color: var(--gray-600);
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 6rem;
  height: 100%;
  pointer-events: none;
}
.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.carousel-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  flex-shrink: 0;
  width: 14rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 0 1.5rem;
  transition: all 0.3s;
}
.partner-card:hover {
  border-color: rgba(200,168,78,0.4);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.partner-card span {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
}

/* ===== CONTACT FORM ===== */
.contact {
  background: var(--black);
  padding: 5rem 0;
}
@media(min-width:1024px) { .contact { padding: 7rem 0; } }

.contact-grid {
  display: grid;
  gap: 3rem;
}
@media(min-width:1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact .section-title { color: var(--white); }
.contact .section-desc { color: var(--white-60); }

.contact-info-box {
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-info-box .ci-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gold);
}
.contact-info-box .ci-value {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--white-70);
}
.contact-info-box a { color: var(--white-70); }
.contact-info-box a:hover { color: var(--gold); }

.contact-form-card {
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-xl);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-group label .required { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-40);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.form-group textarea { resize: none; }

.kvkk-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.kvkk-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--gold);
}
.kvkk-consent label {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--white-60);
}
.kvkk-consent a {
  color: var(--gold);
  text-decoration: underline;
}
.kvkk-consent a:hover { color: var(--gold-light); }

.btn-submit {
  width: 100%;
  padding: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3rem 0;
}
@media(min-width:768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer p {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.7;
}

.footer h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--white-60);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.875rem;
  color: var(--white-60);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--white-40);
}

/* ===== TOAST / NOTIFICATION ===== */
.toast {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transform: translateX(120%);
  transition: transform 0.3s ease;
  max-width: 400px;
}
.toast.show { transform: translateX(0); }
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }

/* ===== KVKK PAGE ===== */
.kvkk-header {
  background: var(--black);
  padding: 4rem 0;
}
.kvkk-header a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--white-60);
  margin-bottom: 1.5rem;
}
.kvkk-header a:hover { color: var(--gold); }
.kvkk-header h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
}
@media(min-width:768px) { .kvkk-header h1 { font-size: 2.25rem; } }
.kvkk-header p {
  margin-top: 1rem;
  color: var(--white-60);
}

.kvkk-content {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}
.kvkk-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.kvkk-content p {
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
}
.kvkk-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.kvkk-content li {
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
}
.kvkk-content strong { color: var(--black); }

.kvkk-footer-box {
  border: 1px solid var(--border);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 2rem;
}
.kvkk-footer-box p {
  font-size: 0.875rem;
}

/* ===== ADMIN PANEL ===== */
.admin-body {
  background: var(--black);
  color: var(--white);
  min-height: 100vh;
}

.admin-header {
  border-bottom: 1px solid var(--white-10);
  padding: 1rem 0;
}
.admin-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 700;
}
.admin-logo-text h1 {
  font-size: 0.875rem;
  font-weight: 600;
}
.admin-logo-text p {
  font-size: 0.75rem;
  color: var(--white-50);
}

.btn-logout {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white-70);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-logout:hover {
  border-color: rgba(220,38,38,0.3);
  color: #f87171;
}

.admin-tabs {
  border-bottom: 1px solid var(--white-10);
}
.admin-tabs .container {
  display: flex;
  gap: 0.25rem;
}
.admin-tab {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--white-50);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.admin-tab:hover { color: var(--white-70); }
.admin-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.admin-content {
  padding: 2rem 0;
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.admin-section-header h2 {
  font-size: 1.125rem;
  font-weight: 600;
}
.admin-section-header p {
  font-size: 0.875rem;
  color: var(--white-50);
  margin-top: 0.25rem;
}

.btn-refresh {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white-70);
  font-size: 0.875rem;
  cursor: pointer;
}
.btn-refresh:hover { color: var(--white); }

.admin-card {
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.admin-card-header h3 {
  font-weight: 600;
  color: var(--gold);
}

.admin-form-grid {
  display: grid;
  gap: 1rem;
}
@media(min-width:768px) { .admin-form-grid { grid-template-columns: 1fr 1fr; } }

.admin-form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-60);
  margin-bottom: 0.375rem;
}
.admin-form-group input,
.admin-form-group textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--white);
  background: var(--white-10);
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  outline: none;
  font-family: inherit;
}
.admin-form-group input:focus,
.admin-form-group textarea:focus {
  border-color: var(--gold);
}
.admin-form-group textarea { resize: none; }

.admin-card-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.submission-card {
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.submission-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.submission-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.submission-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.submission-name svg { color: var(--gold); }
.submission-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gold);
}
.submission-phone svg { width: 16px; height: 16px; }
.submission-message {
  font-size: 0.875rem;
  color: var(--white-60);
  line-height: 1.6;
}
.submission-date {
  font-size: 0.75rem;
  color: var(--white-40);
  margin-top: 0.5rem;
}

.btn-delete {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius);
  color: var(--white-40);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-delete:hover {
  background: rgba(220,38,38,0.1);
  color: #f87171;
}

.empty-state {
  text-align: center;
  padding: 4rem 0;
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-xl);
}
.empty-state svg {
  margin: 0 auto 1rem;
  color: var(--white-20);
}
.empty-state p {
  font-size: 0.875rem;
  color: var(--white-50);
}

/* Admin Login */
.admin-login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}
.admin-login-card {
  width: 100%;
  max-width: 28rem;
}
.admin-login-card .card-header {
  text-align: center;
  margin-bottom: 2rem;
}
.admin-login-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(200,168,78,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.admin-login-icon svg { color: var(--gold); width: 28px; height: 28px; }
.admin-login-card h1 {
  font-size: 1.5rem;
  font-weight: 700;
}
.admin-login-card .card-subtitle {
  font-size: 0.875rem;
  color: var(--white-60);
  margin-top: 0.5rem;
}
.admin-login-form {
  border: 1px solid var(--white-10);
  background: var(--white-5);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.password-wrapper {
  position: relative;
}
.password-toggle {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white-40);
  cursor: pointer;
  padding: 0.25rem;
}
.password-toggle:hover { color: var(--white-70); }
.login-error {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #f87171;
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--white-40);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.spinner.dark {
  border-color: var(--black-light);
  border-top-color: var(--gold);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Loading center */
.loading-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}
.loading-center .spinner {
  width: 32px;
  height: 32px;
  border-width: 3px;
}

/* Tab panel visibility */
.tab-panel { display: none; }
.tab-panel.active { display: block; }
