/* ==========================================================================
   MD. ABU TAHER - PORTFOLIO DESIGN SYSTEM & STYLESHEET
   Aesthetic: Luxury Obsidian & Champagne Gold, Glassmorphism, Modern Editorial
   ========================================================================== */

:root {
  /* Core Palette */
  --bg-darkest: #07080c;
  --bg-darker: #0c0e14;
  --bg-card: rgba(18, 22, 33, 0.75);
  --bg-card-hover: rgba(26, 31, 48, 0.85);
  --bg-elevated: #161a26;
  --border-subtle: rgba(212, 175, 55, 0.14);
  --border-glow: rgba(212, 175, 55, 0.4);

  /* Gold & Metallic Accents */
  --gold-primary: #d4af37;
  --gold-light: #f5e4a8;
  --gold-vibrant: #e6be44;
  --gold-deep: #9d7b1b;
  --gold-gradient: linear-gradient(135deg, #faebb7 0%, #d4af37 50%, #997517 100%);
  --gold-gradient-glow: linear-gradient(135deg, rgba(250, 235, 183, 0.25) 0%, rgba(212, 175, 55, 0.15) 50%, transparent 100%);
  --gold-text-clip: linear-gradient(135deg, #fff2cc 0%, #d4af37 60%, #aa801a 100%);

  /* Text Colors */
  --text-primary: #f5f6f9;
  --text-secondary: #a9b0c2;
  --text-muted: #6b7280;
  --text-gold: #d4af37;

  /* Accent Tones */
  --emerald-subtle: #0f291e;
  --emerald-border: rgba(45, 106, 79, 0.35);

  /* Typography */
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-arabic: 'Amiri', 'Traditional Arabic', serif;

  /* Shadows & Glass */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.08);
  --shadow-gold: 0 0 25px rgba(212, 175, 55, 0.25);
  --glass-blur: blur(16px);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere Gradients */
.ambient-glow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.15;
  will-change: transform;
}

.glow-1 {
  top: -10%;
  left: 20%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #d4af37, transparent 70%);
}

.glow-2 {
  top: 45%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #0f402c, transparent 70%);
}

.glow-3 {
  bottom: 5%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #7e5a12, transparent 70%);
}

/* Common Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Typography Utilities */
.gold-gradient-text {
  background: var(--gold-text-clip);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.arabic-inline {
  font-family: var(--font-arabic);
  font-size: 1.2em;
  line-height: 1;
  color: var(--gold-primary);
  margin: 0 0.35rem;
  vertical-align: middle;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.85rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0c0e14;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.45);
  filter: brightness(1.08);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-fiverr {
  background: rgba(29, 191, 115, 0.1);
  color: #2ed385;
  border: 1px solid rgba(29, 191, 115, 0.3);
}

.btn-fiverr:hover {
  background: rgba(29, 191, 115, 0.2);
  border-color: #2ed385;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-symbol {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-arabic);
  font-size: 1.6rem;
  font-weight: bold;
  color: #07080c;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

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

.logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.logo-tagline {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--gold-primary);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

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

/* Navigation Dropdown (More: Reviews & Track Order) */
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  list-style: none !important;
}

.nav-dropdown-toggle {
  background: transparent !important;
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  color: var(--text-secondary);
  text-decoration: none !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
  transition: var(--transition-smooth);
  position: relative;
  outline: none !important;
  box-shadow: none !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.nav-dropdown-toggle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown:focus-within .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--gold-primary);
}

.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle.active::after,
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  width: 100%;
}

.nav-dropdown-toggle .dropdown-chevron {
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--gold-primary);
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown:focus-within .dropdown-chevron,
.nav-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  left: auto;
  transform: translateY(8px);
  background: rgba(13, 16, 23, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 175px;
  list-style: none !important;
  margin: 0 !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 25px rgba(212, 175, 55, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
}

@media (min-width: 769px) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 1rem;
  }
}

.nav-dropdown-menu li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-dropdown-link {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  padding: 0.65rem 0.95rem !important;
  color: #cbd5e1 !important;
  text-decoration: none !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition-fast) !important;
  white-space: nowrap !important;
}

.nav-dropdown-link:visited {
  color: #cbd5e1 !important;
}

.nav-dropdown-link:hover,
.nav-dropdown-link.active {
  background: rgba(212, 175, 55, 0.14) !important;
  color: var(--gold-primary) !important;
}

.dropdown-link-icon {
  font-size: 0.95rem !important;
  color: var(--gold-primary) !important;
  display: inline-block !important;
  line-height: 1 !important;
}

.nav-dropdown-link svg {
  color: var(--gold-primary);
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.nav-admin-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold-primary);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 5rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge-wrap {
  margin-bottom: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.metric-value .accent {
  color: var(--gold-primary);
}

.metric-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
}

.visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(212, 175, 55, 0.1) 100%);
  box-shadow: var(--shadow-lg);
}

.visual-inner {
  position: relative;
  border-radius: calc(var(--radius-lg) - 4px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-darker);
}

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

.visual-frame:hover .visual-inner img {
  transform: scale(1.04);
}

.floating-badge {
  position: absolute;
  padding: 0.85rem 1.25rem;
  background: rgba(12, 14, 20, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.badge-fiverr {
  bottom: -20px;
  left: -25px;
}

.badge-fiverr .icon-star {
  color: #ffb800;
  font-size: 1.4rem;
}

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

.badge-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.badge-specialty {
  top: 25px;
  right: -25px;
  background: linear-gradient(135deg, rgba(20, 26, 40, 0.9), rgba(12, 15, 22, 0.9));
  border-color: rgba(212, 175, 55, 0.3);
}

.badge-arabic {
  font-family: var(--font-arabic);
  font-size: 1.8rem;
  color: var(--gold-primary);
  line-height: 1;
}

/* ==========================================================================
   ABOUT & ARTIST SECTION
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-darkest) 0%, var(--bg-darker) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
  align-items: center;
}

.about-photo-wrap {
  position: relative;
}

.photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  background: var(--bg-card);
}

.photo-card img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.05);
}

.experience-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(7, 8, 12, 0.85);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exp-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-primary);
  line-height: 1;
}

.exp-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.3;
}

.about-content .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.about-bio {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.skill-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.skill-pill:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.skill-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.skill-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ==========================================================================
   PORTFOLIO SHOWCASE SECTION
   ========================================================================== */
.portfolio-section {
  padding: 7rem 0;
  position: relative;
}

.portfolio-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--border-glow);
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.08);
}

.filter-btn.active {
  background: var(--gold-gradient);
  color: #07080c;
  font-weight: 600;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

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

.portfolio-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-lg);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-darker);
}

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

.portfolio-card:hover .card-media img {
  transform: scale(1.08);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 8, 12, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.overlay-btn {
  background: var(--gold-gradient);
  color: #07080c;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.card-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}

.card-country {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-left: auto;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.script-style {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.script-style span {
  color: var(--gold-light);
  font-weight: 500;
}

.inspect-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-primary);
  cursor: pointer;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.inspect-link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   THE CRAFTSMANSHIP & PROCESS SECTION
   ========================================================================== */
.craft-section {
  padding: 7rem 0;
  background: var(--bg-darker);
  position: relative;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: var(--transition-smooth);
}

.process-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.process-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.25);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.process-card:hover .process-number {
  color: var(--gold-primary);
}

.process-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Showcase Feature Banner */
.craft-banner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  background: linear-gradient(135deg, rgba(22, 26, 38, 0.8), rgba(12, 14, 20, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 3rem;
  align-items: center;
}

.banner-img-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.banner-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-content .section-title {
  text-align: left;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.banner-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.deliverables-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-primary);
}

.checklist-icon {
  color: #10b981;
  font-weight: bold;
}

/* ==========================================================================
   PACKAGES & PRICING CALCULATOR
   ========================================================================== */
.pricing-section {
  padding: 7rem 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-bottom: 5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(30, 36, 56, 0.85) 0%, rgba(16, 20, 30, 0.95) 100%);
  border: 1px solid var(--border-glow);
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.pricing-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-lg);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: #07080c;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.pricing-header {
  margin-bottom: 1.8rem;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tier-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.tier-price {
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-primary);
}

.amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}

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

.tier-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.feature-icon {
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Interactive Project Cost Estimator */
.calculator-box {
  background: linear-gradient(135deg, rgba(20, 25, 38, 0.9), rgba(12, 15, 22, 0.95));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.calculator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.calc-total-wrap {
  text-align: right;
  background: rgba(212, 175, 55, 0.08);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.calc-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
}

.calc-total {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.addon-checkbox {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.addon-checkbox:hover {
  border-color: var(--border-glow);
  background: rgba(212, 175, 55, 0.05);
}

.addon-checkbox.selected {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.1);
}

.addon-checkbox input {
  margin-top: 4px;
  accent-color: var(--gold-primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

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

.addon-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.addon-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.addon-price {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-light);
}

/* ==========================================================================
   TESTIMONIALS & FIVERR REVIEWS
   ========================================================================== */
.testimonials-section {
  padding: 7rem 0;
  background: var(--bg-darker);
  border-top: 1px solid var(--border-subtle);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  display: flex;
  gap: 0.25rem;
  color: #ffb800;
  margin-bottom: 1.25rem;
}

.review-quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.client-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.client-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.client-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
}

.fiverr-trust-banner {
  background: rgba(29, 191, 115, 0.06);
  border: 1px solid rgba(29, 191, 115, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.fiverr-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1dbf73;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
}

.trust-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.trust-subtitle {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   CONTACT & INQUIRY SECTION
   ========================================================================== */
.contact-section {
  padding: 7rem 0;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
}

.contact-info .section-title {
  text-align: left;
  margin-bottom: 1.25rem;
}

.contact-bio {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.contact-channel:hover {
  border-color: var(--gold-primary);
  transform: translateX(6px);
  background: var(--bg-card-hover);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.channel-icon.fiverr {
  background: rgba(29, 191, 115, 0.12);
  color: #1dbf73;
}

.channel-icon.whatsapp {
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
}

.channel-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.channel-value {
  font-weight: 600;
  font-size: 1rem;
}

/* Inquiry Form */
.inquiry-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.15rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.03);
}

.form-select option {
  background-color: var(--bg-darker);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* ==========================================================================
   INTERACTIVE LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 12, 0.95);
  backdrop-filter: blur(25px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 2rem;
}

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

.lightbox-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.lightbox-media {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 80vh;
}

.lightbox-details {
  padding: 2.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition-smooth);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--gold-primary);
  color: #07080c;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #050608;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5rem 0 2.5rem 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo {
  margin-bottom: 1.25rem;
}

.footer-text,
.footer-bio {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 1.5rem;
}

.fiverr-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 1.1rem;
  background: rgba(26, 32, 44, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-top: 0.5rem;
}

.fiverr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1dbf73;
  color: #ffffff;
  font-weight: 800;
  font-size: 0.88rem;
  font-family: inherit;
  flex-shrink: 0;
}

.trust-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.trust-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.trust-stars {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 600;
  line-height: 1.2;
}

.footer-contact-item {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 0.65rem;
}

.footer-heading,
.footer-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-nav,
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.footer-nav a,
.footer-links a,
.footer-col ul li a,
.footer-grid ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  transition: var(--transition-smooth);
  display: inline-block;
}

.footer-nav a:hover,
.footer-links a:hover,
.footer-col ul li a:hover,
.footer-grid ul li a:hover {
  color: var(--gold-primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--gold-primary);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid, .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .craft-banner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 75px;
    left: 1rem;
    right: 1rem;
    background: rgba(12, 14, 20, 0.96);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-links.mobile-active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    font-size: 1rem;
    padding: 0.4rem 0;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    background: rgba(20, 24, 34, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding: 0.4rem;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: block;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .inquiry-form-card {
    padding: 2rem 1.5rem;
  }

  .lightbox-dialog {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   MULTI-PAGE EXTENSIONS & ADVANCED COMPONENTS
   ========================================================================== */

/* Navbar Admin Direct Icon */
.nav-admin-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-size: 1.1rem;
  position: relative;
}

.nav-admin-btn:hover {
  background: var(--gold-gradient);
  color: #07080c;
  border-color: var(--gold-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.nav-admin-btn.logged-in::after {
  content: '';
  position: absolute;
  top: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.breadcrumbs a:hover {
  color: var(--gold-primary);
}

.breadcrumbs span.current {
  color: var(--gold-light);
  font-weight: 500;
}

/* Multi-Facet Catalog Filters & Search */
.catalog-controls-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.controls-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.search-input-wrap input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem 0.75rem 2.8rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-smooth);
}

.search-input-wrap input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-icon-pos {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.select-filter-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.catalog-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.catalog-select:focus {
  border-color: var(--gold-primary);
}

.catalog-select option {
  background: var(--bg-darker);
  color: var(--text-primary);
}

.catalog-counter-badge {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.catalog-counter-badge strong {
  color: var(--gold-primary);
}

/* Dedicated Case Study Page Styles */
.case-study-hero {
  padding: 7rem 0 3.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  padding: 4rem 0;
}

.case-study-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--bg-darker);
}

.case-study-main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.case-study-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.meta-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
}

.meta-spec-label {
  color: var(--text-muted);
}

.meta-spec-val {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

.color-swatch-list {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.color-swatch-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.swatch-circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.case-study-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
}

.case-study-narrative {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Real-Time Order Tracking Portal Styles */
.tracker-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 0;
}

.tracker-search-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3rem;
  text-align: center;
}

.tracker-input-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.tracker-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  padding: 0.9rem 1.5rem;
  color: var(--text-primary);
  font-size: 1.05rem;
  outline: none;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.tracker-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.order-result-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.order-result-card.active {
  display: block;
}

.order-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-id-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.order-status-pill {
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-in_progress {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.status-review {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-completed {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Stepper Milestones */
.stepper-wrap {
  margin: 2.5rem 0;
  position: relative;
}

.stepper-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.step-node {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-darker);
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.step-node.completed .step-circle {
  background: #10b981;
  border-color: #10b981;
  color: #07080c;
}

.step-node.active .step-circle {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  animation: pulse-dot 2s infinite;
}

.step-title {
  font-size: 0.85rem;
  font-weight: 600;
}

.step-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Countdown Timer */
.countdown-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(12, 14, 20, 0.9));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin: 2rem 0;
}

.countdown-digits {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold-primary);
  letter-spacing: 2px;
}

/* Quick Admin Modal */
.admin-quick-modal {
  position: fixed;
  inset: 0;
  background: rgba(7, 8, 12, 0.92);
  backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.quick-modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Milestone Stepper (Vertical & Horizontal Responsive) */
.milestone-stepper {
  position: relative;
  padding-left: 0.5rem;
}

.milestone-stepper::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 25px;
  left: 23px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.step-item.done {
  opacity: 1;
}

.step-item.current {
  opacity: 1;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: #161a26;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.step-item.done .step-circle {
  background: var(--gold-primary);
  border-color: var(--gold-light);
  color: #000;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.step-item.current .step-circle {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.6);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.step-content {
  flex: 1;
  padding-top: 0.2rem;
}

.step-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.step-item.done .step-title {
  color: var(--gold-light);
}

.step-item.current .step-title {
  color: var(--gold-primary);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .case-study-grid {
    grid-template-columns: 1fr;
  }
  .case-study-sidebar {
    position: static;
  }
  .stepper-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .tracker-input-row {
    flex-direction: column;
  }
}

