/*
Theme Name: ButItWorkedLocal Theme
Theme URI: https://staging.butitworkedlocal.com
Author: Antigravity
Description: A dark-mode, tech-themed troubleshooting guide theme featuring Outfit and JetBrains Mono fonts, customized difficulty badges, code copy buttons, and sidebar spec widgets.
Version: 1.0.0
Text Domain: butitworkedlocal-theme
*/

:root {
  --bg-main: #000000;
  --bg-card: #0b0c10;
  --bg-input: #12141c;
  --bg-nav: rgba(0, 0, 0, 0.85);
  --border-color: #1a1e2b;
  --border-focus: #f04030;
  
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --accent-green: #10b981;
  --accent-blue: #06b6d4;
  --accent-purple: #8b5cf6;
  --accent-red: #f04030;
  
  --gradient-purple-blue: linear-gradient(135deg, #f04030 0%, #f97316 50%, #f59e0b 100%);
  --gradient-dark-card: linear-gradient(145deg, #0b0c10 0%, #10121a 100%);
  
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-accent: 0 0 20px rgba(240, 64, 48, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-nav);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: translateY(-1px);
}

.logo-img {
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  box-shadow: 0 0 10px rgba(240, 64, 48, 0.15);
}

.header-logo-img {
  width: 72px;
  height: 72px;
}

.footer-logo-img {
  width: 96px;
  height: 96px;
}

.logo-accent {
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.main-nav a:hover, .main-nav .current-menu-item a {
  color: var(--text-primary);
}

/* Main content */
.site-main {
  flex: 1;
  padding: 3rem 0;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
}

.hero-logo-container {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border-color);
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.15), 0 0 20px rgba(245, 158, 11, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 0 50px rgba(239, 68, 68, 0.25), 0 0 30px rgba(245, 158, 11, 0.2);
}

.hero-badge {
  background-color: var(--border-color);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
}

.hero-gradient {
  background: var(--gradient-purple-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* Search Bar styling (for standard WP search fallback) */
.search-wrapper {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg), var(--shadow-accent);
  border-radius: 12px;
}

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

.search-wrapper input[type="text"], .search-wrapper input[type="search"] {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 1.25rem 1.25rem 1.25rem 3.25rem;
  font-size: 1.1rem;
  border-radius: 12px;
  font-family: var(--font-sans);
  outline: none;
  transition: all 0.25s ease;
}

.search-wrapper input[type="text"]:focus, .search-wrapper input[type="search"]:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 2px rgba(240, 64, 48, 0.2);
}

/* Filter Tag buttons */
.filter-section {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.tag-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  list-style: none;
}

.filter-tag, .tag-filters a {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-block;
}

.filter-tag:hover, .tag-filters a:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.filter-tag.active, .tag-filters .current-cat a {
  background: var(--gradient-purple-blue);
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-sm);
}

/* Guides section and Grid */
.guides-section {
  padding: 4rem 0;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

@media (max-width: 480px) {
  .guides-grid {
    grid-template-columns: 1fr;
  }
}

.guide-card {
  background: var(--gradient-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: #f04030;
  box-shadow: 0 12px 20px -8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(240, 64, 48, 0.1);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

/* Difficulty Badges */
.difficulty-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: inline-block;
}

.difficulty-badge.beginner {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent-green);
}

.difficulty-badge.intermediate {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.difficulty-badge.advanced {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

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

.card-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.card-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.card-title a:hover {
  color: #f97316;
}

.card-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.card-tag {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
}

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

.card-env {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 65%;
}

.read-more-btn {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #fdba74;
}

/* Pagination */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.pagination-container a, .pagination-container span {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pagination-container a:hover {
  border-color: var(--border-focus);
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(240, 64, 48, 0.1);
}

.pagination-container span.current {
  background: var(--gradient-purple-blue);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 15px rgba(240, 64, 48, 0.2);
}

/* About Section */
.about-section {
  background-color: #080a0e;
  padding: 5rem 0;
}

.about-card {
  background: var(--gradient-dark-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Single page layout */
.post-container {
  padding-top: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.back-navigation {
  margin-bottom: 2rem;
}

.back-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.back-link:hover {
  color: #f04030;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .post-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.post-content {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-md);
  min-width: 0;
}

@media (max-width: 768px) {
  .post-content {
    padding: 1.5rem;
  }
}

.post-header {
  margin-bottom: 2rem;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 950;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .post-title {
    font-size: 1.75rem;
  }
}

.post-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.header-divider {
  border: 0;
  height: 1px;
  background-color: var(--border-color);
  margin: 2rem 0;
}

.markdown-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-primary);
}

.markdown-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 2.5rem 0 1rem 0;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.markdown-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  color: var(--text-primary);
}

.markdown-body p {
  margin-bottom: 1.25rem;
}

.markdown-body ul, .markdown-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.markdown-body li {
  margin-bottom: 0.5rem;
}

.markdown-body blockquote {
  border-left: 4px solid var(--border-focus);
  background-color: rgba(79, 70, 229, 0.05);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
}

.markdown-body blockquote p {
  margin: 0;
  color: var(--text-secondary);
  font-style: italic;
}

/* Sidebar Widgets */
.post-sidebar {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 1.5rem;
  max-height: calc(100vh - 10rem);
  overflow-y: auto;
  padding-right: 0.5rem;
}

.post-sidebar::-webkit-scrollbar {
  width: 6px;
}
.post-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.post-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 3px;
}
.post-sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--border-focus);
}

@media (max-width: 1024px) {
  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.sidebar-widget {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
}

.sidebar-widget h4 {
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.specs-widget p {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.error-code-box {
  margin-top: 1.25rem;
}

.error-signature {
  background-color: #171b26;
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--accent-red);
  display: block;
  word-break: break-all;
  font-family: var(--font-mono);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}

.meta-widget p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.meta-widget p:last-child {
  margin-bottom: 0;
}

.promo-widget {
  background: linear-gradient(135deg, rgba(240, 64, 48, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
  border: 1px solid rgba(240, 64, 48, 0.25);
  box-shadow: var(--shadow-sm);
}

.promo-widget p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.promo-btn {
  display: block;
  text-align: center;
  background: var(--gradient-purple-blue);
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-md);
}

.promo-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(240, 64, 48, 0.25);
}

/* Code Blocks & Copy Button */
pre {
  background-color: #090a0f !important;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  font-family: var(--font-mono) !important;
  font-size: 0.875rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  position: relative;
}

code {
  font-family: var(--font-mono) !important;
}

p code {
  background-color: #171b26;
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #f472b6;
}

.copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: #1f2937;
  border: 1px solid #374151;
  color: var(--text-secondary);
  border-radius: 4px;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0;
}

pre:hover .copy-btn {
  opacity: 1;
}

.copy-btn:hover {
  background-color: #374151;
  color: var(--text-primary);
}

.copy-btn.copied {
  background-color: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

/* Footer styling */
.site-footer {
  background-color: #080a0e;
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
  margin-top: auto;
}

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

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-tagline {
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links h4, .footer-affiliate h4 {
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
}

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

.footer-affiliate p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.partner-badge {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.partner-badge span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-link {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.badge-link:hover {
  color: #fdba74;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Static Pages Styling (About, Contact, Privacy) */
.trust-page-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}

.content-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.content-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-gradient {
  background: linear-gradient(90deg, #f97316 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin: 0;
}

.content-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.story-section h2, .team-section h2, .pledge-section h2, .inquiries-section h2, .form-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.story-section p, .inquiries-section p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.team-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: #f97316;
}

.team-card .avatar {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-card h3 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
  font-weight: 700;
}

.team-card .role {
  color: #f97316;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-card .bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.pledge-section ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pledge-section li {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.pledge-section li strong {
  color: var(--text-primary);
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

/* Contact Page specific styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.inquiry-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 1.5rem;
}

.inquiry-item .icon {
  font-size: 1.5rem;
}

.inquiry-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.inquiry-item p {
  margin: 0;
  font-size: 1rem;
}

.inquiry-item a {
  color: #f97316;
  font-weight: 600;
}

.contact-form-container {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input, .form-group textarea {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus, .form-group textarea:focus {
  border-color: #f97316;
  outline: none;
}

.submit-btn {
  background: linear-gradient(90deg, #f97316 0%, #a855f7 100%);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: opacity 0.2s ease;
}

.submit-btn:hover {
  opacity: 0.9;
}
