/* ==========================================================================
   ZUTERE AUDIOVISUAL - PREMIUM DARK THEME DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIABLES & DESIGN SYSTEM
   -------------------------------------------------------------------------- */
:root {
  /* Brand Palette (Derived from Zutere Orange Play Icon) */
  --accent-primary: #FF5B00;
  --accent-secondary: #FF7700;
  --accent-glow: rgba(255, 91, 0, 0.35);
  --accent-light: #FF8833;
  --accent-gradient-start: #FF5B00;
  --accent-gradient-end: #FF8800;

  /* Dark Theme Surfaces */
  --bg-dark: #090A0F;
  --bg-alt: #0E1017;
  --bg-card: rgba(18, 20, 29, 0.7);
  --bg-card-hover: rgba(26, 29, 42, 0.85);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-accent: rgba(255, 91, 0, 0.4);

  /* Typography Colors */
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --text-sub: #CBD5E1;

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Montserrat', sans-serif;

  /* Transition Speeds */
  --tr-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout Spacing */
  --header-height: 80px;
  --border-radius: 16px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--tr-fast);
}

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.alt-bg {
  background-color: var(--bg-alt);
  position: relative;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 20%, var(--accent-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-accent {
  color: var(--accent-primary);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  transition: all var(--tr-smooth);
}



/* --------------------------------------------------------------------------
   4. BUTTONS & UI COMPONENTS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all var(--tr-smooth);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 91, 0, 0.5);
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-primary) 100%);
}

.btn-outline {
  border: 1px solid var(--glass-border-accent);
  color: #FFFFFF;
  background: rgba(255, 91, 0, 0.08);
}

.btn-outline:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--tr-smooth);
  background: rgba(9, 10, 15, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  background: rgba(9, 10, 15, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--glass-border-accent);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  height: 58px;
}

.logo-img, .footer-logo {
  height: 54px;
  max-height: 58px;
  width: auto;
  object-fit: contain;
  transition: transform var(--tr-fast);
}

.brand-logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-sub);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: width var(--tr-fast);
  box-shadow: 0 0 10px var(--accent-primary);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  padding: 8px;
}

/* --------------------------------------------------------------------------
   6. HERO SLIDER SECTION (MIXED PHOTO & VIDEO)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-bg, .hero-img-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease-out;
}

.slide.active .hero-video-bg,
.slide.active .hero-img-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg, 
    rgba(9, 10, 15, 0.7) 0%, 
    rgba(9, 10, 15, 0.4) 50%, 
    rgba(9, 10, 15, 0.95) 100%
  ),
  radial-gradient(
    circle at 30% 50%,
    rgba(255, 91, 0, 0.12) 0%,
    transparent 60%
  );
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding-top: 60px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 91, 0, 0.15);
  border: 1px solid var(--glass-border-accent);
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -1px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.slide-description {
  font-size: 1.2rem;
  color: var(--text-sub);
  margin-bottom: 36px;
  max-width: 640px;
  line-height: 1.7;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.slide-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

/* Animations on active slide */
.slide.active .slide-badge,
.slide.active .slide-title,
.slide.active .slide-description,
.slide.active .slide-cta-group {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls & Tabs Bottom Bar */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.slider-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow, .slider-toggle-play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover, .slider-toggle-play:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 4px 16px var(--accent-glow);
  transform: scale(1.08);
}

.slider-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}

.slider-tab {
  background: rgba(18, 20, 29, 0.6);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: left;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all var(--tr-fast);
  cursor: pointer;
}

.slider-tab:hover {
  background: rgba(26, 29, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.slider-tab.active {
  background: rgba(26, 29, 42, 0.95);
  border-color: var(--glass-border-accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.tab-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 2px;
}

.tab-info {
  display: flex;
  flex-direction: column;
}

.tab-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tab-type {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.tab-progress .progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.slider-tab.active .progress-bar {
  width: 100%;
  transition: width 6s linear;
}

/* --------------------------------------------------------------------------
   7. QUICK STATS BAR
   -------------------------------------------------------------------------- */
.stats-bar-section {
  position: relative;
  z-index: 30;
  margin-top: -30px;
}

.stats-grid {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-plus {
  color: var(--accent-primary);
  font-size: 2.2rem;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--glass-border);
}

/* --------------------------------------------------------------------------
   8. PORTFOLIO / PROJECTS GALLERY
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-fast);
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.filter-btn.active {
  background: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all var(--tr-smooth);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--glass-border-accent);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 91, 0, 0.15);
}

.card-thumb {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .card-thumb img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 10, 15, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--tr-fast);
  backdrop-filter: blur(4px);
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.card-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px var(--accent-glow);
  transform: scale(0.8);
  transition: transform var(--tr-fast);
}

.project-card:hover .card-play-btn {
  transform: scale(1);
}

.card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(9, 10, 15, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  color: var(--accent-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-client {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.project-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.project-tag {
  font-size: 0.8rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-action-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr-fast);
}

.project-card:hover .project-action-btn {
  color: var(--accent-primary);
}

/* --------------------------------------------------------------------------
   9. SERVICES SECTION
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 36px 30px;
  position: relative;
  transition: all var(--tr-smooth);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 24px rgba(255, 91, 0, 0.12);
}

.service-card.highlight {
  border-color: var(--glass-border-accent);
  background: linear-gradient(180deg, rgba(255, 91, 0, 0.08) 0%, var(--bg-card) 100%);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--accent-primary);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 91, 0, 0.12);
  border: 1px solid var(--glass-border-accent);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: transform var(--tr-fast);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(4deg);
  background: var(--accent-primary);
  color: #FFFFFF;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 0.88rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li i {
  color: var(--accent-primary);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   10. PROCESS / WORKFLOW SECTION
   -------------------------------------------------------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 32px 26px;
  position: relative;
  transition: all var(--tr-smooth);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-accent);
}

.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 91, 0, 0.3);
}

.step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}



/* --------------------------------------------------------------------------
   12. ABOUT SECTION
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--glass-border);
}

.about-experience-card {
  position: absolute;
  bottom: -30px;
  right: -20px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.6);
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
}

.exp-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  max-width: 140px;
  line-height: 1.3;
}

.about-para {
  font-size: 1.05rem;
  color: var(--text-sub);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-highlights {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.highlight-item i {
  font-size: 1.3rem;
  color: var(--accent-primary);
  background: rgba(255, 91, 0, 0.12);
  padding: 12px;
  border-radius: 12px;
}

.highlight-item strong {
  color: #FFFFFF;
  font-size: 1rem;
  display: block;
  margin-bottom: 2px;
}

.highlight-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   13. ESTIMATOR & CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.estimator-card, .contact-info-card {
  padding: 40px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.card-header i {
  font-size: 1.5rem;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
}

.estimator-form .form-group {
  margin-bottom: 20px;
}

.estimator-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(9, 10, 15, 0.8);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: border-color var(--tr-fast);
}

.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF5B00' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}

select.form-control option {
  background-color: var(--bg-dark);
  color: #FFFFFF;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(9, 10, 15, 0.5);
  border: 1px solid var(--glass-border);
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-sub);
  transition: all var(--tr-fast);
}

.checkbox-label:hover {
  border-color: var(--glass-border-accent);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--accent-primary);
  width: 16px;
  height: 16px;
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.contact-info-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(9, 10, 15, 0.4);
  border: 1px solid var(--glass-border);
  transition: all var(--tr-fast);
}

.info-item:hover {
  border-color: var(--glass-border-accent);
  transform: translateX(4px);
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 91, 0, 0.12);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFFFFF;
}

.social-links-box h4 {
  font-size: 0.9rem;
  color: var(--text-sub);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-icons {
  display: flex;
  gap: 12px;

}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-fast);
}

.social-icon:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  box-shadow: 0 4px 14px var(--accent-glow);
  transform: translateY(-3px);
}

.availability-badge {
  margin-top: 30px;
  padding: 12px 18px;
  border-radius: 30px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10B981;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #050609;
  border-top: 1px solid var(--glass-border);
  padding-top: 70px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-tagline {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 300px;
}

.footer-nav h4, .footer-services h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.footer-nav ul, .footer-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a, .footer-services li {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--tr-fast);
}

.footer-nav a:hover {
  color: var(--accent-primary);
}

.back-to-top {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border-accent);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--tr-fast);
}

.back-to-top:hover {
  background: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--accent-glow);
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* --------------------------------------------------------------------------
   15. FULLSCREEN VIDEO PLAYER MODAL
   -------------------------------------------------------------------------- */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-smooth);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 6, 9, 0.92);
  backdrop-filter: blur(20px);
}

.video-modal-container {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1100px;
  background: #090A0F;
  border: 1px solid var(--glass-border-accent);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 91, 0, 0.2);
  transform: scale(0.9);
  transition: transform var(--tr-smooth);
}

.video-modal.active .video-modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all var(--tr-fast);
}

.modal-close-btn:hover {
  background: var(--accent-primary);
  transform: rotate(90deg);
}

.video-player-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
}

.video-player-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-video-info {
  padding: 20px 28px;
  background: var(--bg-card);
  border-top: 1px solid var(--glass-border);
}

.modal-video-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #FFFFFF;
}

.modal-video-info span {
  font-size: 0.88rem;
  color: var(--accent-primary);
}

/* --------------------------------------------------------------------------
   WHATSAPP CTA, SOCIAL NETWORKS & REELS STYLES
   -------------------------------------------------------------------------- */

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  font-size: 1.1rem;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
  background: linear-gradient(135deg, #2cf076 0%, #17a393 100%);
}

.contact-single-box {
  padding: 48px 32px;
  max-width: 550px;
  margin: 0 auto 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whatsapp-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.whatsapp-badge-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #25D366;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.whatsapp-cta-content h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.whatsapp-cta-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

/* Social Networks Grid */
.social-networks-section {
  margin-top: 40px;
}

.style-compact {
  margin-bottom: 30px;
}

.sub-section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.social-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all var(--tr-smooth);
  position: relative;
}

.social-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-accent);
}

.social-card.insta:hover {
  border-color: #E1306C;
  box-shadow: 0 10px 30px rgba(225, 48, 108, 0.25);
}

.social-card.tiktok:hover {
  border-color: #00F2FE;
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.25);
}

.social-card.youtube:hover {
  border-color: #FF0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.25);
}

.social-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.social-card.insta .social-card-icon { color: #E1306C; background: rgba(225, 48, 108, 0.12); }
.social-card.tiktok .social-card-icon { color: #00F2FE; background: rgba(0, 242, 254, 0.12); }
.social-card.youtube .social-card-icon { color: #FF0000; background: rgba(255, 0, 0, 0.12); }

.social-card-info strong {
  display: block;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.social-card-info span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.card-arrow {
  margin-left: auto;
  font-size: 0.9rem;
  color: var(--text-sub);
  transition: transform var(--tr-fast);
}

.social-card:hover .card-arrow {
  transform: translate(3px, -3px);
  color: var(--accent-primary);
}

/* Instagram Reels Section */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.reel-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--tr-smooth);
}

.reel-card:hover {
  transform: translateY(-8px);
  border-color: #E1306C;
  box-shadow: 0 16px 36px rgba(225, 48, 108, 0.25);
}

.reel-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  background: #000000;
}

/* Crop out Instagram embed white header and footer */
.inline-insta-iframe {
  width: 100% !important;
  height: calc(100% + 125px) !important;
  margin-top: -56px !important;
  margin-bottom: -69px !important;
  border: none !important;
  outline: none !important;
  overflow: hidden !important;
  transform: scale(1.02);
}

.inline-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-card:hover .reel-thumb img {
  transform: scale(1.08);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9,10,15,0.2) 0%, rgba(9,10,15,0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity var(--tr-fast);
}

.reel-card:hover .reel-overlay {
  opacity: 1;
}

.reel-play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(225, 48, 108, 0.9);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
  transform: scale(0.9);
  transition: transform var(--tr-fast);
}

.reel-card:hover .reel-play-icon {
  transform: scale(1.1);
}

.reel-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(9, 10, 15, 0.8);
  backdrop-filter: blur(8px);
  color: #E1306C;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.reel-stats {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
}

.reel-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reel-info {
  padding: 18px 20px;
}

.reel-user {
  font-size: 0.8rem;
  font-weight: 700;
  color: #E1306C;
  display: block;
  margin-bottom: 6px;
}

.reel-caption {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
}

.reels-cta-wrap {
  margin-top: 20px;
}

/* --------------------------------------------------------------------------
   ADMIN DASHBOARD SPECIFIC STYLES
   -------------------------------------------------------------------------- */

.admin-body {
  background-color: #06070a;
  min-height: 100vh;
}

.admin-login-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 6, 9, 0.95);
  backdrop-filter: blur(20px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-box {
  width: 100%;
  max-width: 440px;
  padding: 40px;
  text-align: center;
  border-color: var(--glass-border-accent);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 91, 0, 0.15);
}

.login-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.login-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.login-hint {
  margin-top: 20px;
  color: var(--accent-light);
  font-size: 0.82rem;
}

/* Dashboard Layout */
.admin-dashboard-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.admin-sidebar {
  width: 280px;
  background: #090A0F;
  border-right: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  padding: 24px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  z-index: 100;
}

.sidebar-header {
  margin-bottom: 32px;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 91, 0, 0.15);
  border: 1px solid var(--glass-border-accent);
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 10px;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.sidebar-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-sub);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--tr-fast);
  text-align: left;
  width: 100%;
}

.sidebar-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
}

.sidebar-tab.active {
  background: var(--accent-primary);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--accent-glow);
}

.sidebar-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
}

.btn-danger-text:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  border-color: rgba(239, 68, 68, 0.3);
}

/* Admin Main Area */
.admin-main {
  margin-left: 280px;
  flex-grow: 1;
  padding: 32px 40px;
  min-height: 100vh;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
}

.admin-topbar h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.topbar-right {
  display: flex;
  gap: 12px;
}

/* Tabs Content */
.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Metrics Grid */
.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.metric-card {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.bg-orange { background: rgba(255, 91, 0, 0.15); color: #FF5B00; }
.bg-purple { background: rgba(168, 85, 247, 0.15); color: #A855F7; }
.bg-pink { background: rgba(225, 48, 108, 0.15); color: #E1306C; }
.bg-green { background: rgba(37, 211, 102, 0.15); color: #25D366; }

.metric-value {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  display: block;
  line-height: 1.1;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.admin-quick-actions {
  padding: 30px;
}

.admin-quick-actions h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.quick-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Admin Item Cards List */
.section-actions-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.section-actions-bar h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #FFFFFF;
}

.admin-cards-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.admin-cards-list.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.admin-item-card {
  padding: 24px;
  border-radius: 16px;
}

.item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--glass-border);
}

.item-badge {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--tr-fast);
}

.btn-icon.btn-danger {
  background: rgba(239, 68, 68, 0.12);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.btn-icon.btn-danger:hover {
  background: #EF4444;
  color: #FFFFFF;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }
.mt-3 { margin-top: 16px; }
.mt-4 { margin-top: 24px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 24px; }
.p-4 { padding: 32px; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }
/* Quick Actions Bar */
.quick-actions-bar {
  border-color: var(--glass-border-accent);
}

.quick-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.quick-title h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #FFFFFF;
}

.action-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(18, 20, 29, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: #FFFFFF;
  text-align: left;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.action-btn:hover {
  background: rgba(255, 91, 0, 0.1);
  border-color: var(--accent-primary);
  transform: translateY(-3px);
}

.action-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.action-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.action-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* User Profile Badge */
.admin-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.status-online {
  display: block;
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 600;
}

.tab-badge {
  margin-left: auto;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}

.sidebar-tab.active .tab-badge {
  background: var(--accent-primary);
  color: #FFFFFF;
}

/* Accordion Cards (Ultra Professional) */
.admin-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: border-color var(--tr-fast), box-shadow var(--tr-fast);
}

.accordion-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.accordion-card.open {
  border-color: var(--glass-border-accent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(18, 20, 29, 0.6);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.order-pill {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 8px;
}

.header-thumb {
  width: 60px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  border: 1px solid var(--glass-border);
}

.header-thumb.portrait {
  width: 40px;
  height: 55px;
}

.header-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.header-badge.bg-pink {
  color: #E1306C;
}

.header-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.action-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.action-icon-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
}

.action-icon-btn.text-danger:hover {
  background: #EF4444;
  color: #FFFFFF;
}

.action-icon-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.accordion-body {
  display: none;
  padding: 24px;
  border-top: 1px solid var(--glass-border);
  background: rgba(9, 10, 15, 0.8);
}

.accordion-card.open .accordion-body {
  display: block;
}

.edit-section-block {
  background: rgba(18, 20, 29, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
}

.edit-section-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 10px;
}

.input-with-badge {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-badge input {
  padding-right: 130px;
}

.field-badge {
  position: absolute;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.highlight-youtube {
  border-color: rgba(239, 68, 68, 0.4);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(18, 20, 29, 0.8) 100%);
}

.input-with-button {
  display: flex;
  gap: 12px;
  align-items: center;
}

.input-with-button input {
  flex-grow: 1;
}

.admin-preview-img-box {
  width: 100%;
  max-width: 220px;
  height: 125px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: #000;
}

.text-right { text-align: right; }
.text-xs { font-size: 0.75rem; }

.field-badge.bg-youtube {
  background: rgba(239, 68, 68, 0.2);
  color: #FF4D4D;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.help-text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Budget Generator Styles (ETZ Style) */
/* Practical Split-Screen Budget Layout */
.budget-split-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 1024px) {
  .budget-split-layout {
    grid-template-columns: 1fr;
  }
}

.instant-add-service-bar {
  display: flex;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px;
  border-radius: 12px;
  border: 1px dashed var(--glass-border-accent);
}

.instant-add-service-bar .price-mini {
  width: 120px;
}

.budget-practical-services-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.practical-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(18, 20, 29, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all var(--tr-fast);
}

.practical-service-row.active {
  background: rgba(255, 91, 0, 0.08);
  border-color: rgba(255, 91, 0, 0.3);
}

.row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-grow: 1;
}

.row-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-title-input {
  width: 100%;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 4px 8px;
  transition: all var(--tr-fast);
}

.service-title-input:hover, .service-title-input:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--glass-border);
}

.price-field {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--glass-border);
}

.price-field .currency {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-field .price-input {
  width: 75px;
  border: none;
  background: transparent;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-delete-budget-item {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: all var(--tr-fast);
}

.btn-delete-budget-item:hover {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.15);
}

/* Custom Switch Toggle */
.custom-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: .3s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .3s;
  border-radius: 50%;
}

.custom-switch input:checked + .switch-slider {
  background-color: var(--accent-primary);
}

.custom-switch input:checked + .switch-slider:before {
  transform: translateX(20px);
}

.total-live-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(18, 20, 29, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 24px 16px;
  border-radius: 16px;
}

.font-black { font-weight: 900; }
.btn-block { width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px; }

.flex-between { display: flex; justify-content: space-between; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.form-control-lg { padding: 14px 18px; font-size: 1rem; border-radius: 12px; }

.divider { border: none; height: 1px; background: var(--glass-border); margin: 24px 0; }

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(9, 10, 15, 0.95);
  border: 1px solid var(--glass-border-accent);
  color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6), 0 0 20px var(--accent-glow);
  z-index: 99999;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--tr-smooth);
}

.toast-notification i {
  color: var(--accent-primary);
  font-size: 1.3rem;
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/* FULL RESPONSIVE MEDIA QUERIES (DESKTOP, TABLET & MOBILE) */
@media (max-width: 1024px) {
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; padding: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .admin-dashboard-container { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; }
  .admin-main { margin-left: 0; padding: 16px; }
  .admin-topbar { flex-direction: column; gap: 16px; align-items: flex-start; }
  .topbar-actions { width: 100%; display: flex; flex-wrap: wrap; gap: 8px; }
  .topbar-actions .btn { flex: 1; text-align: center; }

  .header-left { flex-direction: column; align-items: flex-start; gap: 8px; }
  .accordion-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .header-actions { width: 100%; justify-content: space-between; }

  .budget-item-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .budget-item-controls { width: 100%; justify-content: space-between; }
  .budget-export-actions .flex-center { flex-direction: column; width: 100%; }
  .budget-export-actions .btn { width: 100%; margin-bottom: 8px; }

  .reels-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .input-with-button { flex-direction: column; align-items: stretch; }
  .input-with-button .btn { width: 100%; }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.8rem; }

/* ==========================================================================
   NEW BUDGET DASHBOARD STYLES (Cards Grid, Filters, KPIs & Responsive Modal)
   ========================================================================== */

.budget-dashboard-container {
  max-width: 1400px;
  margin: 0 auto;
}

.dashboard-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.dashboard-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

/* Visual Analytics & Progress Header */
.budget-analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.analytics-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 18, 28, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--tr-fast), border-color var(--tr-fast);
}

.analytics-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
}

.analytics-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.analytics-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #FFFFFF;
  flex-shrink: 0;
}

.bg-orange-glow { background: var(--accent-primary); box-shadow: 0 4px 20px rgba(255, 91, 0, 0.4); }
.bg-blue-glow { background: #3B82F6; box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4); }
.bg-purple-glow { background: #8B5CF6; box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4); }

.analytics-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.analytics-sub {
  font-size: 0.8rem;
  color: #94A3B8;
  display: block;
}

.analytics-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.1;
  margin-top: 2px;
}

.analytics-progress-track {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.analytics-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 10px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.6);
}

/* Status Distribution Bar Chart */
.status-distribution-bar {
  display: flex;
  height: 12px;
  border-radius: 8px;
  overflow: hidden;
  gap: 3px;
  background: rgba(255, 255, 255, 0.05);
}

.dist-segment {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s ease;
}

.dist-approved { background: #10B981; box-shadow: 0 0 8px rgba(16, 185, 129, 0.4); }
.dist-pending { background: #F59E0B; box-shadow: 0 0 8px rgba(245, 158, 11, 0.4); }
.dist-negotiating { background: #3B82F6; box-shadow: 0 0 8px rgba(59, 130, 246, 0.4); }
.dist-refused { background: #EF4444; box-shadow: 0 0 8px rgba(239, 68, 68, 0.4); }

.status-legend-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-top: 8px;
}

.legend-item {
  font-size: 0.75rem;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-green { background: #10B981; }
.dot-yellow { background: #F59E0B; }
.dot-blue { background: #3B82F6; }
.dot-red { background: #EF4444; }

.performance-mini-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.perf-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.perf-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #FFFFFF;
}

.perf-lbl {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.perf-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
}

/* Control Bar: Search & Status Filters */
.budget-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-box-wrapper {
  position: relative;
  flex-grow: 1;
  max-width: 450px;
}

.search-box-wrapper .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.search-input {
  padding-left: 40px !important;
  background: rgba(9, 11, 18, 0.8) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.status-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.filter-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.filter-pill.active {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-pill.pill-yellow.active { background: rgba(245, 158, 11, 0.2); color: #FBBF24; border-color: #F59E0B; }
.filter-pill.pill-green.active { background: rgba(16, 185, 129, 0.2); color: #34D399; border-color: #10B981; }
.filter-pill.pill-blue.active { background: rgba(59, 130, 246, 0.2); color: #60A5FA; border-color: #3B82F6; }
.filter-pill.pill-red.active { background: rgba(239, 68, 68, 0.2); color: #F87171; border-color: #EF4444; }

/* Cards Grid Layout */
.budget-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 22px;
}

/* Single Budget Card */
.budget-card-item {
  background: #121524;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.budget-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 91, 0, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 91, 0, 0.15);
}

.card-top-head {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.company-badge-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 91, 0, 0.25), rgba(255, 91, 0, 0.08));
  border: 1px solid rgba(255, 91, 0, 0.4);
  color: #FF5B00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 91, 0, 0.15);
}

.company-meta strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.company-meta span {
  display: block;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-top: 2px;
}

.status-badge-pill {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.status-badge-pill.status-Pendente {
  background: rgba(245, 158, 11, 0.2);
  color: #FBBF24;
  border: 1px solid rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.2);
}

.status-badge-pill.status-Aprovado {
  background: rgba(16, 185, 129, 0.2);
  color: #34D399;
  border: 1px solid rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.2);
}

.status-badge-pill.status-Em-Negociacao {
  background: rgba(59, 130, 246, 0.2);
  color: #60A5FA;
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

.status-badge-pill.status-Recusado {
  background: rgba(239, 68, 68, 0.2);
  color: #F87171;
  border: 1px solid rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.2);
}

.card-main-content {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-title-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin: 0;
}

.project-desc-snippet {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.card-items-preview {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
}

.items-preview-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
  margin-bottom: 8px;
}

.items-tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.item-tag {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.item-tag-more {
  background: rgba(255, 91, 0, 0.15);
  color: #FF5B00;
  border-color: rgba(255, 91, 0, 0.35);
  font-weight: 800;
}

.card-bottom-footer {
  padding: 18px 22px;
  background: rgba(8, 10, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.total-value-display {
  display: flex;
  flex-direction: column;
}

.total-value-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.total-value-amount {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #10B981;
}

.card-actions-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.card-action-btn.btn-wa:hover {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 0 14px rgba(37, 211, 102, 0.4);
}

.card-action-btn.btn-pdf:hover {
  background: #FF5B00;
  color: #FFFFFF;
  border-color: #FF5B00;
  box-shadow: 0 0 14px rgba(255, 91, 0, 0.4);
}

.card-action-btn.btn-edit-bgt:hover {
  background: #3B82F6;
  color: #FFFFFF;
  border-color: #3B82F6;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.4);
}

.card-action-btn.btn-danger:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
  box-shadow: 0 0 14px rgba(239, 68, 68, 0.4);
}

/* Modal Overlay & Responsive Form */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-modal-content {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: rgba(15, 18, 28, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.modal-header {
  padding: 20px 24px;
  background: rgba(22, 26, 40, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--tr-fast);
}

.modal-close-btn:hover {
  color: #FFFFFF;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.form-section-card {
  background: rgba(10, 12, 20, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px;
}

.form-section-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label-sm {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 6px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* Modal Quick Catalog Pills */
.quick-catalog-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cat-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--tr-fast);
}

.cat-pill-btn:hover {
  background: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
}

/* Modal Table */
.table-responsive {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.table-modal-items {
  width: 100%;
  border-collapse: collapse;
  background: rgba(9, 11, 18, 0.6);
}

.table-modal-items th {
  background: rgba(20, 24, 38, 0.9);
  color: #94A3B8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.table-modal-items td {
  padding: 8px 12px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.add-custom-item-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.add-custom-item-row .cat-mini { width: 120px; }
.add-custom-item-row .price-mini { width: 110px; }

.modal-total-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(10, 12, 20, 0.9) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 14px;
}

/* FULL MOBILE RESPONSIVENESS (< 768px & < 480px) */
@media (max-width: 768px) {
  .dashboard-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .dashboard-header-bar .btn {
    width: 100%;
  }
  .budget-controls-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .search-box-wrapper {
    max-width: 100%;
  }
  .status-filter-pills {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .budget-cards-grid {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .add-custom-item-row {
    flex-direction: column;
  }
  .add-custom-item-row .cat-mini, .add-custom-item-row .price-mini {
    width: 100%;
  }
  .admin-modal-content {
    max-height: 95vh;
  }
}

@media (max-width: 480px) {
  .budget-kpi-grid {
    grid-template-columns: 1fr;
  }
  .card-top-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .card-bottom-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .card-actions-group {
    justify-content: space-between;
  }
/* Split-View Modal & Visual Catalog Selector */
.modal-split-view {
  max-width: 1250px !important;
  width: 95vw;
}

.split-view-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

@media (max-width: 992px) {
  .split-view-form {
    grid-template-columns: 1fr;
  }
}

.catalog-grid-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 10px;
}

.catalog-chip-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  color: #FFFFFF;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all var(--tr-fast);
}

.catalog-chip-btn:hover {
  background: rgba(255, 91, 0, 0.15);
  border-color: rgba(255, 91, 0, 0.4);
  transform: translateY(-2px);
}

.catalog-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.catalog-chip-info {
  display: flex;
  flex-direction: column;
}

.catalog-chip-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.catalog-chip-price {
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 800;
}

/* Checkout Summary Column Right */
.checkout-summary-card {
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 12, 20, 0.85);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.checkout-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.add-custom-item-inline {
  display: flex;
  gap: 8px;
}

.add-custom-item-inline .price-sm {
  width: 110px;
}

.checkout-total-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(16, 185, 129, 0.04));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

.total-banner-label {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.total-banner-amount {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #10B981;
  margin: 4px 0;
  line-height: 1;
}

.total-banner-details {
  font-size: 0.75rem;
  color: #94A3B8;
}

.checkout-actions-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* ==========================================================================
   ADMIN DASHBOARD DESIGN SYSTEM & COMPONENTS
   ========================================================================== */
.admin-body {
  background-color: #07090E;
  color: #FFFFFF;
  min-height: 100vh;
  font-family: var(--font-body);
}

/* Ensure FontAwesome Icons keep icon fonts and don't inherit body font */
.admin-body i.fa-solid,
.admin-body i.fa-brands,
.admin-body i.fa-regular,
.admin-body i.fas,
.admin-body i.fab,
.admin-body i.far {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif !important;
  font-style: normal;
}

.admin-layout {
  display: flex;
  min-height: 100vh;
}

/* Admin Sidebar */
.admin-sidebar {
  width: 280px;
  background: #0B0E17;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.admin-brand img {
  height: 38px;
  width: auto;
}

.admin-brand-info h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.admin-brand-info span {
  font-size: 0.72rem;
  color: #FF5B00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 12px;
  color: #CBD5E1;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all var(--tr-smooth);
  background: transparent;
  border: 1px solid transparent;
  width: 100%;
  text-align: left;
}

.admin-nav-item i {
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
  color: #FF5B00;
  transition: all var(--tr-smooth);
}

.admin-nav-item:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.admin-nav-item.active {
  color: #FFFFFF;
  background: linear-gradient(135deg, rgba(255, 91, 0, 0.25), rgba(255, 136, 0, 0.25));
  border-color: rgba(255, 91, 0, 0.6);
  box-shadow: 0 4px 18px rgba(255, 91, 0, 0.2);
}

.admin-nav-item.active i {
  color: #FF8800;
  transform: scale(1.1);
}

.admin-sidebar-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-view-site {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--tr-smooth);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-view-site:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  border-color: #FF5B00;
}

/* Admin Main Content Area */
.admin-main {
  margin-left: 280px;
  flex: 1;
  padding: 40px;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

.admin-title-wrap h1 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.admin-title-wrap p {
  color: #94A3B8;
  font-size: 0.95rem;
}

.admin-header-actions {
  display: flex;
  gap: 14px;
}

/* Tab Panels Visibility Hiding */
.admin-tab-panel {
  display: none !important;
}

.admin-tab-panel.active {
  display: block !important;
  animation: fadeIn 0.3s ease;
}

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

/* Admin Stats Cards Grid */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 34px;
}

.admin-stat-card {
  background: #111522;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.admin-stat-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(255, 91, 0, 0.15);
  border: 1px solid rgba(255, 91, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF5B00;
  font-size: 1.45rem;
}

.admin-stat-info h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.admin-stat-info p {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 500;
}

.admin-panel-card {
  background: #111522;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-panel-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-panel-title i {
  color: #FF5B00;
}

/* Forms & Inputs */
.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-label i {
  color: #FF5B00;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  background: #0B0E17;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 12px 16px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--tr-smooth);
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #FF5B00;
  box-shadow: 0 0 14px rgba(255, 91, 0, 0.3);
  background: #07090E;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

/* Items Grid & Cards in Admin */
.admin-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.admin-item-card {
  background: #0B0E17;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--tr-smooth);
  position: relative;
}

.admin-item-card:hover {
  border-color: #FF5B00;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.admin-item-media {
  width: 100%;
  height: 160px;
  position: relative;
  background: #000000;
  overflow: hidden;
}

.admin-item-media img, .admin-item-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-item-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-item-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.3;
}

.admin-item-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.admin-item-meta {
  font-size: 0.78rem;
  color: #CBD5E1;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-item-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Action Buttons */
.btn-admin {
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--tr-smooth);
  border: none;
  font-family: var(--font-body);
}

.btn-admin-primary {
  background: linear-gradient(135deg, #FF5B00, #FF8800);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(255, 91, 0, 0.35);
}

.btn-admin-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 91, 0, 0.5);
  background: linear-gradient(135deg, #FF6A14, #FF951A);
}

.btn-admin-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-admin-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  border-color: #FF5B00;
}

.btn-admin-danger {
  background: rgba(239, 68, 68, 0.18);
  color: #EF4444;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.btn-admin-danger:hover {
  background: rgba(239, 68, 68, 0.4);
  color: #FFFFFF;
}

.btn-admin-sm {
  padding: 7px 14px;
  font-size: 0.8rem;
  border-radius: 8px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #111522;
  border: 1px solid #FF5B00;
  border-radius: 12px;
  padding: 16px 24px;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: slideInRight 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast.success {
  border-color: #10B981;
}

.toast.success i {
  color: #10B981;
}

.toast.error {
  border-color: #EF4444;
}

.toast.error i {
  color: #EF4444;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Modal in Admin */
.admin-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 7, 11, 0.88);
  backdrop-filter: blur(14px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  padding: 20px;
}

.admin-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.admin-modal-box {
  background: #111522;
  border: 1px solid rgba(255, 91, 0, 0.4);
  border-radius: 20px;
  width: 100%;
  max-width: 650px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.admin-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-modal-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
}

.admin-modal-close {
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #FFFFFF;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--tr-smooth);
}

.admin-modal-close:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #EF4444;
}

/* Media Preview Box */
.media-preview-box {
  margin-top: 10px;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  max-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.media-preview-box img, .media-preview-box video, .media-preview-box iframe {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Media Query Responsive for Admin */
@media (max-width: 992px) {
  .admin-sidebar {
    width: 230px;
  }
  .admin-main {
    margin-left: 230px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .admin-layout {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
    position: relative;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .admin-main {
    margin-left: 0;
    padding: 20px;
  }
}






