.account-hero {
  background: linear-gradient(135deg, #eef6ff, #dcecff);
  padding: 60px 0;
}

.account-hero-box {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 30px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.account-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
}

.account-hero-subtitle {
  color: #1e88e5;
  font-weight: bold;
  margin-bottom: 6px;
}

.account-hero-text h2 {
  font-size: 38px;
  color: #1d3557;
  margin-bottom: 10px;
}

.account-hero-desc {
  color: #4b5563;
  max-width: 650px;
}

.account-hero-status {
  text-align: right;
}

.status-badge {
  display: inline-block;
  background-color: #e7f8ee;
  color: #198754;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.account-hero-status p {
  color: #4b5563;
  font-weight: bold;
}

.account-page {
  padding: 70px 0;
}

.account-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.stat-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 16px;
  background-color: #eef6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.stat-card h3 {
  font-size: 30px;
  color: #1d3557;
  margin-bottom: 4px;
}

.stat-card p {
  color: #4b5563;
}

.account-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.account-section-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.account-section-card.full-width {
  grid-column: 1 / -1;
}

.section-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.section-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background-color: #eef6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.section-header h3 {
  color: #1d3557;
  font-size: 28px;
  margin-bottom: 4px;
}

.section-header p {
  color: #4b5563;
}

.account-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #edf1f5;
}

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

.info-row span {
  color: #4b5563;
}

.info-row strong {
  color: #1d3557;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.quick-btn {
  background-color: #f8fbff;
  border: 1px solid #d9e8fb;
  color: #1565c0;
  font-weight: bold;
  padding: 16px;
  border-radius: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.quick-btn:hover {
  background-color: #e8f2ff;
}

.bookings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.booking-card {
  background-color: #f8fbff;
  border: 1px solid #e2ecf8;
  border-radius: 16px;
  padding: 22px;
}

.booking-top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.booking-top h4 {
  font-size: 22px;
  color: #1d3557;
}

.booking-status {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: bold;
}

.booking-status.active {
  background-color: #e7f8ee;
  color: #198754;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.setting-box {
  background-color: #f8fbff;
  border: 1px solid #e2ecf8;
  border-radius: 16px;
  padding: 22px;
}

.setting-box h4 {
  font-size: 20px;
  color: #1d3557;
  margin-bottom: 10px;
}

.setting-box p {
  color: #4b5563;
  margin-bottom: 14px;
}

.settings-btn {
  background-color: #1e88e5;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.settings-btn:hover {
  background-color: #1565c0;
}

@media (max-width: 1100px) {
  .account-main-grid {
    grid-template-columns: 1fr;
  }

  .account-stats,
  .bookings-grid,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .account-hero-box {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .account-avatar {
    margin: 0 auto;
  }

  .account-hero-status {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .account-hero-text h2 {
    font-size: 30px;
  }

  .section-header h3 {
    font-size: 24px;
  }

  .quick-actions {
    grid-template-columns: 1fr;
  }

  .info-row {
    flex-direction: column;
    gap: 6px;
  }
}