/* ═══════════════════════════════════════════════
   HydroDipPro — Global Stylesheet
   Dark theme: #0a0a0f bg, #00d4ff cyan, #ffd700 gold
   ═══════════════════════════════════════════════ */

/* ── Reset & Tokens ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


:root {
  --hydro-blue: #2F7BFF;
  --hydro-cyan: #20D6D9;
  --hydro-green: #59D46A;
  --hydro-purple: #7A5CFF;
  --bg-dark:    #0F172A;
  --bg-card:    #1E293B;
  --text-main:  #F1F5F9;

  --bg:         var(--bg-dark);
  --bg2:        var(--bg-dark);
  --bg3:        var(--bg-dark);
  --surface:    var(--bg-card);
  --border:     rgba(255,255,255,0.08); 
  --cyan:       var(--hydro-cyan);
  --cyan-dim:   rgba(32, 214, 217, 0.15);
  --gold:       var(--hydro-green);
  --gold-dim:   rgba(89, 212, 106, 0.15);
  --text:       var(--text-main);
  --text-muted: #94A3B8;
  --danger:     #ff4757;
  --success:    #2ed573;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.25s ease;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
  
  --btn-bg:     linear-gradient(135deg, var(--hydro-cyan), var(--hydro-blue));
  --btn-hover:  linear-gradient(135deg, var(--hydro-green), var(--hydro-cyan));
  --btn-text:   #000000;
  --btn-shadow: 0 8px 24px rgba(32, 214, 217, 0.4);
}

.admin-body {
  --bg:         #0a0a0f;
  --bg2:        #0f0f18;
  --bg3:        #13131f;
  --surface:    rgba(255,255,255,0.04);
  --cyan:       #00d4ff;
  --cyan-dim:   rgba(0,212,255,0.15);
  --gold:       #ffd700;
  --gold-dim:   rgba(255,215,0,0.15);
  --text:       #e8e8f0;
  --text-muted: #7b7b9a;
  
  --btn-bg:     linear-gradient(135deg, var(--cyan), #0098cc);
  --btn-hover:  linear-gradient(135deg, var(--cyan), #0098cc);
  --btn-text:   #000;
  --btn-shadow: 0 8px 24px rgba(0,212,255,0.4);
}


html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.2; }
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: white; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: var(--font-body); }

.container     { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-cyan     { color: var(--cyan); }
.gradient-text { background: linear-gradient(135deg, var(--cyan), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.w-full        { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.4rem; border-radius: var(--radius); border: none;
  font-family: var(--font-head); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all var(--transition); letter-spacing: 0.02em;
  text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--btn-bg); color: var(--btn-text); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--btn-shadow); color: var(--btn-text); background: var(--btn-hover); }
.btn-outline { background: transparent; border: 1.5px solid var(--cyan); color: var(--cyan); }
.btn-outline:hover { background: var(--cyan-dim); color: var(--cyan); }
.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--text); }
.btn-danger { background: var(--danger); color: white; border: none; }
.btn-danger:hover { opacity: 0.85; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.35rem 0.85rem; font-size: 0.8rem; }

/* ── Glass Card ── */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 2rem;
}

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 70px; justify-content: space-between; }
.nav-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: white; display: flex; align-items: center; gap: 0.4rem; }
.logo-icon { font-size: 1.2rem; }
.nav-links { display: flex; list-style: none; gap: 0.25rem; margin: 0 auto; }
.nav-links a { padding: 0.45rem 0.9rem; border-radius: 8px; color: var(--text-muted); font-size: 0.92rem; font-weight: 500; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: white; background: var(--surface); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }

/* ── Flash Messages ── */
.flash { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.5rem; position: fixed; top: 80px; right: 24px; z-index: 9999; border-radius: var(--radius); font-weight: 500; animation: slideIn 0.3s ease; max-width: 400px; }
.flash-success { background: rgba(46,213,115,0.15); border: 1px solid var(--success); color: var(--success); }
.flash-error   { background: rgba(255,71,87,0.15); border: 1px solid var(--danger); color: var(--danger); }
.flash-close   { margin-left: auto; background: none; border: none; color: inherit; font-size: 1.2rem; cursor: pointer; }
@keyframes slideIn { from { transform: translateX(120%); opacity:0; } to { transform: translateX(0); opacity:1; } }

/* ── Hero ── */
.hero { 
  position: relative; 
  min-height: 100vh; 
  display: flex; 
  align-items: center; 
  overflow: hidden;
  contain: layout style paint;
  contain-intrinsic-size: auto 100vh;
}
.hero-bg { 
  position: absolute; 
  inset: 0; 
  background: radial-gradient(ellipse 80% 80% at 50% -10%, rgba(32,214,217,0.12), transparent), radial-gradient(ellipse 60% 60% at 85% 90%, rgba(89,212,106,0.07), transparent), var(--bg); 
  contain: strict;
}
.hero-content { 
  position: relative; 
  z-index: 2; 
  text-align: center; 
  max-width: 800px; 
  margin: 0 auto; 
  padding: 6rem 0 4rem;
  width: 100%;
  contain: content;
}
.hero-badge { 
  display: inline-block; 
  padding: 0.4rem 1.2rem; 
  border: 1px solid var(--border); 
  border-radius: 100px; 
  font-size: 0.85rem; 
  color: var(--text-muted); 
  margin-bottom: 1.5rem; 
  background: var(--surface); 
  will-change: auto;
}
.hero-title { 
  font-size: clamp(2.5rem, 6vw, 5rem); 
  font-weight: 900; 
  margin-bottom: 1.25rem; 
  line-height: 1.1;
  contain: layout style;
  will-change: auto;
}
.hero-subtitle { 
  font-size: 1.15rem; 
  color: var(--text-muted); 
  max-width: 560px; 
  margin: 0 auto 2.5rem;
  contain: layout;
}
.hero-actions { 
  display: flex; 
  justify-content: center; 
  gap: 1rem; 
  flex-wrap: wrap; 
  margin-bottom: 3rem;
  contain: layout;
}
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; background: linear-gradient(135deg, var(--cyan), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; color: var(--text-muted); font-size: 0.8rem; }
.scroll-arrow { width: 20px; height: 20px; border-right: 2px solid var(--cyan); border-bottom: 2px solid var(--cyan); transform: rotate(45deg); margin: 0.5rem auto 0; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: rotate(45deg) translateY(0); } 50% { transform: rotate(45deg) translateY(6px); } }

/* ── Sections ── */
.section { padding: 6rem 0; }
.section-dark { background: var(--bg2); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label { display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--cyan); margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
.section-subtitle { color: var(--text-muted); margin-top: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 3rem; }

/* ── Process ── */
.process-steps { display: flex; align-items: flex-start; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.process-step { text-align: center; max-width: 200px; }
.step-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.step-img {
  height: 90px;
  object-fit: contain;
  margin: auto;
}
.step-num { font-family: var(--font-head); font-size: 1.5em; font-weight: 700; color: var(--cyan); letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.process-step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 1rem; color: var(--text-muted); }
.process-arrow { font-size: 1.5rem; color: var(--border); margin-top: 2.5rem; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition); }
.service-card:hover { border-color: var(--cyan); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(32,214,217,0.12); }
.service-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-price { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.service-link { color: var(--cyan); font-size: 0.875rem; font-weight: 600; }
.service-link:hover { color: white; }
.category-block { margin-bottom: 4rem; }
.category-header { margin-bottom: 1.5rem; }
.category-header h2 { font-size: 1.5rem; }
.category-header p { color: var(--text-muted); margin-top: 0.4rem; }

/* ── Gallery ── */
.gallery-masonry { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-card-tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-card:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: opacity var(--transition); }
.gallery-card:hover .gallery-overlay { opacity: 1; }
.gallery-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.gallery-info p { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.gallery-tag { display: inline-block; padding: 0.2rem 0.6rem; border-radius: 100px; background: var(--cyan-dim); border: 1px solid var(--cyan); color: var(--cyan); font-size: 0.72rem; margin-top: 0.4rem; }
.gallery-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: 0.45rem 1.1rem; border-radius: 100px; border: 1.5px solid var(--border); background: none; color: var(--text-muted); font-size: 0.85rem; cursor: pointer; transition: all var(--transition); }
.filter-btn.active, .filter-btn:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-dim); }

/* ── Testimonials Carousel ── */
.testimonials-container {
  position: relative;
  padding: 0;
  --card-width: 320px;
}

.testimonials-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  scroll-behavior: smooth;
}

.testimonials-viewport::before,
.testimonials-viewport::after {
  content: '';
  flex: 0 0 calc(50% - var(--card-width) / 2);
}

.testimonials-viewport::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.testimonial-card {
  flex: 0 0 var(--card-width);
  scroll-snap-align: center;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0.6;
  transform: scale(0.95);
  display: flex;
  flex-direction: column;
}

.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--cyan);
  background: var(--surface);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.review-text { color: var(--text-main); font-size: 0.95rem; line-height: 1.7; margin-bottom: 2rem; font-style: italic; flex-grow: 1; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
.reviewer-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--cyan), var(--gold)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #000; font-size: 1rem; }
.reviewer-name { font-weight: 600; font-size: 0.95rem; display: block; }
.reviewer-company { font-size: 0.8rem; color: var(--text-muted); }

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all var(--transition);
  font-size: 1.4rem;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: var(--cyan);
  color: black;
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(32, 214, 217, 0.3);
}

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--cyan);
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .testimonials-container { --card-width: 280px; }
  .carousel-btn { display: none; }
}

/* ── CTA Section ── */
.cta-section { background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(32,214,217,0.06), transparent); }
.cta-inner { text-align: center; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); margin-bottom: 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero { padding: 5rem 0 3rem; text-align: center; border-bottom: 1px solid var(--border); background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(32,214,217,0.07), transparent); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin: 0.5rem 0; }
.page-hero p { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--cyan); }

/* ── About Page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image-placeholder { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); aspect-ratio: 4/3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.about-icon { font-size: 4rem; }
.about-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 1.5rem 0; }
.about-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.feature-check { color: var(--cyan); font-weight: 700; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; }
.value-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem; text-align: center; transition: all var(--transition); }
.value-card:hover { border-color: var(--cyan); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { color: var(--text-muted); font-size: 0.875rem; }
.stats-row { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.big-stat-num { font-size: 3rem; font-weight: 900; }
.big-stat-label { color: var(--text-muted); font-size: 0.875rem; }

/* ── Service Detail ── */
.service-detail-grid { display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: start; }
.service-detail-content h2 { font-size: 2rem; margin: 1rem 0; }
.service-description { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.service-long-desc p { color: var(--text-muted); margin-bottom: 1rem; }
.service-price-block { margin-top: 2rem; display: flex; align-items: baseline; gap: 0.5rem; }
.price-label { color: var(--text-muted); font-size: 0.9rem; }
.price-big { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; }
.badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: 100px; background: var(--cyan-dim); border: 1px solid var(--cyan); color: var(--cyan); font-size: 0.8rem; font-weight: 600; }
.service-quote-form h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }

/* ── Contact ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-intro { color: var(--text-muted); margin-bottom: 2rem; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card-icon { font-size: 1.5rem; }
.contact-card strong { display: block; margin-bottom: 0.25rem; }
.contact-card p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }

/* ── Quote ── */
.quote-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }
.quote-form-wrap h2 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.quote-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.quote-info-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.quote-steps { display: flex; flex-direction: column; gap: 1rem; }
.q-step { display: flex; gap: 1rem; align-items: flex-start; }
.q-step-num { min-width: 28px; height: 28px; border-radius: 50%; background: var(--cyan-dim); border: 1px solid var(--cyan); color: var(--cyan); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; }
.q-step p { font-size: 0.875rem; color: var(--text-muted); margin: 0; }
.quote-info-card p { font-size: 0.9rem; margin-bottom: 0.5rem; }

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.7rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text); font-size: 0.95rem; transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--cyan); background: rgba(32,214,217,0.04);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-check { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; font-size: 0.9rem; }
.form-check input[type=checkbox] { width: auto; accent-color: var(--cyan); }
.form-error { display: block; color: var(--danger); font-size: 0.8rem; margin-top: 0.3rem; }
.form-note { text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 0.75rem; }
.form-actions { display: flex; gap: 1rem; margin-top: 1.5rem; }

/* ── Auth ── */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(32,214,217,0.08), transparent); }
.auth-card { max-width: 420px; width: 100%; }
.auth-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; margin-bottom: 2rem; text-align: center; }
.auth-title { font-size: 1.8rem; text-align: center; margin-bottom: 0.5rem; }
.auth-subtitle { color: var(--text-muted); text-align: center; margin-bottom: 2rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; font-size: 0.875rem; color: var(--text-muted); }
.auth-footer p { margin-bottom: 0.5rem; }

/* ── Footer ── */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.875rem; margin: 1rem 0 1.5rem; max-width: 280px; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { font-size: 1.3rem; transition: transform var(--transition); }
.social-links a:hover { transform: scale(1.2); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: var(--text-muted); font-size: 0.875rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--cyan); }
.footer-contact { display: flex; flex-direction: column; }
.footer-contact li { font-size: 0.875rem; color: var(--text-muted); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.25rem 0; display: flex; justify-content: center; align-items: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.footer-admin-link { font-size: 0.8rem; color: var(--text-muted); }
.footer-admin-link:hover { color: var(--cyan); }

/* ── Empty State ── */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { margin-bottom: 0.75rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════ */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }

/* Sidebar */
.admin-sidebar { width: 260px; min-height: 100vh; background: var(--bg2); border-right: 1px solid var(--border); display: flex; flex-direction: column; position: fixed; left: 0; top: 0; z-index: 100; transition: transform var(--transition); overflow-y: auto; }
.sidebar-header { display: flex; align-items: center; gap: 0.5rem; padding: 1.5rem 1.25rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; border-bottom: 1px solid var(--border); }
.sidebar-nav { padding: 1rem 0.75rem; flex: 1; }
.sidebar-nav a { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.9rem; border-radius: 8px; color: var(--text-muted); font-size: 0.88rem; font-weight: 500; transition: all var(--transition); margin-bottom: 0.2rem; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: white; background: var(--surface); border: 1px solid var(--border); }
.sidebar-nav a.active { color: var(--cyan); }
.icon { font-size: 1rem; width: 1.25rem; }
.sidebar-group-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); padding: 1rem 0.9rem 0.4rem; margin-top: 0.5rem; }
.sidebar-logout { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.9rem; border-radius: 8px; color: var(--danger); font-size: 0.88rem; background: none; border: none; cursor: pointer; width: 100%; transition: all var(--transition); }
.sidebar-logout:hover { background: rgba(255,71,87,0.1); }

/* Admin Main */
.admin-main { margin-left: 260px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }
.admin-topbar { display: flex; align-items: center; gap: 1rem; padding: 0 1.5rem; height: 64px; border-bottom: 1px solid var(--border); background: var(--bg2); position: sticky; top: 0; z-index: 50; }
.sidebar-toggle { display: none; background: none; border: none; color: var(--text); font-size: 1.4rem; cursor: pointer; }
.admin-page-title { font-size: 1.1rem; font-weight: 700; margin: 0; }
.admin-user { display: flex; align-items: center; gap: 0.5rem; margin-left: auto; font-size: 0.875rem; color: var(--text-muted); }
.admin-content { padding: 2rem 1.5rem; flex: 1; }

/* Stats */
.admin-stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; display: flex; align-items: center; gap: 1.25rem; transition: all var(--transition); }
.admin-stat-card:hover { border-color: var(--border); transform: translateY(-2px); }
.admin-stat-card.accent { border-color: rgba(32,214,217,0.25); background: rgba(32,214,217,0.04); }
.admin-stat-icon { font-size: 2rem; }
.admin-stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; }
.admin-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Panels */
.admin-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.admin-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.admin-panel-header { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border); }
.admin-panel-header h3 { font-size: 1rem; margin: 0; }
.admin-page-actions { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.admin-page-actions h2 { font-size: 1.4rem; margin: 0; }

/* Table */
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.admin-table thead { background: rgba(255,255,255,0.03); }
.admin-table th { padding: 0.75rem 1.25rem; text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: rgba(255,255,255,0.02); }
.admin-table tr.row-unread { background: rgba(32,214,217,0.03); }
.empty-row { text-align: center; color: var(--text-muted); padding: 2rem; }
.admin-link { color: var(--cyan); font-size: 0.875rem; }
.actions { display: flex; gap: 0.5rem; }
.admin-pagination { padding: 1rem 1.25rem; }

/* Badge statuses */
.badge-status { display: inline-flex; align-items: center; padding: 0.2rem 0.65rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.badge-pending   { background: rgba(89,212,106,0.15); color: var(--gold); border: 1px solid rgba(89,212,106,0.3); }
.badge-contacted { background: rgba(32,214,217,0.12); color: var(--cyan); border: 1px solid rgba(32,214,217,0.3); }
.badge-completed { background: rgba(46,213,115,0.15); color: var(--success); border: 1px solid rgba(46,213,115,0.3); }
.badge-cancelled { background: rgba(255,71,87,0.12); color: var(--danger); border: 1px solid rgba(255,71,87,0.3); }

/* Admin Forms */
.admin-form { padding: 1.5rem; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; padding: 1.5rem; }
.detail-item span { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.detail-message { padding: 0 1.5rem 1.5rem; }
.detail-message label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; }
.message-box { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; font-size: 0.9rem; line-height: 1.7; white-space: pre-wrap; }
.status-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; padding: 1.5rem; }

/* Admin Gallery Grid */
.admin-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; padding: 1.5rem; }
.admin-gallery-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.admin-gallery-item img { width: 100%; height: 160px; object-fit: cover; }
.admin-gallery-info { padding: 0.75rem; display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.85rem; }
.admin-gallery-actions { display: flex; gap: 0.5rem; padding: 0 0.75rem 0.75rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-panels { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 1rem; z-index: 999; }
  .nav-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: block; }
  .detail-grid { grid-template-columns: 1fr; }
}

@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }