/* AnnuMakeover – Premium Beauty Studio */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary:       #c9184a;
  --primary-dark:  #960035;
  --primary-light: #f24e78;
  --gold:          #d4a853;
  --gold-light:    #f0d080;
  --cream:         #fdf6f0;
  --cream-dark:    #f5ebe0;
  --white:         #ffffff;
  --dark:          #0f0a0c;
  --dark-2:        #1a0d13;
  --text:          #2b2020;
  --text-mid:      #5a4a50;
  --text-light:    #8a7a80;
  --border:        rgba(201,24,74,0.10);
  --border-light:  rgba(0,0,0,0.07);
  --shadow-xs: 0 1px 4px rgba(0,0,0,0.05);
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.14);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.18);
  --shadow-pk: 0 8px 24px rgba(201,24,74,0.25);
  --r-sm:   8px;
  --r:      14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:  all 0.3s var(--ease);
  --ts: all 0.5s var(--ease);
  --section-py: 96px;
  --font-body:    'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); font-weight: 500; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section     { padding: var(--section-py) 0; }
.section-alt  { background: var(--cream); }
.section-dark { background: var(--dark); color: var(--white); }
.text-center  { text-align: center; }

/* Section Header */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-badge {
  display: inline-block; padding: 6px 18px;
  background: rgba(201,24,74,0.08); color: var(--primary);
  border-radius: var(--r-full); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.8px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { color: var(--text); margin-bottom: 14px; }
.section-subtitle { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--r-full); font-size: 0.93rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: var(--t);
  text-decoration: none; outline: none; white-space: nowrap;
}
.btn-primary  { background: var(--primary); color: #fff; box-shadow: var(--shadow-pk); }
.btn-primary:hover  { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(201,24,74,0.38); }
.btn-outline  { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover  { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-whatsapp { background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.45); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #e8c97a); color: var(--dark); box-shadow: 0 8px 24px rgba(212,168,83,0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,168,83,0.48); }
.btn-white  { background: #fff; color: var(--primary); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }
.btn-white:hover  { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.22); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.55); color: #fff; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.14); border-color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../assets/images/hero.jpg');
  background-size: cover; background-position: center top;
  transform: scale(1.06); transition: transform 9s ease-out; will-change: transform;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,10,12,0.88) 0%, rgba(150,0,53,0.60) 55%, rgba(212,168,83,0.18) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 90px 0 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px;
  background: rgba(255,255,255,0.10); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-full);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--gold-light); border-radius: 50%; animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-title { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.3); }
.hero-title em { font-style: normal; color: var(--gold-light); }
.hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 40px; max-width: 480px; line-height: 1.8; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.5); font-size: 0.7rem; letter-spacing: 2.5px;
  text-transform: uppercase; animation: scrollBounce 2.2s infinite;
}
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent); }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Stats Bar */
.stats-bar {
  background: var(--white); box-shadow: var(--shadow-xl); border-radius: var(--r-xl);
  margin: -48px auto 0; position: relative; z-index: 10;
  width: 90%; max-width: 1100px; display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item { padding: 36px 24px; text-align: center; border-right: 1px solid var(--border-light); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 2.6rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.5px; }

/* Category Showcase */
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cat-card { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,10,12,0.82) 0%, rgba(15,10,12,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
}
.cat-card-icon { font-size: 2rem; margin-bottom: 8px; }
.cat-card-name { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.cat-card-count { font-size: 0.82rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.cat-card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold-light); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px; transition: var(--t); }
.cat-card-link::after { content: '→'; transition: var(--t); }
.cat-card:hover .cat-card-link::after { transform: translateX(5px); }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 22px; }
.service-card {
  background: var(--white); border-radius: var(--r-lg); padding: 26px 22px;
  border: 1px solid var(--border-light); transition: var(--t);
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,24,74,0.14); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 54px; height: 54px; background: rgba(201,24,74,0.07); border-radius: var(--r);
  display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
  margin-bottom: 16px; transition: var(--t);
}
.service-card:hover .service-icon { background: rgba(201,24,74,0.14); transform: scale(1.06); }
.service-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.service-desc { font-size: 0.855rem; color: var(--text-light); flex: 1; margin-bottom: 18px; line-height: 1.65; }
.service-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-light); }
.service-price { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--primary); }
.service-price small { font-size: 0.72rem; font-family: var(--font-body); color: var(--text-light); font-weight: 400; display: block; }
.btn-book {
  width: 38px; height: 38px; background: #25D366; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 1.1rem; transition: var(--t); box-shadow: 0 4px 12px rgba(37,211,102,0.35); text-decoration: none;
}
.btn-book:hover { transform: scale(1.12); box-shadow: 0 6px 22px rgba(37,211,102,0.52); }

/* Filter Bar */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 50px; }
.filter-btn {
  padding: 10px 24px; border-radius: var(--r-full); border: 1.5px solid var(--border-light);
  background: var(--white); color: var(--text-mid); font-size: 0.86rem; font-weight: 500;
  cursor: pointer; transition: var(--t); display: flex; align-items: center; gap: 6px;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: var(--shadow-pk); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 26px; }
.feature-card { text-align: center; padding: 40px 26px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--t); }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon { width: 68px; height: 68px; background: linear-gradient(135deg, rgba(201,24,74,0.09), rgba(212,168,83,0.08)); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 20px; }
.feature-title { font-family: var(--font-heading); font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.feature-desc { font-size: 0.86rem; color: var(--text-light); line-height: 1.68; }

/* Testimonials */
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 22px; transition: transform 0.5s var(--ease); }
.testimonial-card { min-width: calc(33.333% - 15px); background: var(--white); border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); position: relative; }
.testimonial-card::before { content: '\201C'; position: absolute; top: -8px; left: 22px; font-family: var(--font-heading); font-size: 5rem; line-height: 1; color: rgba(201,24,74,0.12); }
.testimonial-text { font-size: 0.93rem; color: var(--text-mid); line-height: 1.78; margin-bottom: 22px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: var(--r-full); background: linear-gradient(135deg, var(--primary), var(--gold)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.author-sub  { font-size: 0.76rem; color: var(--text-light); }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-left: auto; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; }
.slider-dot { width: 8px; height: 8px; border-radius: var(--r-full); background: rgba(201,24,74,0.22); cursor: pointer; transition: var(--t); border: none; padding: 0; }
.slider-dot.active { width: 28px; background: var(--primary); }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #ff4d7e 100%); padding: var(--section-py) 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 60%; height: 200%; background: rgba(255,255,255,0.03); transform: rotate(14deg); }
.cta-section::after { content: ''; position: absolute; top: -30%; right: -10%; width: 40%; height: 160%; background: rgba(255,255,255,0.025); transform: rotate(-10deg); }
.cta-content { position: relative; z-index: 2; }
.cta-badge { display: inline-block; padding: 6px 18px; background: rgba(255,255,255,0.14); border-radius: var(--r-full); color: rgba(255,255,255,0.9); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.cta-title   { color: #fff; margin-bottom: 14px; }
.cta-subtitle { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 40px; }
.cta-actions  { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* WhatsApp FAB */
.whatsapp-fab { position: fixed; bottom: 32px; right: 32px; z-index: 1000; width: 58px; height: 58px; background: #25D366; border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-size: 1.65rem; color: #fff; box-shadow: 0 8px 26px rgba(37,211,102,0.45); transition: var(--t); text-decoration: none; }
.whatsapp-fab::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: var(--r-full); background: #25D366; animation: fabPulse 2.4s ease-out infinite; }
@keyframes fabPulse { 0%{transform:scale(1);opacity:0.7} 100%{transform:scale(1.75);opacity:0} }
.whatsapp-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.62); }

/* Page Header */
.page-header { background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); padding: 110px 0 65px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,24,74,0.22) 0%, transparent 58%); }
.page-header-content { position: relative; z-index: 2; }
.page-header h1 { color: #fff; margin-bottom: 12px; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-header p { color: rgba(255,255,255,0.68); font-size: 1rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); font-weight: 500; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* Feedback Form */
.feedback-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.form-card { background: var(--white); border-radius: var(--r-xl); padding: 44px; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.83rem; font-weight: 600; color: var(--text); letter-spacing: 0.3px; }
.form-control { padding: 13px 16px; border: 1.5px solid var(--border-light); border-radius: var(--r); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: var(--white); transition: var(--t); outline: none; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(201,24,74,0.07); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7a80' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.star-rating { display: flex; gap: 6px; flex-direction: row-reverse; align-items: center; }
.star-rating input { display: none; }
.star-rating label { font-size: 2rem; color: #ddd; cursor: pointer; transition: color 0.15s; }
.star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: var(--gold); }
.info-card { background: linear-gradient(135deg, var(--dark), var(--dark-2)); border-radius: var(--r-xl); padding: 36px 28px; color: #fff; }
.info-card-title { font-family: var(--font-heading); font-size: 1.35rem; color: #fff; margin-bottom: 5px; }
.info-card-sub { font-size: 0.84rem; color: rgba(255,255,255,0.55); margin-bottom: 28px; }
.info-item { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.info-item-icon { font-size: 1.35rem; flex-shrink: 0; margin-top: 2px; }
.info-item-label { font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 3px; }
.info-item-val { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

/* Success State */
.success-state { text-align: center; padding: 48px 24px; display: none; }
.success-icon { width: 80px; height: 80px; background: rgba(16,185,129,0.1); border-radius: var(--r-full); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; margin: 0 auto 22px; animation: popIn 0.5s var(--ease); }
@keyframes popIn { 0%{transform:scale(0)} 65%{transform:scale(1.14)} 100%{transform:scale(1)} }

/* Scroll Animations */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1){transition-delay:0ms} .fade-up:nth-child(2){transition-delay:90ms}
.fade-up:nth-child(3){transition-delay:180ms} .fade-up:nth-child(4){transition-delay:270ms}
.fade-up:nth-child(5){transition-delay:360ms} .fade-up:nth-child(6){transition-delay:450ms}
.fade-up:nth-child(7){transition-delay:540ms} .fade-up:nth-child(8){transition-delay:630ms}

/* Admin */
.admin-layout { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.admin-sidebar { background: var(--dark); color: #fff; position: sticky; top: 0; height: 100vh; overflow-y: auto; display: flex; flex-direction: column; }
.admin-sidebar-header { padding: 28px 22px 20px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.admin-sidebar-logo { font-family: var(--font-heading); font-size: 1.25rem; color: #fff; margin-bottom: 2px; }
.admin-sidebar-sub { font-size: 0.72rem; color: rgba(255,255,255,0.35); letter-spacing: 0.5px; }
.admin-nav { padding: 12px 0; flex: 1; }
.admin-nav-item { display: flex; align-items: center; gap: 12px; padding: 13px 22px; color: rgba(255,255,255,0.55); font-size: 0.88rem; cursor: pointer; transition: var(--t); border-left: 3px solid transparent; text-decoration: none; }
.admin-nav-item:hover, .admin-nav-item.active { background: rgba(255,255,255,0.06); color: #fff; border-left-color: var(--primary); }
.admin-nav-icon { font-size: 1.1rem; }
.admin-nav-section { padding: 18px 22px 8px; font-size: 0.67rem; font-weight: 600; color: rgba(255,255,255,0.22); letter-spacing: 1.5px; text-transform: uppercase; }
.admin-sidebar-footer { padding: 16px 22px 22px; border-top: 1px solid rgba(255,255,255,0.07); }
.admin-main { background: #f7f4f5; padding: 32px; overflow-y: auto; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.admin-page-title { font-family: var(--font-heading); font-size: 1.75rem; color: var(--text); }
.admin-topbar-right { display: flex; align-items: center; gap: 12px; }
.admin-user-badge { display: flex; align-items: center; gap: 10px; padding: 8px 16px; background: var(--white); border-radius: var(--r-full); font-size: 0.85rem; font-weight: 500; color: var(--text); box-shadow: var(--shadow-xs); }
.admin-user-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; }
.admin-stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; }
.admin-stat-card { background: var(--white); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--shadow-xs); display: flex; align-items: center; gap: 18px; }
.admin-stat-icon { width: 52px; height: 52px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.admin-stat-icon.pink  { background: rgba(201,24,74,0.1); }
.admin-stat-icon.green { background: rgba(16,185,129,0.1); }
.admin-stat-icon.gold  { background: rgba(212,168,83,0.1); }
.admin-stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--text); line-height: 1; }
.admin-stat-lbl { font-size: 0.78rem; color: var(--text-light); margin-top: 3px; }
.admin-card { background: var(--white); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-xs); margin-bottom: 22px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border-light); }
.admin-card-title { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 11px 14px; font-size: 0.74rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.9px; text-transform: uppercase; background: var(--cream); border-bottom: 1px solid var(--border-light); }
.admin-table td { padding: 13px 14px; font-size: 0.88rem; color: var(--text); border-bottom: 1px solid var(--border-light); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(201,24,74,0.018); }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: var(--r-full); font-size: 0.73rem; font-weight: 600; }
.badge-active   { background: rgba(16,185,129,0.12); color: #059669; }
.badge-inactive { background: rgba(239,68,68,0.12);  color: #dc2626; }
.badge-new      { background: rgba(201,24,74,0.10);  color: var(--primary); }
.badge-replied  { background: rgba(59,130,246,0.10); color: #2563eb; }
.action-btn { padding: 6px 12px; border-radius: var(--r-sm); border: none; font-size: 0.78rem; font-weight: 500; cursor: pointer; transition: var(--t); }
.action-edit   { background: rgba(59,130,246,0.09); color: #2563eb; }
.action-edit:hover   { background: rgba(59,130,246,0.18); }
.action-delete { background: rgba(239,68,68,0.09);  color: #dc2626; }
.action-delete:hover { background: rgba(239,68,68,0.18); }
.action-reply  { background: rgba(201,24,74,0.09);  color: var(--primary); }
.action-reply:hover  { background: rgba(201,24,74,0.18); }

/* Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.48); backdrop-filter: blur(5px); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 0.28s var(--ease); }
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border-radius: var(--r-xl); padding: 36px; width: 100%; max-width: 540px; box-shadow: var(--shadow-xl); transform: scale(0.94) translateY(18px); transition: transform 0.3s var(--ease); }
.modal-overlay.active .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.modal-title { font-family: var(--font-heading); font-size: 1.4rem; color: var(--text); }
.modal-close { width: 36px; height: 36px; border: none; background: var(--cream); border-radius: var(--r-full); cursor: pointer; font-size: 1.1rem; color: var(--text-light); display: flex; align-items: center; justify-content: center; transition: var(--t); }
.modal-close:hover { background: rgba(201,24,74,0.1); color: var(--primary); }
.modal-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-form-grid .full { grid-column: 1/-1; }

/* Admin Login */
.login-page { min-height: 100vh; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%); display: flex; align-items: center; justify-content: center; padding: 20px; position: relative; }
.login-page::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 60%, rgba(201,24,74,0.18) 0%, transparent 58%); }
.login-card { background: var(--white); border-radius: var(--r-xl); padding: 50px 40px; width: 100%; max-width: 410px; box-shadow: var(--shadow-xl); position: relative; z-index: 2; text-align: center; }
.login-logo { font-family: var(--font-heading); font-size: 1.9rem; color: var(--primary); margin-bottom: 4px; }
.login-subtitle { font-size: 0.84rem; color: var(--text-light); margin-bottom: 36px; }
.login-form { text-align: left; }
.input-icon-wrap { position: relative; }
.input-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 1.05rem; pointer-events: none; }
.input-icon ~ .form-control { padding-left: 42px; }
.error-msg { color: #dc2626; font-size: 0.83rem; text-align: center; padding: 10px 14px; background: rgba(220,38,38,0.07); border-radius: var(--r-sm); margin-bottom: 14px; display: none; }
.error-msg.show { display: block; }

/* Admin Feedback */
.feedback-item { background: var(--white); border-radius: var(--r-lg); padding: 22px; margin-bottom: 14px; box-shadow: var(--shadow-xs); border: 1px solid var(--border-light); transition: var(--t); }
.feedback-item:hover { box-shadow: var(--shadow-sm); }
.feedback-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.feedback-author { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.feedback-meta { font-size: 0.75rem; color: var(--text-light); }
.feedback-tag { display: inline-block; padding: 3px 10px; background: rgba(201,24,74,0.08); color: var(--primary); border-radius: var(--r-full); font-size: 0.73rem; font-weight: 500; margin-bottom: 10px; }
.feedback-text { font-size: 0.875rem; color: var(--text-mid); line-height: 1.68; }
.admin-reply-box { margin-top: 14px; padding: 14px 16px; background: rgba(201,24,74,0.04); border-left: 3px solid var(--primary); border-radius: 0 var(--r) var(--r) 0; }
.admin-reply-label { font-size: 0.72rem; font-weight: 600; color: var(--primary); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.8px; }
.admin-reply-text  { font-size: 0.875rem; color: var(--text-mid); }
.feedback-actions  { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }

/* Empty State */
.empty-state { text-align: center; padding: 60px 24px; color: var(--text-light); }
.empty-state-icon { font-size: 3rem; margin-bottom: 16px; }
.empty-state h3 { font-family: var(--font-heading); color: var(--text-mid); margin-bottom: 8px; }

/* Toast */
.toast-container { position: fixed; top: 24px; right: 24px; z-index: 20000; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { min-width: 260px; padding: 14px 18px; border-radius: var(--r); font-size: 0.88rem; font-weight: 500; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; animation: toastIn 0.35s var(--ease), toastOut 0.35s var(--ease) 2.8s forwards; }
.toast-success { background: #10b981; color: #fff; }
.toast-error   { background: #dc2626; color: #fff; }
@keyframes toastIn  { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
@keyframes toastOut { from{opacity:1;transform:translateX(0)} to{opacity:0;transform:translateX(40px)} }

/* Categories section – accounts for stats bar overlap */
.categories-section { padding-top: 120px; }

/* Services grid – safe min width for all screens */
.services-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }

/* Filter bar – horizontal scroll on narrow screens */
@media (max-width: 640px) {
  .filter-bar { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 10px; -webkit-overflow-scrolling: touch; scrollbar-width: none; gap: 8px; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-btn { white-space: nowrap; flex-shrink: 0; padding: 9px 18px; }
}

/* Responsive */
@media (max-width: 1024px) {
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .testimonial-card { min-width: calc(50% - 11px); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .admin-stat-cards { grid-template-columns: 1fr 1fr; }
  .feedback-layout { grid-template-columns: 1fr; }
  .info-card { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --section-py: 60px; }
  .hero-content { padding: 88px 0 60px; }
  .stats-bar { width: 94%; border-radius: var(--r-lg); margin-top: -32px; }
  .categories-section { padding-top: 88px; }
  .form-grid { grid-template-columns: 1fr; }
  .modal-form-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 100%; }
  .form-card { padding: 28px 20px; }
  .modal { padding: 26px 20px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-card { aspect-ratio: 3/2; }
  .admin-stat-cards { grid-template-columns: 1fr; }
  .admin-main { padding: 20px; }
  .page-header { padding: 90px 0 50px; }
  .section-header { margin-bottom: 44px; }
}
@media (max-width: 520px) {
  :root { --section-py: 52px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-cta { flex-direction: column; gap: 12px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: -20px; }
  .stat-item { padding: 18px 12px; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.72rem; }
  .categories-section { padding-top: 60px; }
  .cat-grid { grid-template-columns: 1fr; gap: 14px; }
  .cat-card { aspect-ratio: 5/3; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .whatsapp-fab { bottom: 18px; right: 18px; width: 50px; height: 50px; font-size: 1.4rem; }
  .login-card { padding: 36px 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card { padding: 28px 18px; }
  .feature-icon { width: 54px; height: 54px; font-size: 1.6rem; }
  .page-header { padding: 82px 0 44px; }
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .admin-topbar-right { width: 100%; justify-content: space-between; }
}
@media (max-width: 380px) {
  .brand-name { font-size: 1.15rem; }
  .stats-bar { margin-top: 0; border-radius: var(--r); }
  .categories-section { padding-top: 40px; }
  .hero-cta .btn { padding: 12px 24px; font-size: 0.88rem; }
}
