/* ===== BarberPolux Brand Colors ===== */
:root {
  --primary: #7C3AED;
  --primary-dark: #5B21B6;
  --primary-light: #A855F7;
  --dark: #111827;
  --gray: #6B7280;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --border: #E5E7EB;
}

/* ===== Global ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; }

/* ===== Navbar ===== */
.bp-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}

.bp-navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}

.bp-navbar .navbar-brand span {
  color: var(--primary);
}

.bp-navbar .nav-link {
  color: var(--gray) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 1rem !important;
  transition: color 0.2s;
}

.bp-navbar .nav-link:hover,
.bp-navbar .nav-link.active {
  color: var(--primary) !important;
}

.bp-navbar .btn-nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 8px;
  padding: 0.4rem 1.2rem !important;
  font-weight: 600;
  transition: background 0.2s;
}

.bp-navbar .btn-nav-cta:hover {
  background: var(--primary-dark);
}

/* ===== Hero Section ===== */
.bp-hero {
  background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 40%, #faf5ff 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.bp-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bp-hero .badge-pill {
  display: inline-block;
  background: rgba(124,58,237,0.1);
  color: var(--primary);
  border-radius: 50px;
  padding: 0.3rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.bp-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.2rem;
}

.bp-hero h1 span {
  color: var(--primary);
}

.bp-hero p.lead {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(124,58,237,0.18);
  padding: 2.5rem;
  max-width: 420px;
  margin: 0 auto;
}

.hero-card .scissors-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 1.5rem;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.hero-stats .stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  font-weight: 500;
}

/* ===== Buttons ===== */
.btn-primary-bp {
  background: var(--primary);
  color: var(--white) !important;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary-bp:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(124,58,237,0.35);
}

.btn-outline-bp {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-bp:hover {
  background: var(--primary);
  color: var(--white) !important;
}

/* ===== Section Titles ===== */
.bp-section {
  padding: 80px 0;
}

.bp-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bp-section h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.bp-section h2 span {
  color: var(--primary);
}

.bp-section .section-desc {
  color: var(--gray);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ===== Services Cards ===== */
.bp-service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.bp-service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
  transform: translateY(-4px);
}

.bp-service-card .service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(168,85,247,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--primary);
}

.bp-service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}

.bp-service-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ===== Appointment Section ===== */
.bp-appointments {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1040 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.bp-appointments::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.bp-appointments .bp-section-label { color: var(--primary-light); }
.bp-appointments h2 { color: var(--white); }
.bp-appointments .section-desc { color: rgba(255,255,255,0.6); }

.bp-appointments .phone-header {
  color: var(--primary-light);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.bp-appointments .phone-header i { margin-right: 0.4rem; }

.bp-form-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}

.bp-form-card label {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.bp-form-card .form-control,
.bp-form-card select.form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}

.bp-form-card .form-control::placeholder { color: rgba(255,255,255,0.35); }
.bp-form-card .form-control:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.25);
  color: var(--white);
  outline: none;
}

.bp-form-card select.form-control option { background: #1e1040; color: var(--white); }

/* ===== Barber Cards ===== */
.bp-barber-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  text-align: center;
}

.bp-barber-card:hover {
  box-shadow: 0 16px 40px rgba(124,58,237,0.15);
  transform: translateY(-4px);
  border-color: var(--primary);
}

.bp-barber-card .barber-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bp-barber-card .barber-info {
  padding: 1.2rem;
}

.bp-barber-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.bp-barber-card .expertise {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
}

/* ===== Gallery ===== */
.bp-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bp-gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s;
}

.bp-gallery-item:hover img { transform: scale(1.05); }

.bp-gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(124,58,237,0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.bp-gallery-item:hover .overlay { opacity: 1; }

.bp-gallery-item .overlay p {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
}

/* ===== Pricing ===== */
.bp-price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s;
}

.bp-price-card:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
}

.bp-price-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(124,58,237,0.04), rgba(168,85,247,0.04));
}

.bp-price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.bp-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.bp-price-item:last-child { border-bottom: none; }
.bp-price-item .service-name { color: var(--dark); font-weight: 500; }
.bp-price-item .service-price { color: var(--primary); font-weight: 700; }

/* ===== Reviews ===== */
.bp-reviews {
  background: var(--light);
  padding: 80px 0;
}

.bp-review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1.5px solid var(--border);
  margin-bottom: 1.5rem;
}

.bp-review-card .stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 0.6rem; }
.bp-review-card .comment { color: var(--gray); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.8rem; }
.bp-review-card .reviewer { font-weight: 700; font-size: 0.85rem; color: var(--dark); }
.bp-review-card .reviewer-barber { font-size: 0.78rem; color: var(--primary); }

/* ===== Footer ===== */
.bp-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}

.bp-footer .footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.bp-footer .footer-brand span { color: var(--primary-light); }

.bp-footer .footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.bp-footer h5 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.bp-footer ul { list-style: none; padding: 0; margin: 0; }

.bp-footer ul li { margin-bottom: 0.6rem; }

.bp-footer ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.bp-footer ul li a:hover { color: var(--primary-light); }

.bp-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.bp-footer .footer-contact .icon-label {
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.bp-footer .footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2rem 0 1.5rem;
}

.bp-footer .footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.bp-footer .social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }

.bp-footer .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.2s;
}

.bp-footer .social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== Review Modal ===== */
.bp-modal .modal-content { border-radius: 16px; border: none; }
.bp-modal .modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
}
.bp-modal .modal-title { font-weight: 700; color: var(--dark); }
.bp-modal .modal-body { padding: 1.5rem; }

/* ===== Management Buttons ===== */
.btn-add {
  background: var(--primary) !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-add:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  border-color: transparent !important;
  transform: none !important;
}

.btn-cancel {
  background: #EF4444 !important;
  color: var(--white) !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600 !important;
}

.btn-cancel:hover {
  background: #DC2626 !important;
  color: var(--white) !important;
  border-color: transparent !important;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .bp-hero { min-height: auto; padding: 60px 0 40px; }
  .bp-hero h1 { font-size: 2.4rem; }
  .bp-hero .hero-card { margin-top: 2.5rem; }
  .bp-section h2 { font-size: 1.8rem; }
}

@media (max-width: 767px) {
  .bp-hero h1 { font-size: 2rem; }
  .bp-hero p.lead { font-size: 1rem; }
  .bp-section { padding: 50px 0; }
  .bp-appointments { padding: 50px 0; }
  .bp-form-card { padding: 1.5rem; }
  .bp-hero .hero-stats { gap: 1rem; }
}
