* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #07070c;
  color: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  width: 100%;
  padding: 18px 7%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(7, 7, 12, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.45));
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.4px;
}

.logo-text span {
  font-size: 0.72rem;
  color: #a78bfa;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: #c8c8d2;
  font-size: 0.92rem;
  transition: 0.3s;
}

.nav a:hover {
  color: #a78bfa;
}

.header-btn {
  padding: 12px 18px;
  border-radius: 999px;
  background: #8b5cf6;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  min-height: 100vh;
  padding: 150px 7% 80px;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
  gap: 50px;
  background:
    radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.30), transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(80, 60, 200, 0.20), transparent 30%),
    linear-gradient(135deg, #07070c, #101020);
}

.tag,
.mini-tag {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.38);
  color: #c4b5fd;
  font-size: 0.82rem;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.04;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.hero p {
  max-width: 760px;
  color: #c6c6d1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  border: none;
  cursor: pointer;
  padding: 15px 24px;
  border-radius: 15px;
  font-weight: 800;
  transition: 0.3s;
}

.btn-primary {
  background: #8b5cf6;
  color: #ffffff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.hero-card {
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.hero-card h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-list span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.15);
  color: #ddd6fe;
  font-size: 0.85rem;
}

.section {
  padding: 90px 7%;
}

.dark-section {
  background: #0c0c14;
}

.section-title {
  max-width: 850px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-title h2,
.content-grid h2,
.future-card h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.section-title p,
.content-grid p,
.future-card p {
  color: #bdbdcc;
  line-height: 1.8;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.booking-card,
.summary-card,
.client-panel,
.metric-card,
.chart-card,
.table-card,
.explain-box,
.future-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.steps span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #aaaab7;
  font-size: 0.82rem;
}

.steps .active {
  background: #8b5cf6;
  color: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #dddded;
  font-weight: 700;
  font-size: 0.92rem;
}

select,
input,
textarea {
  width: 100%;
  padding: 15px;
  border-radius: 15px;
  background: #10101a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.11);
  outline: none;
}

textarea {
  min-height: 110px;
  resize: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: #8b5cf6;
}

.calendar-box {
  margin-top: 14px;
  padding: 24px;
  border-radius: 24px;
  background: #10101a;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.calendar-header h3 {
  font-size: 1.2rem;
}

.calendar-header button {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: #8b5cf6;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.5rem;
}

.weekdays,
.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.weekdays span {
  text-align: center;
  color: #9494a2;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.day {
  min-height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: pointer;
  transition: 0.25s;
}

.day.available {
  background: rgba(139, 92, 246, 0.13);
  border-color: rgba(139, 92, 246, 0.45);
}

.day.available:hover,
.day.selected {
  background: #8b5cf6;
  transform: translateY(-2px);
}

.day.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.slots-box {
  margin-top: 26px;
}

.slots-box h3,
.client-form h3 {
  margin-bottom: 15px;
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.slots p {
  color: #aaaab7;
}

.slot {
  padding: 12px 17px;
  border-radius: 13px;
  background: #10101a;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.11);
  cursor: pointer;
}

.slot.active {
  background: #8b5cf6;
}

.client-form {
  margin-top: 28px;
}

.summary-card {
  position: sticky;
  top: 110px;
}

.summary-card h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-item span {
  color: #aaaab7;
}

.summary-item strong {
  text-align: right;
}

.full {
  width: 100%;
  margin-top: 24px;
}

.confirmation {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.hidden {
  display: none;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}

.client-panel {
  background:
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.17), transparent 35%),
    rgba(255, 255, 255, 0.055);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.panel-header p {
  color: #aaaab7;
}

.panel-header span {
  height: fit-content;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.15);
  color: #c4b5fd;
  font-size: 0.8rem;
}

.client-appointment {
  padding: 18px;
  border-radius: 20px;
  background: #10101a;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.client-appointment.active {
  border: 1px solid rgba(139, 92, 246, 0.55);
}

.client-appointment p,
.client-appointment span {
  color: #aaaab7;
  font-size: 0.9rem;
}

.client-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.client-info-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.client-info-grid strong {
  display: block;
  font-size: 1.6rem;
  color: #c4b5fd;
}

.client-info-grid span {
  color: #aaaab7;
  font-size: 0.8rem;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-card span {
  color: #aaaab7;
  font-size: 0.88rem;
}

.metric-card strong {
  display: block;
  font-size: 1.75rem;
  margin: 10px 0;
  color: #ffffff;
}

.metric-card p {
  color: #aaaab7;
  font-size: 0.85rem;
  line-height: 1.6;
}

.chart-card.large {
  grid-column: span 3;
}

.chart-card {
  min-height: 360px;
}

.chart-header {
  margin-bottom: 24px;
}

.chart-header p {
  color: #aaaab7;
  font-size: 0.9rem;
}

.bar-chart {
  height: 250px;
  display: flex;
  align-items: end;
  gap: 14px;
  padding-top: 20px;
}

.bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bar {
  width: 100%;
  min-height: 20px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #a78bfa, #7c3aed);
  position: relative;
  transition: 0.3s;
}

.bar:hover {
  transform: translateY(-5px);
}

.bar-value {
  font-size: 0.75rem;
  color: #ddd6fe;
  margin-bottom: 8px;
}

.bar-label {
  margin-top: 10px;
  color: #aaaab7;
  font-size: 0.78rem;
}

.cost-list {
  display: grid;
  gap: 22px;
}

.cost-list div span {
  color: #aaaab7;
  font-size: 0.9rem;
}

.cost-list div strong {
  display: block;
  margin: 6px 0 9px;
}

.progress {
  width: 100%;
  height: 10px;
  background: #10101a;
  border-radius: 999px;
  overflow: hidden;
}

.progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #c4b5fd);
  border-radius: 999px;
}

.table-card {
  grid-column: span 4;
}

.table-card h3 {
  margin-bottom: 18px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 0.7fr 0.8fr;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #d7d7e2;
}

.table-row.head {
  color: #aaaab7;
  font-size: 0.85rem;
}

.status {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.confirmed {
  background: rgba(34, 197, 94, 0.13);
  color: #86efac;
}

.pending {
  background: rgba(245, 158, 11, 0.14);
  color: #fcd34d;
}

.explain-section {
  background: #0c0c14;
}

.explain-box p {
  margin-bottom: 18px;
}

.explain-list {
  display: grid;
  gap: 16px;
}

.explain-list div {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.explain-list strong {
  display: block;
  color: #c4b5fd;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.explain-list p {
  color: #d7d7e2;
}

.future-section {
  background:
    radial-gradient(circle at center, rgba(139, 92, 246, 0.22), transparent 38%),
    #07070c;
}

.future-card {
  max-width: 1150px;
  margin: auto;
  text-align: center;
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.future-grid div {
  padding: 24px;
  border-radius: 22px;
  background: #10101a;
  text-align: left;
}

.future-grid h3 {
  color: #c4b5fd;
  margin-bottom: 10px;
}

/* FOOTER PREMIUM */
.footer {
  margin-top: 80px;
  padding: 60px 7% 30px;
  background: #0b0b12;
  color: #aaaab7;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand img {
  width: 50px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

.footer-brand p {
  color: #aaaab7;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  text-align: center;
}

.footer-links h4,
.footer-cta h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-links > a {
  display: block;
  margin-bottom: 10px;
  color: #c8c8d2;
  font-size: 0.9rem;
}

.footer-links > a:hover {
  color: #a78bfa;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 12px;
}

.social-icon {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px;
  min-height: 46px;
  border-radius: 13px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #c8c8d2;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 0 !important;
  margin: 0 !important;
  line-height: 0 !important;
  font-size: 0 !important;

  transition: 0.3s ease;
}

.social-icon svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  position: static !important;
  transform: translateY(0) !important;
  stroke-width: 2;
}

.social-icon:hover {
  background: #8b5cf6;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139,92,246,0.4);
}

.footer-cta .btn-primary {
  margin-top: 10px;
  display: inline-block;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  color: #aaaab7;
  font-size: 0.85rem;
}

@media (max-width: 1050px) {
  .nav,
  .header-btn {
    display: none;
  }

  .hero,
  .booking-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }

  .admin-dashboard {
    grid-template-columns: 1fr 1fr;
  }

  .chart-card.large,
  .table-card {
    grid-column: span 2;
  }

  .future-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .header {
    padding: 14px 5%;
  }

  .logo-img {
    width: 42px;
    height: 42px;
  }

  .logo-text strong {
    font-size: 0.95rem;
  }

  .logo-text span {
    font-size: 0.66rem;
  }

  .section,
  .hero {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero {
    padding-top: 130px;
  }

  .form-grid,
  .admin-dashboard,
  .client-info-grid {
    grid-template-columns: 1fr;
  }

  .chart-card.large,
  .table-card {
    grid-column: span 1;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}