* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1db954;
  --primary-dark: #17a045;
  --dark: #1a1a2e;
  --gray: #f5f7fa;
  --text: #2d2d2d;
  --text-light: #777;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.09);
  --radius: 14px;
}

body { font-family: 'Segoe UI', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.logo span { color: var(--dark); }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.93rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; gap: 10px; }

.btn { padding: 10px 22px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: 10px; }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2a2a4e; }

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 60%, #16213e 100%);
  color: var(--white);
  padding: 90px 6% 80px;
  display: flex; align-items: center; gap: 60px;
  min-height: 88vh;
}
.hero-content { flex: 1; max-width: 560px; }
.hero-badge {
  display: inline-block;
  background: rgba(29,185,84,0.15); color: var(--primary);
  border: 1px solid rgba(29,185,84,0.3);
  padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0.5px;
}
.hero h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.15; margin-bottom: 18px; }
.hero h1 span { color: var(--primary); }
.hero p { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.75; }

.hero-search {
  display: flex; background: var(--white);
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3); margin-bottom: 40px;
}
.hero-search input { flex: 1; padding: 16px 20px; border: none; outline: none; font-size: 0.95rem; color: var(--text); }
.hero-search button { padding: 16px 28px; background: var(--primary); color: var(--white); border: none; font-weight: 700; cursor: pointer; transition: background 0.2s; }
.hero-search button:hover { background: var(--primary-dark); }

.hero-stats { display: flex; gap: 36px; }
.stat h3 { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.stat p { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hero-image { flex: 1; display: flex; justify-content: center; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 400px; }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 24px 18px; text-align: center;
  backdrop-filter: blur(10px); cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}
.hero-card:hover { transform: translateY(-6px); background: rgba(29,185,84,0.15); border-color: var(--primary); }
.hero-card .icon { font-size: 2.2rem; margin-bottom: 10px; }
.hero-card p { font-size: 0.83rem; color: rgba(255,255,255,0.8); font-weight: 500; }

/* SECTIONS */
section { padding: 80px 6%; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.section-header p { color: var(--text-light); font-size: 0.97rem; max-width: 480px; margin: 0 auto; }
.tag { display: inline-block; background: rgba(29,185,84,0.1); color: var(--primary); padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }

/* SERVICES */
.services { background: var(--gray); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 18px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 18px; text-align: center;
  box-shadow: var(--shadow); cursor: pointer;
  transition: all 0.3s; border: 2px solid transparent;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--primary); box-shadow: 0 12px 30px rgba(29,185,84,0.15); }
.service-icon { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin: 0 auto 16px; }
.service-card h3 { font-size: 0.97rem; font-weight: 700; margin-bottom: 5px; }
.service-card p { font-size: 0.8rem; color: var(--text-light); }

/* HOW IT WORKS */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; }
.step { text-align: center; padding: 32px 22px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.step-num { width: 48px; height: 48px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 16px; }
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* PROFESSIONALS */
.pros { background: var(--gray); }
.pros-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.pro-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.pro-card:hover { transform: translateY(-6px); }
.pro-avatar { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.pro-info { padding: 18px; }
.pro-info h3 { font-size: 0.97rem; font-weight: 700; }
.pro-info .role { font-size: 0.8rem; color: var(--primary); font-weight: 600; margin: 4px 0 10px; }
.pro-meta { display: flex; justify-content: space-between; align-items: center; }
.rating { font-size: 0.85rem; color: #f59e0b; font-weight: 600; }
.jobs { font-size: 0.78rem; color: var(--text-light); }
.pro-badge { display: inline-block; background: rgba(29,185,84,0.1); color: var(--primary); font-size: 0.73rem; padding: 3px 10px; border-radius: 20px; font-weight: 600; margin-top: 10px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: var(--gray); }
.reviewer-info h4 { font-size: 0.88rem; font-weight: 700; }
.reviewer-info span { font-size: 0.76rem; color: var(--text-light); }

/* APP BANNER */
.app-banner {
  background: linear-gradient(135deg, #0f3460, #1a1a2e);
  color: var(--white); display: flex; align-items: center;
  justify-content: space-between; gap: 40px;
  border-radius: 20px; padding: 56px 60px;
  margin: 0 6% 80px;
}
.app-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.app-banner p { color: rgba(255,255,255,0.68); margin-bottom: 26px; font-size: 0.93rem; }
.app-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.app-btn { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); padding: 12px 22px; border-radius: 10px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.app-btn:hover { background: var(--primary); border-color: var(--primary); }
.app-btn .app-icon { font-size: 1.4rem; }
.app-mockup { font-size: 7rem; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 60px 6% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand .logo { font-size: 1.4rem; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.86rem; line-height: 1.75; max-width: 250px; }
.footer-col h4 { color: var(--white); font-size: 0.93rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.86rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.09); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 34px; height: 34px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; transition: background 0.2s; }
.social-links a:hover { background: var(--primary); }

/* SERVICES PAGE */
.page-hero { background: linear-gradient(135deg, #0f3460, #1a1a2e); color: var(--white); padding: 60px 6%; text-align: center; }
.page-hero h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.68); font-size: 0.97rem; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; padding: 24px 6%; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: sticky; top: 68px; z-index: 10; }
.filter-btn { padding: 8px 20px; border-radius: 20px; border: 2px solid #e0e0e0; background: var(--white); font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text); }
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.services-list { padding: 44px 6%; background: var(--gray); }
.service-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; }
.service-list-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s; }
.service-list-card:hover { transform: translateY(-5px); }
.card-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.card-body { padding: 18px; }
.card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.card-body p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.6; }
.card-footer { display: flex; justify-content: space-between; align-items: center; padding: 12px 18px; border-top: 1px solid #f0f0f0; }
.price { font-size: 1rem; font-weight: 800; color: var(--primary); }
.price span { font-size: 0.76rem; color: var(--text-light); font-weight: 400; }

/* BOOKING PAGE */
.booking-container { display: grid; grid-template-columns: 1fr 360px; gap: 28px; padding: 44px 6%; background: var(--gray); min-height: calc(100vh - 68px); }
.booking-form-section { background: var(--white); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow); }
.booking-form-section h2 { font-size: 1.45rem; font-weight: 800; margin-bottom: 26px; }

.progress-bar { display: flex; align-items: flex-start; margin-bottom: 34px; }
.progress-step { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
.progress-step::after { content: ''; position: absolute; top: 17px; left: 50%; width: 100%; height: 2px; background: #e0e0e0; z-index: 0; }
.progress-step:last-child::after { display: none; }
.step-circle { width: 34px; height: 34px; border-radius: 50%; background: #e0e0e0; color: var(--text-light); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.88rem; z-index: 1; transition: all 0.3s; }
.progress-step.active .step-circle, .progress-step.done .step-circle { background: var(--primary); color: var(--white); }
.step-label { font-size: 0.72rem; color: var(--text-light); margin-top: 6px; font-weight: 500; }
.progress-step.active .step-label { color: var(--primary); font-weight: 700; }

.form-step { display: none; }
.form-step.active { display: block; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 15px; border: 2px solid #e8e8e8; border-radius: 8px; font-size: 0.9rem; outline: none; transition: border-color 0.2s; font-family: inherit; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 90px; }

.time-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.time-slot { padding: 9px; border: 2px solid #e8e8e8; border-radius: 8px; text-align: center; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.time-slot:hover, .time-slot.selected { border-color: var(--primary); background: rgba(29,185,84,0.08); color: var(--primary); }

.form-nav { display: flex; justify-content: space-between; margin-top: 26px; }

/* ORDER SUMMARY */
.order-summary { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); height: fit-content; position: sticky; top: 100px; }
.order-summary h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid #f0f0f0; }
.summary-service { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid #f0f0f0; }
.summary-icon { font-size: 2rem; }
.summary-service h4 { font-size: 0.93rem; font-weight: 700; }
.summary-service p { font-size: 0.8rem; color: var(--text-light); margin-top: 3px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.86rem; margin-bottom: 9px; color: var(--text-light); }
.summary-row.total { font-size: 0.97rem; font-weight: 800; color: var(--text); border-top: 1px solid #f0f0f0; padding-top: 12px; margin-top: 4px; }
.summary-row.total span:last-child { color: var(--primary); }
.promo-input { display: flex; gap: 8px; margin: 16px 0; }
.promo-input input { flex: 1; padding: 9px 13px; border: 2px solid #e8e8e8; border-radius: 8px; font-size: 0.83rem; outline: none; }
.promo-input input:focus { border-color: var(--primary); }
.promo-input button { padding: 9px 14px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-weight: 700; font-size: 0.83rem; cursor: pointer; }

/* MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9999; align-items: center; justify-content: center; }
.modal-overlay.show { display: flex; }
.modal { background: var(--white); border-radius: 20px; padding: 46px 38px; text-align: center; max-width: 400px; width: 90%; animation: popIn 0.3s ease; }
@keyframes popIn { from { transform: scale(0.8); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.modal .check { font-size: 4rem; margin-bottom: 14px; }
.modal h2 { font-size: 1.45rem; font-weight: 800; margin-bottom: 10px; }
.modal p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 26px; line-height: 1.65; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 60px 5%; text-align: center; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-container { grid-template-columns: 1fr; }
  .app-banner { flex-direction: column; text-align: center; padding: 40px 28px; margin: 0 4% 60px; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 1.7rem; }
  .time-slots { grid-template-columns: repeat(2, 1fr); }
}

/* ── PAYMENT METHODS ── */
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.pay-option {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border: 2px solid #e8e8e8;
  border-radius: 10px; cursor: pointer; transition: all 0.2s;
}
.pay-option:hover { border-color: var(--primary); background: rgba(29,185,84,0.04); }
.pay-option.active { border-color: var(--primary); background: rgba(29,185,84,0.08); }
.pay-icon { font-size: 1.8rem; }
.pay-option div strong { display: block; font-size: 0.93rem; font-weight: 700; }
.pay-option div small { font-size: 0.78rem; color: var(--text-light); }

.upi-apps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.upi-app {
  padding: 12px 8px; border: 2px solid #e8e8e8; border-radius: 10px;
  text-align: center; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.upi-app:hover, .upi-app.selected { border-color: var(--primary); background: rgba(29,185,84,0.08); color: var(--primary); }
.upi-note { background: #fffde7; border: 1px solid #ffe082; border-radius: 8px; padding: 12px 14px; font-size: 0.83rem; color: #795548; margin-top: 4px; }

.cod-info { text-align: center; padding: 28px 20px; background: var(--gray); border-radius: 12px; }
.cod-icon { font-size: 3.5rem; margin-bottom: 12px; }
.cod-info h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.cod-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.cod-badge { display: inline-block; background: rgba(29,185,84,0.12); color: var(--primary); padding: 6px 18px; border-radius: 20px; font-size: 0.82rem; font-weight: 700; }

/* ── AUTH MODAL ── */
.auth-modal {
  background: var(--white); border-radius: 20px;
  padding: 36px 32px; width: 100%; max-width: 420px;
  position: relative; animation: popIn 0.3s ease;
  max-height: 90vh; overflow-y: auto;
}
.auth-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; font-size: 1.2rem;
  cursor: pointer; color: var(--text-light); line-height: 1;
}
.auth-close:hover { color: var(--text); }
.auth-tabs { display: flex; background: var(--gray); border-radius: 10px; padding: 4px; margin-bottom: 24px; }
.auth-tab { flex: 1; padding: 9px; border: none; background: transparent; font-size: 0.9rem; font-weight: 600; cursor: pointer; border-radius: 8px; color: var(--text-light); transition: all 0.2s; }
.auth-tab.active { background: var(--white); color: var(--primary); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.auth-header { text-align: center; margin-bottom: 24px; }
.auth-icon { font-size: 2.4rem; margin-bottom: 8px; }
.auth-header h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 4px; }
.auth-header p { font-size: 0.85rem; color: var(--text-light); }
.auth-forgot { text-align: right; margin-top: -12px; margin-bottom: 18px; }
.auth-forgot a { font-size: 0.82rem; color: var(--primary); font-weight: 600; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #e8e8e8; }
.auth-divider span { font-size: 0.8rem; color: var(--text-light); white-space: nowrap; }
.social-auth { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn { padding: 10px; border: 2px solid #e8e8e8; border-radius: 8px; background: var(--white); font-size: 0.86rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.social-btn:hover { border-color: var(--primary); color: var(--primary); }
.auth-switch { text-align: center; font-size: 0.84rem; color: var(--text-light); margin-top: 18px; }
.auth-switch a { color: var(--primary); font-weight: 700; }
.pass-wrap { position: relative; }
.pass-wrap input { padding-right: 44px; }
.pass-toggle { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); cursor: pointer; font-size: 1rem; user-select: none; }

/* ── PROFILE AVATAR & DROPDOWN ── */
.profile-wrap { position: relative; }
.profile-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  border: 2px solid var(--primary); transition: box-shadow 0.2s;
  user-select: none;
}
.profile-avatar:hover { box-shadow: 0 0 0 3px rgba(29,185,84,0.25); }

.profile-dropdown {
  display: none; position: absolute; top: 52px; right: 0;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  min-width: 220px; z-index: 9999;
  border: 1px solid #f0f0f0;
  overflow: hidden;
  animation: popIn 0.2s ease;
}
.profile-dropdown.show { display: block; }

.profile-dropdown-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; background: var(--gray);
  border-bottom: 1px solid #ebebeb;
}
.profile-avatar-lg {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.profile-dropdown-header strong { display: block; font-size: 0.93rem; font-weight: 700; color: var(--text); }
.profile-dropdown-header span { font-size: 0.76rem; color: var(--primary); font-weight: 600; }

.dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px; font-size: 0.88rem; font-weight: 500;
  color: var(--text); transition: background 0.15s;
  cursor: pointer;
}
.dropdown-item:hover { background: var(--gray); color: var(--primary); }
.dropdown-divider { height: 1px; background: #f0f0f0; margin: 4px 0; }
.dropdown-item.logout { color: #e53935; }
.dropdown-item.logout:hover { background: #fff5f5; color: #e53935; }

/* ── MY BOOKINGS PAGE ── */
.mybookings-container { max-width: 860px; margin: 0 auto; padding: 40px 5% 80px; }

.booking-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.booking-tab { padding: 9px 22px; border-radius: 20px; border: 2px solid #e0e0e0; background: var(--white); font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text); }
.booking-tab:hover, .booking-tab.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

.booking-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 20px; overflow: hidden; border: 1px solid #f0f0f0; }
.booking-card-top { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #f5f5f5; }
.booking-service-info { display: flex; align-items: center; gap: 14px; }
.booking-icon { font-size: 2.2rem; width: 52px; height: 52px; background: var(--gray); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.booking-service-info h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }
.booking-category { font-size: 0.8rem; color: var(--text-light); }

.booking-status { padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.status-confirmed  { background: #e8f5e9; color: #2e7d32; }
.status-completed  { background: #e3f2fd; color: #1565c0; }
.status-cancelled  { background: #ffebee; color: #c62828; }

.booking-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 4px 0; }
.booking-detail { display: flex; flex-direction: column; gap: 3px; padding: 12px 24px; border-bottom: 1px solid #f8f8f8; }
.bd-label { font-size: 0.75rem; color: var(--text-light); font-weight: 600; }
.booking-detail span:last-child { font-size: 0.9rem; font-weight: 500; color: var(--text); }

.booking-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 16px 24px; background: var(--gray); }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.empty-state p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 28px; }

@media (max-width: 600px) {
  .booking-details-grid { grid-template-columns: 1fr; }
  .booking-card-top { flex-direction: column; align-items: flex-start; gap: 12px; }
}
