/* =============================================
   BEAUTY SALON CMS - Main Stylesheet
   Modern, Feminine, Mobile-First
   ============================================= */

:root {
  --accent: #e91e8c;
  --accent-dark: #b5006d;
  --accent-light: #ffd6eb;
  --black: #0d0a0f;
  --dark: #1a1020;
  --gray-dark: #3d2e45;
  --gray: #8b7a94;
  --gray-light: #e8dff0;
  --white: #ffffff;
  --bg: #fdf8fc;
  --card-bg: #ffffff;
  --border: rgba(233,30,140,0.12);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
  --container: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--black); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* Container */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(13,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(233,30,140,0.15);
  transition: var(--transition);
}
.site-header.scrolled { padding: 12px 0; background: rgba(13,10,15,0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: 0.5px; }
.logo-icon { color: var(--accent); font-size: 18px; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.nav-link { color: rgba(255,255,255,0.75); padding: 8px 14px; border-radius: 8px; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(233,30,140,0.15); }
.btn-nav { background: var(--accent); color: var(--white) !important; padding: 10px 20px; border-radius: 25px; font-size: 13px; font-weight: 600; margin-left: 8px; transition: var(--transition); }
.btn-nav:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0d0a0f 0%, #1f0a1a 40%, #2d0f2a 70%, #0d0a0f 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(233,30,140,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 30% 80%, rgba(147,0,95,0.15) 0%, transparent 50%);
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.25); }
.hero .container { position: relative; z-index: 1; padding-top: 100px; padding-bottom: 60px; }
.hero-content { max-width: 700px; }
.hero-eyebrow { display: inline-block; color: var(--accent); font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(48px, 8vw, 88px); font-weight: 300; color: var(--white); line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--accent); color: var(--white); border-radius: 50px; font-weight: 600; font-size: 15px; transition: var(--transition); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.4); }
.btn-primary.btn-large { padding: 18px 40px; font-size: 16px; }
.btn-ghost { display: inline-flex; align-items: center; padding: 14px 32px; background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.2); border-radius: 50px; font-weight: 500; font-size: 15px; transition: var(--transition); backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.btn-outline { display: inline-flex; align-items: center; padding: 12px 28px; background: transparent; color: var(--accent); border: 2px solid var(--accent); border-radius: 50px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.btn-outline:hover { background: var(--accent); color: var(--white); }
.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-display); font-size: 36px; font-weight: 600; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-indicator { width: 2px; height: 50px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:1;transform:scaleY(1)}50%{opacity:0.5;transform:scaleY(0.7)} }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-eyebrow { display: inline-block; color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(32px, 5vw, 52px); font-weight: 400; color: var(--black); line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 16px; }
.section-cta { text-align: center; margin-top: 48px; }
.page-hero { padding: 140px 0 64px; background: linear-gradient(135deg, var(--dark) 0%, #2d0f2a 100%); text-align: center; }
.page-hero .section-eyebrow { display: block; margin-bottom: 12px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(40px,6vw,72px); color: var(--white); font-weight: 300; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 500px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img { height: 200px; overflow: hidden; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-icon-placeholder { background: linear-gradient(135deg, var(--accent-light), #f5d0e8); display: flex; align-items: center; justify-content: center; }
.service-icon { font-size: 48px; color: var(--accent); }
.service-body { padding: 24px; }
.service-category { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.service-body h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; color: var(--black); }
.service-body p { color: var(--gray); font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.service-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 14px; color: var(--gray); }
.service-price { font-weight: 700; color: var(--accent); font-size: 18px; }
.btn-service { display: block; text-align: center; padding: 10px 20px; background: var(--accent-light); color: var(--accent); border-radius: 25px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-service:hover { background: var(--accent); color: var(--white); }
.services-category-block { margin-bottom: 64px; }
.cat-title { font-family: var(--font-display); font-size: 32px; font-weight: 400; margin-bottom: 32px; display: flex; align-items: center; gap: 16px; }
.cat-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* ===== GALLERY ===== */
.gallery-masonry { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-large { grid-column: span 1; grid-row: span 2; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-sm); aspect-ratio: 1; cursor: pointer; }
.gallery-large { aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: var(--transition); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 14px; font-weight: 600; }
.gallery-full .gallery-item { aspect-ratio: 1; }
.gallery-filter { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.gf-btn { padding: 8px 20px; border-radius: 25px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--border); color: var(--gray); transition: var(--transition); background: transparent; }
.gf-btn.active, .gf-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ===== ABOUT ===== */
.about-banner { background: linear-gradient(135deg, #fdf5fa, var(--bg)); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .section-eyebrow { display: block; margin-bottom: 12px; }
.about-text h2 { font-family: var(--font-display); font-size: clamp(32px,4vw,48px); font-weight: 400; margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 32px; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.feature-item p { color: var(--gray); font-size: 14px; margin: 0; }
.about-image-grid { position: relative; }
.ab-img { border-radius: var(--radius); overflow: hidden; }
.ab-img-1 { height: 380px; }
.ab-img-2 { height: 200px; margin-top: 16px; width: 70%; margin-left: auto; }
.ab-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent-light), #f0d0ea); display: flex; align-items: center; justify-content: center; }
.img-placeholder span { font-size: 48px; color: var(--accent); }
.about-badge { position: absolute; top: -20px; left: -20px; background: var(--accent); color: var(--white); border-radius: var(--radius); padding: 20px 24px; text-align: center; box-shadow: 0 8px 24px rgba(233,30,140,0.3); }
.badge-num { display: block; font-family: var(--font-display); font-size: 42px; font-weight: 600; line-height: 1; }
.badge-text { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 28px; }
.team-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; padding: 36px 24px; border: 1px solid var(--border); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; border: 3px solid var(--accent-light); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 32px; font-weight: 600; }
.team-info h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.team-role { color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }
.team-info p { color: var(--gray); font-size: 14px; margin-top: 12px; line-height: 1.6; }
.btn-team { display: inline-block; margin-top: 20px; padding: 10px 20px; background: var(--accent-light); color: var(--accent); border-radius: 25px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-team:hover { background: var(--accent); color: var(--white); }
.team-grid-large { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.team-avatar-large { width: 140px; height: 140px; }
.av-lg { font-size: 48px; }
.team-phone { color: var(--gray); font-size: 14px; margin-top: 12px; }
.team-bio { color: var(--gray); font-size: 14px; margin-top: 8px; line-height: 1.7; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: var(--card-bg); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 24px; }
.blog-cat { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.blog-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; line-height: 1.4; }
.blog-body h3 a:hover { color: var(--accent); }
.blog-body p { color: var(--gray); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 12px; color: var(--gray); flex-wrap: wrap; }
.read-more { color: var(--accent); font-weight: 600; font-size: 13px; }
.blog-cats { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.bcat { padding: 7px 18px; border-radius: 25px; border: 1.5px solid var(--border); color: var(--gray); font-size: 13px; font-weight: 500; transition: var(--transition); }
.bcat.active, .bcat:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.blog-single-hero { padding: 120px 0 0; background: linear-gradient(135deg, var(--dark), #2d0f2a); }
.bs-hero-img { height: 400px; margin-top: 40px; overflow: hidden; }
.bs-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.bs-header { padding: 48px 0 48px; color: var(--white); max-width: 780px; }
.bs-header h1 { font-family: var(--font-display); font-size: clamp(32px,5vw,56px); font-weight: 300; margin: 12px 0 16px; }
.bs-meta { display: flex; gap: 20px; color: rgba(255,255,255,0.6); font-size: 13px; }
.bs-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.bs-content { line-height: 1.8; }
.bs-content h2 { font-family: var(--font-display); font-size: 28px; margin: 32px 0 12px; }
.bs-content p { margin-bottom: 16px; color: #444; }
.bs-sidebar { position: sticky; top: 100px; }
.sidebar-box { background: var(--card-bg); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; border: 1px solid var(--border); }
.sidebar-box h4 { font-size: 16px; margin-bottom: 10px; }
.sidebar-box p { color: var(--gray); font-size: 14px; }
.related-post { padding: 12px 0; border-bottom: 1px solid var(--border); }
.related-post:last-child { border: none; }
.related-post a { font-size: 14px; font-weight: 500; display: block; margin-bottom: 4px; }
.related-post a:hover { color: var(--accent); }
.related-post small { color: var(--gray); font-size: 12px; }

/* ===== BOOKING ===== */
.booking-section { padding-top: 48px; }
.booking-steps { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 48px; }
.bstep { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.bstep-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-light); color: var(--gray); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; transition: var(--transition); }
.bstep span { font-size: 12px; color: var(--gray); font-weight: 500; }
.bstep.active .bstep-num { background: var(--accent); color: var(--white); box-shadow: 0 4px 12px rgba(233,30,140,0.3); }
.bstep.active span { color: var(--accent); font-weight: 600; }
.bstep.done .bstep-num { background: #d4f4e0; color: #2d8a50; }
.bstep-line { flex: 1; max-width: 60px; height: 2px; background: var(--gray-light); }
.booking-container { max-width: 720px; margin: 0 auto; background: var(--card-bg); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.booking-step-content { display: none; }
.booking-step-content.active { display: block; }
.booking-step-content h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin-bottom: 24px; }
.service-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.cat-tab { padding: 7px 16px; border-radius: 20px; background: var(--gray-light); color: var(--gray); font-size: 13px; font-weight: 500; transition: var(--transition); border: none; cursor: pointer; }
.cat-tab.active { background: var(--accent); color: var(--white); }
.cat-panel { display: none; flex-direction: column; gap: 12px; }
.cat-panel.active { display: flex; }
.service-select-card { display: flex; align-items: center; gap: 16px; padding: 18px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); background: var(--bg); }
.service-select-card:hover { border-color: var(--accent); background: #fff5fb; }
.service-select-card.selected { border-color: var(--accent); background: #fff0f8; }
.ssc-info { flex: 1; }
.ssc-info h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.ssc-info p { color: var(--gray); font-size: 13px; margin-bottom: 8px; }
.ssc-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray); }
.ssc-price { font-weight: 700; color: var(--accent); }
.ssc-select { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--gray-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.service-select-card.selected .ssc-select { background: var(--accent); border-color: var(--accent); color: var(--white); }
.check-icon { font-size: 14px; }
.staff-select-list { display: flex; flex-direction: column; gap: 12px; min-height: 100px; }
.staff-select-card { display: flex; align-items: center; gap: 16px; padding: 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); background: var(--bg); }
.staff-select-card:hover { border-color: var(--accent); }
.staff-select-card.selected { border-color: var(--accent); background: #fff0f8; }
.staff-avatar-sm { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--accent-light); }
.staff-avatar-sm img { width: 100%; height: 100%; object-fit: cover; }
.av-placeholder { width: 100%; height: 100%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 18px; }
.staff-info { flex: 1; }
.staff-info strong { display: block; font-size: 15px; }
.staff-info span { color: var(--gray); font-size: 13px; }
.staff-select-card .check-icon { color: var(--gray-light); font-size: 18px; transition: var(--transition); }
.staff-select-card.selected .check-icon { color: var(--accent); }
.datetime-picker { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.date-picker label, .time-picker label { display: block; font-size: 13px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
#bookingDate { width: 100%; padding: 14px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 16px; color: var(--black); background: var(--bg); outline: none; transition: var(--transition); }
#bookingDate:focus { border-color: var(--accent); }
.slots-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-height: 260px; overflow-y: auto; }
.slot-btn { padding: 10px 8px; border: 2px solid var(--border); border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--black); background: var(--bg); transition: var(--transition); text-align: center; }
.slot-btn:hover { border-color: var(--accent); color: var(--accent); }
.slot-btn.selected { background: var(--accent); color: var(--white); border-color: var(--accent); }
.slots-placeholder, .no-slots, .loading-state { color: var(--gray); font-size: 14px; padding: 20px; text-align: center; grid-column: 1/-1; }
.booking-summary { background: linear-gradient(135deg, #fff5fb, #fdf0f8); border: 1px solid var(--accent-light); border-radius: var(--radius-sm); padding: 20px 24px; margin-bottom: 28px; }
.booking-summary h4 { font-size: 14px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid rgba(233,30,140,0.08); font-size: 14px; }
.summary-row:last-child { border: none; }
.summary-row span { color: var(--gray); }
.summary-row.total strong { color: var(--accent); font-size: 18px; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius-sm); font-size: 15px; color: var(--black); background: var(--bg); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 14px; color: var(--gray); }
.checkbox-label input[type=checkbox] { width: auto; margin-top: 3px; accent-color: var(--accent); }
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; gap: 16px; }
.btn-back { padding: 12px 24px; background: var(--gray-light); color: var(--gray-dark); border-radius: 25px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.btn-back:hover { background: var(--gray); color: var(--white); }
.btn-next { padding: 14px 28px; background: var(--accent); color: var(--white); border-radius: 25px; font-weight: 600; font-size: 15px; transition: var(--transition); margin-left: auto; }
.btn-next:disabled { background: var(--gray-light); color: var(--gray); cursor: not-allowed; }
.btn-next:not(:disabled):hover { background: var(--accent-dark); transform: translateY(-1px); }
.booking-success { text-align: center; padding: 40px 0; }
.success-icon { width: 80px; height: 80px; background: linear-gradient(135deg, #d4f4e0, #a8e8c0); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: #2d8a50; margin: 0 auto 24px; }
.booking-success h2 { font-family: var(--font-display); font-size: 36px; margin-bottom: 12px; }
.booking-success p { color: var(--gray); margin-bottom: 32px; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info h3, .contact-form-wrap h3 { font-family: var(--font-display); font-size: 28px; font-weight: 400; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.contact-item > span { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-item a, .contact-item p { color: var(--gray); font-size: 14px; }
.contact-item a:hover { color: var(--accent); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: #25d366; color: var(--white); border-radius: 25px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.btn-whatsapp:hover { background: #128c7e; transform: translateY(-1px); }
.contact-form { display: flex; flex-direction: column; gap: 0; }
.success-box { background: #d4f4e0; border: 1px solid #a8e8c0; border-radius: var(--radius-sm); padding: 14px 18px; color: #2d8a50; margin-bottom: 20px; font-size: 14px; }
.error-box { background: #fde8e8; border: 1px solid #f8c0c0; border-radius: var(--radius-sm); padding: 14px 18px; color: #c0392b; margin-bottom: 20px; font-size: 14px; }

/* ===== CTA SECTION ===== */
.booking-cta { background: linear-gradient(135deg, var(--dark), #2d0f2a); }
.cta-box { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-eyebrow { display: block; color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(32px,5vw,52px); color: var(--white); font-weight: 300; margin-bottom: 16px; }
.cta-box > p { color: rgba(255,255,255,0.65); margin-bottom: 36px; }
.cta-phone { margin-top: 20px; color: rgba(255,255,255,0.5); font-size: 14px; }
.cta-phone a { color: rgba(255,255,255,0.8); }

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 8px; color: var(--white); font-family: var(--font-display); font-size: 20px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); transition: var(--transition); }
.social-btn:hover { background: var(--accent); color: var(--white); }
.footer-links h4, .footer-contact h4, .footer-booking h4 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--accent); }
.footer-booking p { font-size: 14px; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.6; }
.btn-footer { display: inline-block; padding: 12px 24px; background: var(--accent); color: var(--white); border-radius: 25px; font-weight: 600; font-size: 14px; transition: var(--transition); }
.btn-footer:hover { background: var(--accent-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.2); z-index: 999; transition: var(--transition); }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { background: #128c7e; transform: scale(1.1); }

/* ===== PAGINATION ===== */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border: 2px solid var(--border); color: var(--gray); transition: var(--transition); background: var(--white); }
.page-btn.active, .page-btn:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 64px 20px; color: var(--gray); }

/* ===== ADMIN LINK (hidden) ===== */
.admin-access-link { display: none !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .bs-layout { grid-template-columns: 1fr; }
  .bs-sidebar { position: static; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-large { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 768px) {
  .site-nav { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,10,15,0.97); padding: 80px 24px 40px; z-index: 999; gap: 4px; align-items: flex-start; }
  .site-nav.open { display: flex; }
  .nav-link { font-size: 18px; padding: 12px 16px; width: 100%; }
  .btn-nav { margin: 16px 0 0; padding: 14px 24px; width: 100%; text-align: center; }
  .nav-toggle { display: flex; position: relative; z-index: 1001; }
  
  .section { padding: 64px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .services-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .booking-container { padding: 24px 16px; }
  .datetime-picker { grid-template-columns: 1fr; gap: 20px; }
  .booking-form .form-row { grid-template-columns: 1fr; }
  .booking-steps { overflow-x: auto; justify-content: flex-start; padding-bottom: 8px; }
  .bstep span { display: none; }
  .step-nav { flex-wrap: wrap; }
  .btn-next { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions a { width: 100%; text-align: center; }
  .ab-img-2 { width: 100%; }
  .about-badge { left: 50%; transform: translateX(-50%); top: -30px; }
}

@media (max-width: 480px) {
  .gallery-masonry { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .container { padding: 0 16px; }
}
