/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #0a0a0c;
  --bg-secondary: #131317;
  --bg-tertiary: #1c1c22;
  
  --accent-orange: #f57c00;
  --accent-orange-hover: #ff9800;
  --accent-orange-glow: rgba(245, 124, 0, 0.35);
  
  --accent-wood: #a17053;
  --accent-wood-hover: #b98464;
  --accent-wood-glow: rgba(161, 112, 83, 0.25);
  
  --steel-gray: #4e5564;
  --steel-light: #8e96a7;
  
  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* UI Elements */
  --border-color: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(245, 124, 0, 0.15);
  --glass-bg: rgba(19, 19, 23, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  
  /* Typography */
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.6);
  --glow-orange: 0 0 20px rgba(245, 124, 0, 0.25);
  
  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-orange);
}

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

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

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Common Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Highlight Orange Text */
.highlight {
  color: var(--accent-orange);
  position: relative;
  display: inline-block;
}

.highlight-wood {
  color: var(--accent-wood);
}

/* Section Common Styling */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   GLASSMORPHISM COMPONENT & CARD
   ========================================================================== */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #e65100);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.5), var(--glow-orange);
  background: linear-gradient(135deg, var(--accent-orange-hover), #f57c00);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-wood {
  background: linear-gradient(135deg, var(--accent-wood), #3e2723);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(161, 112, 83, 0.3);
}

.btn-wood:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(161, 112, 83, 0.5);
  background: linear-gradient(135deg, var(--accent-wood-hover), var(--accent-wood));
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 124, 0, 0.25);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(245, 124, 0, 0.05);
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon-wrap {
  border-color: var(--accent-orange);
  box-shadow: 0 0 15px var(--accent-orange-glow);
  transform: rotate(-8deg) scale(1.05);
  background: rgba(245, 124, 0, 0.05);
}

.logo-icon-wrap svg {
  color: var(--accent-orange);
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 4px var(--accent-orange));
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-transform: uppercase;
}

.logo-title .highlight-orange {
  color: var(--accent-orange);
  background: linear-gradient(135deg, #ff9800, #f57c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 1px rgba(245, 124, 0, 0.2));
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.1rem;
  transition: var(--transition-fast);
}

.logo:hover .logo-subtitle {
  color: var(--accent-wood);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-orange);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-smooth);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-actions {
    display: none; /* Show inside menu or keep clean */
  }
  
  .nav-menu.active ~ .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav-menu.active ~ .menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-menu.active ~ .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(19, 19, 23, 0.4) 0%, var(--bg-primary) 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  filter: grayscale(30%) brightness(55%);
  transition: var(--transition-smooth);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.2) 0%, rgba(10, 10, 12, 0.95) 100%),
              linear-gradient(to right, rgba(10, 10, 12, 0.8) 0%, rgba(10, 10, 12, 0.4) 50%, rgba(10, 10, 12, 0.8) 100%);
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin-top: 4rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: fadeInDown 1s var(--transition-smooth);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s var(--transition-smooth);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 2.5rem auto;
  animation: fadeInUp 1.2s var(--transition-smooth);
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  animation: fadeInUp 1.4s var(--transition-smooth);
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    font-size: 1.05rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}

/* ==========================================================================
   STATS / FEATURE HIGHLIGHTS
   ========================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: -5rem;
  position: relative;
  z-index: 10;
}

.stat-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-orange-glow);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 15px rgba(245, 124, 0, 0.1);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(245, 124, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(245, 124, 0, 0.2);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -3rem;
  }
}
@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    margin-top: -2rem;
  }
}

/* ==========================================================================
   ABOUT / SERVICES SECTION
   ========================================================================== */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-item-icon {
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-item-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.service-item-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.about-image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: grayscale(10%) contrast(110%);
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
  transform: scale(1.05);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-badge {
    left: 1rem;
    bottom: 1rem;
  }
}

/* ==========================================================================
   PORTFOLIO / CATALOG (NETFLIX STYLE & GRID)
   ========================================================================== */
.portfolio {
  background-color: var(--bg-secondary);
  overflow: hidden;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.portfolio-filters {
  display: inline-flex;
  background: var(--bg-tertiary);
  padding: 0.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.filter-btn {
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
}

.filter-btn.active {
  background: var(--accent-orange);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(245, 124, 0, 0.25);
}

/* Netflix Style Scroll Track */
.netflix-carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
}

.netflix-track-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent-orange);
}

.netflix-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 1.5rem 2rem 1.5rem;
  margin: 0 -1.5rem;
  scrollbar-width: none; /* Firefox */
}

.netflix-carousel::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

/* Portfolio Card */
.project-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(245, 124, 0, 0.25);
  box-shadow: var(--shadow-lg), 0 8px 25px rgba(245, 124, 0, 0.15);
}

.project-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.project-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-color);
  color: var(--accent-orange);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.project-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.project-card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6rem;
}

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

.project-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.project-view-btn {
  font-size: 0.85rem;
  color: var(--accent-orange);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.project-view-btn:hover {
  color: var(--accent-orange-hover);
}

/* Admin Card Badges and Overlays */
.admin-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 5;
  transition: var(--transition-fast);
}

body.admin-mode .project-card:hover .admin-card-overlay {
  opacity: 1;
  pointer-events: all;
}

.admin-card-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.admin-card-btn-edit {
  background: var(--accent-wood);
}
.admin-card-btn-edit:hover {
  background: var(--accent-wood-hover);
  transform: scale(1.1);
}

.admin-card-btn-delete {
  background: #d32f2f;
}
.admin-card-btn-delete:hover {
  background: #f44336;
  transform: scale(1.1);
}

/* Carousel Control Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 5;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: white;
}

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

/* Fallback Grid when filtering (or default alternative layout) */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  transition: var(--transition-smooth);
}

.grid-hide {
  display: none !important;
}

/* ==========================================================================
   BUDGET BUILDER SECTION (INTERACTIVE WHATSAPP)
   ========================================================================== */
.budget-section {
  position: relative;
}

.budget-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.budget-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(245, 124, 0, 0.1);
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

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

.budget-form-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

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

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

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 10px rgba(245, 124, 0, 0.15);
}

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

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

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

@media (max-width: 992px) {
  .budget-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   HASHTAGS & SOCIAL MEDIA SECTION
   ========================================================================== */
.hashtag-section {
  background-color: var(--bg-secondary);
}

.hashtag-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.hashtag-phone-mockup {
  position: relative;
  background: #000;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(245, 124, 0, 0.05);
  border: 4px solid #27272a;
  max-width: 320px;
  justify-self: center;
  width: 100%;
  aspect-ratio: 9/19;
}

.phone-screen {
  background: #121214;
  border-radius: 30px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-header {
  height: 40px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.phone-notch {
  width: 110px;
  height: 18px;
  background: #000;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.phone-content {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-post-card {
  background: #1c1c22;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.post-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
}

.post-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
}

.post-user-info {
  display: flex;
  flex-direction: column;
}

.post-username {
  font-size: 0.85rem;
  font-weight: 700;
}

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

.post-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.post-actions {
  display: flex;
  gap: 1rem;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 1.1rem;
}

.post-caption {
  padding: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.post-caption-hashtags {
  color: var(--accent-orange);
  display: block;
  margin-top: 0.25rem;
}

/* Hashtag List & Dashboard */
.hashtag-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hashtag-card {
  padding: 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-tertiary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hashtag-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hashtag-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.hashtag-list-container {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--accent-orange);
  background: var(--bg-primary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.03);
  word-wrap: break-word;
  user-select: all;
  min-height: 4.5rem;
}

.copy-feedback {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #4caf50;
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  transform: translateY(-5px);
}

.copy-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .hashtag-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-detail-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--accent-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-detail-val {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-detail-val a:hover {
  color: var(--accent-orange);
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-map-wrapper {
    aspect-ratio: 4/3;
  }
}

/* ==========================================================================
   ADMIN LOGIN & CMS CONTROLS MODAL
   ========================================================================== */
/* Login Button Floating / Discreto */
.admin-trigger-wrap {
  text-align: center;
  padding: 1.5rem 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.btn-admin-trigger {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.btn-admin-trigger:hover {
  color: var(--accent-orange);
}

/* Admin Bar Fixed (when logged in) */
.admin-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #e65100;
  color: white;
  z-index: 105;
  padding: 0.5rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}

body.admin-mode .admin-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.admin-mode {
  padding-top: 2.3rem; /* Offset for admin bar */
}

body.admin-mode .header {
  top: 2.3rem;
}

.admin-bar-actions {
  display: flex;
  gap: 1rem;
}

.admin-bar-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: white;
  font-weight: 700;
  transition: var(--transition-fast);
}

.admin-bar-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.admin-bar-btn-logout {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(0,0,0,0.5);
}

.admin-bar-btn-logout:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Add Item Floating Action Button */
.admin-fab {
  display: none;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-orange);
  color: white;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  transition: var(--transition-smooth);
}

body.admin-mode .admin-fab {
  display: flex;
}

.admin-fab:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--accent-orange-hover);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.7), var(--glow-orange);
}

/* Modals General Style */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

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

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.image-preview-zone {
  width: 100%;
  aspect-ratio: 16/9;
  border: 2px dashed rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  overflow: hidden;
  background: var(--bg-primary);
  margin-bottom: 1rem;
  transition: var(--transition-fast);
  position: relative;
}

.image-preview-zone:hover {
  border-color: var(--accent-orange);
  background: rgba(245, 124, 0, 0.02);
}

.image-preview-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview-zone .preview-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}

.image-preview-zone .preview-placeholder svg {
  color: var(--accent-orange);
  width: 36px;
  height: 36px;
}

/* Lightbox Modal Specifics */
.lightbox-card {
  max-width: 960px;
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.lightbox-img-wrap {
  width: 100%;
  max-height: 70vh;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox-details {
  text-align: center;
  max-width: 600px;
  color: var(--text-primary);
}

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

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(19, 19, 23, 0.8);
  border: 1px solid var(--glass-border);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
}

.lightbox-prev {
  left: -4rem;
}
.lightbox-next {
  right: -4rem;
}

@media (max-width: 1100px) {
  .lightbox-prev {
    left: 1rem;
  }
  .lightbox-next {
    right: 1rem;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--accent-orange);
  padding-left: 4px;
}

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

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   ADMIN ONLY MODULE STYLING
   ========================================================================== */
.admin-only-section, .admin-only-nav {
  display: none !important;
}

body.admin-mode .admin-only-section {
  display: block !important;
}

body.admin-mode .admin-only-nav {
  display: inline-block !important;
}

/* Make sure mobile active menu respects the display setting */
body.admin-mode .nav-menu.active .admin-only-nav {
  display: block !important;
}

