/* ================= PROFILE PAGE CSS ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f0f16;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  padding-top: 60px; /* header height */
  padding-bottom: 70px; /* bottom nav height */
}

/* ===== PROFILE WRAPPER ===== */
.profile-wrapper {
  max-width: 1100px;
  margin: 20px auto;
  padding: 15px;
}

/* ===== HEADER ===== */
.profile-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.profile-header h1 {
  font-size: 24px;
  font-weight: 600;
}

#logoutBtn {
  padding: 8px 20px;
  cursor: pointer;
  background: #d4af37;
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

#logoutBtn:hover {
  background: #b8922c;
}

/* ===== PROFILE CARD ===== */
.profile-card {
  display: flex;
  gap: 30px;
  background: #1a1a24;
  padding: 25px;
  border-radius: 20px;
  flex-wrap: wrap;
}

/* PROFILE LEFT */
.profile-left {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.profile-left img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.profile-left h2 {
  font-size: 18px;
  margin-bottom: 5px;
}

.profile-left span {
  font-size: 14px;
  color: #bcbcbc;
}

/* PROFILE RIGHT */
.profile-right {
  flex: 2;
  min-width: 300px;
}

/* ===== ACCOUNT DETAILS GRID ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.info-box label {
  font-size: 12px;
  color: #bcbcbc;
  display: block;
  margin-bottom: 5px;
}

.info-box p {
  font-size: 14px;
  font-weight: 500;
}

/* ===== PROFILE ACTIONS ===== */
.profile-actions {
  margin-bottom: 20px;
}

.profile-actions a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 500;
  margin-right: 15px;
  display: inline-block;
  transition: all 0.3s ease;
}

.gold-btn {
  background: #d4af37;
  color: #000;
}

.gold-btn:hover {
  background: #b8922c;
}

.dark-btn {
  background: #14141b;
  border: 1px solid #bcbcbc;
  color: #bcbcbc;
}

.dark-btn:hover {
  background: #1f1f29;
}

/* ===== QUOTES / ENQUIRIES ===== */
.quotes-section h3 {
  margin-bottom: 15px;
}

.quote-card {
  background: #1a1a24;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 15px;
  border: 1px solid #2a2a38;
}

.quote-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #bcbcbc;
}

.quote-card .status {
  font-weight: 500;
  text-transform: capitalize;
  color: #d4af37;
}

/* ===== ORIGINAL BOTTOM NAVIGATION ===== */
.app-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #1a1a24;
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  z-index: 999;
}

.app-bottom a {
  text-align: center;
  font-size: 12px;
  color: #bcbcbc;
  text-decoration: none;
}

.app-bottom a i {
  display: block;
  font-size: 20px;
  margin-bottom: 2px;
}

.app-bottom a.active {
  color: #d4af37;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .profile-card {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .profile-right, .profile-left {
    min-width: 100%;
    text-align: center;
  }

  .profile-actions a {
    margin: 10px 5px 0 5px;
    width: 45%;
  }

  .info-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }
}
/* Hide Bottom Navigation on Desktop */
@media (min-width: 769px) {
  .app-bottom {
    display: none !important;
  }

  body {
    padding-bottom: 0; /* remove bottom space on desktop */
  }
}
/* ===== MODAL BACKGROUND ===== */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none; /* IMPORTANT – default closed */
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 15px;
}

/* Show Class */
.modal.show {
  display: flex;
}

/* ===== MODAL BOX ===== */
.modal-box {
  background: #fff;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  border-radius: 14px;
  padding: 15px;
  overflow-y: auto;
  position: relative;
  animation: fadeIn 0.3s ease;
}

/* Close Button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}



/* DARK THEME */

body[data-theme="dark"]{
background:#111;
color:#fff;
}

body[data-theme="dark"] button,
body[data-theme="dark"] .btn{
background:#333;
color:#fff;
}

body[data-theme="dark"] button:hover{
background:#555;
}


/* PINK THEME */

body[data-theme="pink"]{
background:#fff0f6;
}

body[data-theme="pink"] button,
body[data-theme="pink"] .btn{
background:#ff2d8d;
color:#fff;
}

body[data-theme="pink"] button:hover{
background:#e02178;
}


/* BLUE THEME */

body[data-theme="blue"]{
background:#f0f6ff;
}

body[data-theme="blue"] button,
body[data-theme="blue"] .btn{
background:#2979ff;
color:#fff;
}

body[data-theme="blue"] button:hover{
background:#1c5ed6;
}


/* ORANGE THEME */

body[data-theme="orange"]{
background:#fff6ef;
}

body[data-theme="orange"] button,
body[data-theme="orange"] .btn{
background:#ff7a00;
color:#fff;
}

body[data-theme="orange"] button:hover{
background:#e56d00;
}


/* YELLOW THEME */

body[data-theme="yellow"]{
background:#fffdf4;
}

body[data-theme="yellow"] button,
body[data-theme="yellow"] .btn{
background:#d4af37;
color:#fff;
}

body[data-theme="yellow"] button:hover{
background:#b9972d;
}
