/*
Theme Name: Omni Tech Solutions
Author: Ahmad
Description: WordPress theme converted from the Omni static site.
Version: 1.0.0
Text Domain: omni-tech-solutions
*/

:root {
  --brand-orange: #f18222;
  --brand-dark: #1a1a1a;
  --surface: #fbf9f8;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--surface);
  color: var(--brand-dark);
  overflow-x: hidden;
}

a { color: inherit; }

.detail-content p, .detail-content li {
  font-size: 18px;
  line-height: 1.8;
  color: #1f2937;
  font-weight: 400;
}

.detail-content h2 {
  font-size: 34px;
  line-height: 1.2;
  color: #111827;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0;
}

.detail-content h3 {
  font-size: 26px;
  line-height: 1.25;
  color: #111827;
  letter-spacing: -0.01em;
  font-weight: 700;
  margin: 0;
}

.detail-content blockquote {
  margin: 0;
  padding: 12px 18px;
  border-left: 4px solid var(--brand-orange);
  background: #f8fafc;
  color: #1f2937;
  font-style: italic;
  line-height: 1.7;
}

.detail-content ul, .detail-content ol {
  margin: 0;
  padding-left: 24px;
  color: #1f2937;
  line-height: 1.8;
  font-size: 18px;
}

.detail-content img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
}

.detail-content a {
  color: var(--brand-orange);
  text-decoration: underline;
}

.detail-content > * + * {
  margin-top: 20px;
}

.footer-link:hover { color: var(--brand-orange) !important; }
.footer-social:hover { border-color: var(--brand-orange) !important; color: var(--brand-orange) !important; }

@keyframes wpBlogDetailShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.shimmer {
  background-size: 220% 100%;
  animation: wpBlogDetailShimmer 1.8s ease-in-out infinite;
}

.scroll-indicator {
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  width: 24px;
  height: 40px;
  position: relative;
}

.scroll-indicator::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scroll-dot 2s infinite;
}

@keyframes scroll-dot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
  100% { opacity: 0; transform: translate(-50%, 20px); }
}

@media (max-width: 979px) {
  .detail-meta-row { justify-content: flex-start !important; align-items: flex-start !important; }
  .detail-meta-wrap { justify-content: flex-start !important; }
}

@media (min-width: 900px) {
  .footer-top-grid { flex-direction: row !important; justify-content: space-between !important; align-items: flex-start !important; }
}

.answers-block {
  padding: 96px 24px;
}

@media (min-width: 768px) {
  .answers-block {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (min-width: 1024px) {
  .answers-block {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.answers-kicker {
  font-size: 36px;
}

@media (min-width: 768px) {
  .answers-kicker {
    font-size: 48px;
  }
}

.answers-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .answers-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(560px, 1.1fr);
    gap: 96px;
  }
}

.answers-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ececec;
  padding: 10px;
  border-radius: 18px;
  width: 100%;
}

.answers-card {
  background: #ffffff;
  border: 1px solid rgba(203, 197, 196, 0.34);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.answers-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.answers-trigger:focus {
  outline: 2px solid #f18222;
  outline-offset: -2px;
}

.answers-question {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
  color: #111111;
  padding-right: 16px;
}

.answers-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c1b1b;
  color: #ffffff;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.answers-trigger[aria-expanded="true"] .answers-toggle {
  background-color: #f18222;
}

.answers-toggle-icon {
  transition: transform 0.2s ease;
}

.answers-trigger[aria-expanded="true"] .answers-toggle-icon {
  transform: rotate(180deg);
}

.answers-panel-body {
  display: none;
  padding: 0 24px 24px 24px;
  color: #494646;
  line-height: 1.625;
  font-size: 16px;
}

.answers-panel-body p {
  margin: 0;
}
