:root {
  --bg: #0b1021;
  --surface: #0f172a;
  --card: #111a32;
  --input-bg: #0b1226;
  --secondary-bg: #0c1324;
  --accent: #7c3aed;
  --accent-2: #0ea5e9;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --gradient: linear-gradient(135deg, #7c3aed, #0ea5e9);
}

[data-theme="light"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --card: #f1f5f9;
  --input-bg: #ffffff;
  --secondary-bg: #f8fafc;
  --accent: #7c3aed;
  --accent-2: #0ea5e9;
  --text: #1e293b;
  --muted: #64748b;
  --border: rgba(100, 116, 139, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  --gradient: linear-gradient(135deg, #7c3aed, #0ea5e9);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition: none !important;
  }
}

/* Breadcrumbs Navigation */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs li:not(:last-child)::after {
  content: '›';
  color: var(--muted);
  font-size: 16px;
  margin-left: 4px;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.breadcrumbs [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* Enhanced Keyboard Focus Indicators */
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Ensure buttons maintain their styles with focus */
.button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

/* Don't show outline on mouse clicks, only keyboard */
*:focus:not(:focus-visible) {
  outline: none;
}

/* Tooltip System */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]:hover::before,
[data-tooltip]:focus::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  margin-bottom: 8px;
  border: 1px solid var(--border);
  pointer-events: none;
  opacity: 0;
  animation: tooltipFadeIn 0.2s ease forwards;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--surface);
  margin-bottom: 2px;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  animation: tooltipFadeIn 0.2s ease forwards;
}

@keyframes tooltipFadeIn {
  to {
    opacity: 1;
  }
}

/* Step Indicators */
.step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.step-label {
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 720px) {
  .breadcrumbs {
    padding: 12px 16px 0;
    font-size: 12px;
  }
  
  .step-indicator {
    font-size: 13px;
  }
  
  .step-number {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  transition: background-color 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

header.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(11, 16, 33, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] header.topbar {
  background: rgba(248, 250, 252, 0.85);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text);
  animation: logoSlideIn 0.6s ease-out forwards;
  opacity: 0;
}

@keyframes logoSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo a {
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: opacity 0.2s ease;
}

.logo a:hover {
  opacity: 0.8;
}

.logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.2s ease;
  animation: logoImagePop 0.8s ease-out 0.2s forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes logoImagePop {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
  }
  60% {
    transform: scale(1.1) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.logo a:hover .logo-image {
  transform: scale(1.05);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: var(--text);
  animation: logoTextFade 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes logoTextFade {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.6);
  display: none; /* Hide old dot, keeping for backward compatibility */
}

nav {
  display: flex;
  gap: 14px;
}

nav a {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

nav a,
.theme-toggle {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

nav a:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 12px 12px;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: var(--text) !important;
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
}

.nav-dropdown-toggle span {
  font-size: 10px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-dropdown.active .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  padding: 8px;
  z-index: 1000 !important;
  animation: fadeInUp 0.2s ease;
}

.nav-dropdown-menu.show {
  display: flex;
}

.nav-dropdown-menu .dropdown-item {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dropdown-menu .dropdown-item:hover {
  background: rgba(124, 58, 237, 0.12);
  color: var(--text);
}

/* Nested Dropdown (Subcategories) */
.dropdown-category {
  position: relative;
}

.dropdown-category-item {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.dropdown-category-item:hover {
  background: rgba(124, 58, 237, 0.12);
  color: var(--text);
}

.dropdown-category-item .arrow {
  font-size: 10px;
  transition: transform 0.2s ease;
  margin-left: 8px;
  color: var(--muted);
}

.dropdown-category.active .dropdown-category-item .arrow {
  transform: rotate(90deg);
}

.dropdown-submenu {
  display: none;
  flex-direction: column;
  padding-left: 12px;
  margin-top: 4px;
  border-left: 2px solid var(--border);
  margin-left: 8px;
}

.dropdown-category.active .dropdown-submenu {
  display: flex;
}

.dropdown-submenu .dropdown-item {
  padding: 8px 12px;
  font-size: 13px;
  color: var(--muted);
  padding-left: 20px;
}

.dropdown-submenu .dropdown-item:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--text);
}

.dropdown-submenu .dropdown-item .arrow {
  display: none;
}

.dropdown-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
  vertical-align: middle;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
  position: relative;
}

/* Pulsing beacon effect for PDF Merger badge */
.pdf-merger-beacon {
  animation: beaconPulse 2s ease-in-out infinite;
}

@keyframes beaconPulse {
  0%, 100% {
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3), 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  50% {
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3), 0 0 0 4px rgba(239, 68, 68, 0);
  }
}

.theme-toggle {
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.12);
}

[data-theme="light"] .theme-toggle {
  font-size: 20px;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 20px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 42px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.3);
  background: linear-gradient(135deg, #8b5cf6, #14b8a6);
}

.button:active {
  transform: translateY(0);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.button.btn-loading,
.button.btn-loading:hover {
  position: relative;
  color: transparent;
  pointer-events: none;
  box-shadow: none;
}

.button.btn-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(226, 232, 240, 0.6);
  border-top-color: var(--accent-2);
  animation: spin 0.8s linear infinite;
}

.button.btn-loading.ghost::after {
  border-color: rgba(226, 232, 240, 0.4);
  border-top-color: var(--accent);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 18px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  width: 100%;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.65s ease forwards;
  opacity: 0;
}

.card-header h1,
.card-header h2 {
  margin: 0;
}

.card-header p {
  margin: 4px 0 12px;
  color: var(--muted);
}

.form-grid,
.convert-grid,
.password-grid,
.speed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  align-items: end;
}

label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-weight: 600;
}

input,
button {
  font-family: inherit;
}

input[type="text"],
input[type="number"],
input[type="url"],
input[type="file"],
input[type="range"],
input[type="color"],
input[type="checkbox"] {
  width: 100%;
}

input[type="text"],
input[type="number"],
input[type="url"] {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

input[type="file"] {
  color: var(--muted);
}



.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 160px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  padding: 6px;
  z-index: 20;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.dropdown-menu.show {
  display: flex;
}

.dropdown-item {
  background: transparent;
  border: none;
  color: var(--text);
  text-align: left;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.dropdown-item:hover {
  background: rgba(124, 58, 237, 0.12);
}



.hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  min-height: 22px;
  color: var(--muted);
  background: var(--input-bg);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.status .loader {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-right: 8px;
}

.loader.hidden {
  display: none;
}

.loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  animation: pulse 0.9s infinite ease-in-out;
}

.loader span:nth-child(2) {
  animation-delay: 0.15s;
}
.loader span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes pulse {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
  40% { transform: scale(1.2); opacity: 1; }
}


.ad-section {
  display: none;
  justify-content: center;
  margin: 8px 0;
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.ad-slot {
  width: min(100%, 970px);
  min-height: 120px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: var(--secondary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

[data-theme="light"] .ad-slot {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
}

.seo-blurb {
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--secondary-bg);
  box-shadow: var(--shadow);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.seo-blurb h2 {
  margin: 0 0 6px;
}

.seo-blurb p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .ad-slot {
    min-height: 100px;
  }
}

.form-grid .button {
  width: 100%;
}

@media (min-width: 720px) {
  .form-grid .button {
    width: auto;
    justify-self: end;
    min-width: 160px;
  }
}

.button.sm {
  padding: 8px 12px;
  font-size: 14px;
}

.footer {
  color: var(--muted);
  padding: 40px 20px 32px;
  border-top: 1px solid var(--border);
  margin-top: 60px;
  background: var(--secondary-bg);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text);
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
}

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-section p {
  margin: 0;
  line-height: 1.6;
  font-size: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 14px;
}

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

/* Footer Nested Categories */
.footer-category {
  margin-bottom: 20px;
  list-style: none;
}

.footer-category-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent !important;
  border: none;
  color: var(--text) !important;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  padding: 8px 0;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border) !important;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.footer-category-title:hover {
  color: var(--accent);
}

.footer-category-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: var(--muted);
}

.footer-category[data-collapsed="true"] .footer-category-icon {
  transform: rotate(-90deg);
}

.footer-category[data-collapsed="true"] .footer-sublinks {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.footer-sublinks {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 12px;
  max-height: 500px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-bottom 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.footer-sublinks li {
  margin-bottom: 6px;
}

.footer-sublinks a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 13px;
  display: block;
}

.footer-sublinks a:hover {
  color: var(--text);
  padding-left: 4px;
  transition: padding-left 0.2s ease, color 0.2s ease;
}

@media (max-width: 768px) {
  .footer-category {
    margin-bottom: 16px;
  }
  
  /* Start collapsed on mobile */
  .footer-category {
    --start-collapsed: true;
  }
  
  .footer-category-title {
    font-size: 14px;
    margin-bottom: 8px;
    padding: 10px 0;
  }
  
  .footer-sublinks {
    padding-left: 8px;
  }
  
  .footer-sublinks a {
    font-size: 12px;
  }
}

.footer-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-features li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer .footer-seo {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-copyright {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer {
    padding: 32px 16px 24px;
  }
}


@media (max-width: 900px) {
  .logo-image {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  nav {
    position: absolute;
    top: 60px;
    right: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    background: rgba(11, 16, 33, 0.95);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, border-color 0.3s ease;
    width: calc(100vw - 32px);
    max-width: 300px;
  }

  [data-theme="light"] nav {
    background: rgba(248, 250, 252, 0.95);
  }
  nav.open {
    display: flex;
  }
  
  .nav-dropdown {
    width: 100%;
  }
  
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  
  .nav-dropdown-menu {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
    border: 1px solid var(--border);
    background: var(--card);
  }
  
  .dropdown-category {
    width: 100%;
  }
  
  .dropdown-category-item {
    width: 100%;
  }
  
  .dropdown-submenu {
    position: static;
    margin-top: 4px;
    margin-left: 0;
    padding-left: 16px;
    border-left: 2px solid var(--border);
  }
  
  .dropdown-submenu .dropdown-item {
    padding-left: 24px;
  }
}


/* Trust Signals Section */
section.trust-signals-section,
.trust-signals-section {
  margin-top: 48px;
  padding: 40px 0;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.trust-signals-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.trust-signals-section h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 28px;
  color: var(--text);
  font-weight: 600;
}

.trust-signals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.trust-signal-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-signal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.trust-signal-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.trust-signal-content {
  flex: 1;
}

.trust-signal-content h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: var(--text);
  font-weight: 600;
}

.trust-signal-content p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .logo-image {
    width: 28px;
    height: 28px;
  }
  
  .logo-text {
    font-size: 14px;
  }
  
  section.trust-signals-section,
  .trust-signals-section {
    margin-top: 32px;
    padding: 32px 0;
  }

  .trust-signals-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .trust-signals-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .trust-signal-item {
    padding: 20px;
  }

  .trust-signal-icon {
    font-size: 28px;
  }

  .trust-signal-content h3 {
    font-size: 16px;
  }

  .trust-signal-content p {
    font-size: 14px;
  }
}

.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.social-link[href*="facebook"]:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.social-link[href*="instagram"]:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.social-link[href*="mailto"]:hover,
.social-link[href*="gmail"]:hover {
  background: #ea4335;
  border-color: #ea4335;
  box-shadow: 0 4px 12px rgba(234, 67, 53, 0.3);
}

.footer-social {
  margin-top: 20px;
}

.footer-social h4 {
  margin-bottom: 12px;
}

.contact-social {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}




