/* Source: includes/status-banner.php */
/* Floating Status Banner */
.status-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0078ff 0%, #00c6ff 100%);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 120, 255, 0.3);
    z-index: 999;
    animation: slideInUp 0.5s ease-out;
    max-width: 320px;
    display: none; /* Hidden by default, shown by JS */
}

.status-banner.show {
    display: block;
}

.status-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-icon {
    font-size: 1.5rem;
}

.status-text {
    flex: 1;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.3;
}

.close-banner {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.close-banner:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

.status-banner.hiding {
    animation: slideOutDown 0.3s ease-out forwards;
}

/* Responsive */
@media (max-width: 768px) {
    .status-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 12px 15px;
    }

    .status-text {
        font-size: 0.85rem;
    }

    .status-icon {
        font-size: 1.2rem;
    }
}


/* Source: includes/social-share.php */
/* Social Share Container */
.social-share-container {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Share Toggle Button */
.social-share-toggle {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 120, 255, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
}

.social-share-toggle:hover {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    box-shadow: 0 6px 20px rgba(0, 120, 255, 0.4);
    transform: translateX(-3px);
}

.social-share-toggle svg {
    transition: transform 0.3s ease;
}

.social-share-toggle.active svg {
    transform: rotate(180deg);
}

.share-text {
    font-family: inherit;
}

/* Share Buttons Container */
.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-share-buttons.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: all;
}

/* Individual Share Buttons */
.share-btn {
    background: #fff;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
    animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.share-btn:nth-child(1) { animation-delay: 0.05s; }
.share-btn:nth-child(2) { animation-delay: 0.1s; }
.share-btn:nth-child(3) { animation-delay: 0.15s; }
.share-btn:nth-child(4) { animation-delay: 0.2s; }
.share-btn:nth-child(5) { animation-delay: 0.25s; }

.share-btn:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Platform-specific colors */
.whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.facebook-btn:hover {
    background: #1877F2;
    color: #fff;
    border-color: #1877F2;
}

.twitter-btn:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.linkedin-btn:hover {
    background: #0A66C2;
    color: #fff;
    border-color: #0A66C2;
}

.copy-btn {
    background: #fff;
    position: relative;
}

.copy-btn:hover {
    background: #6c757d;
    color: #fff;
    border-color: #6c757d;
}

/* Copy Success Message */
.copy-success {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: #28a745;
    color: #fff;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.copy-success.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.copy-success::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-share-container {
        right: 15px;
        bottom: 20px;
        top: auto;
        transform: none;
    }

    .social-share-toggle {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .share-text {
        display: none;
    }

    .social-share-toggle {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .social-share-buttons {
        bottom: 60px;
        right: 0;
        position: absolute;
    }

    .share-btn span {
        display: none;
    }

    .share-btn {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }
}

/* Print - hide share buttons */
@media print {
    .social-share-container {
        display: none;
    }
}


/* Source: faq/includes/faq-header.php */
:root {
        --bg-page: #0F1419;
        --bg-section: #111827;
        --bg-card: #161B22;
        --bg-elevated: #1F2937;
        --border: #2A2F36;
        --text-primary: #E6EDF3;
        --text-muted: #9AA4AE;
        --heading: #F8FAFC;
        --accent: #D32F2F;
        --accent-hover: #B71C1C;
    }

    /* FAQ Specific Styles */
    body {
        background:
          radial-gradient(circle at 20% 20%, rgba(211, 47, 47, 0.12), transparent 38%),
          linear-gradient(135deg, #111827 0%, #0F1419 55%, #0F1419 100%);
        color: var(--text-primary);
    }

    .faq-container {
        max-width: 960px;
        margin: 40px auto;
        padding: 24px;
    }

    .faq-header {
        text-align: center;
        margin-bottom: 28px;
        background:
          radial-gradient(circle at 18% 20%, rgba(211, 47, 47, 0.12), transparent 42%),
          linear-gradient(135deg, #161B22 0%, #111827 100%);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 28px 24px;
        box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    }

    .faq-header h1 {
        font-size: 2.3rem;
        color: var(--heading);
        margin-bottom: 12px;
    }

    .faq-header p {
        font-size: 1.05rem;
        color: var(--text-muted);
        max-width: 720px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .back-to-tool {
        display: inline-block;
        background: var(--accent);
        color: #fff;
        padding: 12px 24px;
        border-radius: 10px;
        text-decoration: none;
        margin: 20px 0;
        font-weight: 700;
        transition: all 0.2s;
        box-shadow: 0 12px 26px rgba(211,47,47,0.35);
    }

    .back-to-tool:hover {
        background: var(--accent-hover);
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(211,47,47,0.4);
    }

    .faq-item {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        margin-bottom: 15px;
        overflow: hidden;
        transition: all 0.3s;
        box-shadow: 0 14px 34px rgba(0,0,0,0.45);
    }

    .faq-item:hover {
        box-shadow: 0 16px 38px rgba(211,47,47,0.16);
        border-color: rgba(211,47,47,0.4);
    }

    .faq-question {
        width: 100%;
        text-align: left;
        padding: 18px 22px;
        background: var(--bg-elevated);
        border: none;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--heading);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s;
      }

    .faq-question:hover {
        background: rgba(211,47,47,0.08);
        color: var(--heading);
    }

    .faq-question::after {
        content: '+';
        font-size: 1.4rem;
        font-weight: bold;
        color: var(--accent);
        transition: transform 0.3s, color 0.3s;
    }

    .faq-item.active .faq-question::after {
        content: '–';
        transform: rotate(180deg);
        color: var(--accent-hover);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.4s ease-out;
        padding: 0 22px;
        background: var(--bg-card);
    }

    .faq-item.active .faq-answer {
        max-height: 1200px;
        padding: 0 22px 18px 22px;
    }

    .faq-answer p {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .faq-answer ul, .faq-answer ol {
        margin-left: 20px;
        margin-bottom: 15px;
    }

    .faq-answer li {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .faq-answer strong {
        color: var(--heading);
    }

    .faq-answer code {
        background: rgba(255,255,255,0.04);
        padding: 2px 6px;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.9em;
        color: var(--heading);
        border: 1px solid var(--border);
    }

    .related-links {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 22px;
        margin-top: 34px;
        box-shadow: 0 14px 32px rgba(0,0,0,0.45);
    }

    .related-links h3 {
        margin-top: 0;
        color: var(--heading);
        font-size: 1.25rem;
    }

    .related-links ul {
        list-style: none;
        padding: 0;
    }

    .related-links li {
        margin-bottom: 10px;
    }

    .related-links a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

    .related-links a:hover {
        color: var(--accent-hover);
        text-decoration: underline;
    }

    .blog-placeholder {
        background: rgba(255, 243, 205, 0.08);
        border: 1px dashed rgba(249, 168, 37, 0.5);
        border-radius: 8px;
        padding: 15px;
        margin-top: 15px;
        color: #F9A825;
    }

    .blog-placeholder h4 {
        margin-top: 0;
        font-size: 1.05rem;
    }

    @media (max-width: 768px) {
        .faq-container {
            padding: 16px;
        }

        .faq-header h1 {
            font-size: 1.9rem;
        }

        .faq-question {
            padding: 16px 16px;
        }
    }


/* Source: includes/footer.php */
.site-footer {
      background: linear-gradient(180deg, #0f1419 0%, #0b0f14 100%);
      color: #e5e7eb;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      padding: 28px 0 18px;
      border-top: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 -12px 28px rgba(0,0,0,0.35);
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: minmax(260px, 340px) 1fr;
      gap: 28px;
      align-items: flex-start;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-logo-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo {
      width: 36px;
      height: 36px;
      object-fit: contain;
      border-radius: 10px;
      background: #161B22;
      padding: 5px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.16);
    }

    .footer-logo-fallback {
      display: none;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      background: #1d4ed8;
      color: #fff;
      font-weight: 700;
      border-radius: 10px;
    }

    .footer-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #f8fafc;
      letter-spacing: -0.2px;
    }

    .footer-subtitle {
      font-size: 0.9rem;
      color: #cbd5e1;
    }

    .footer-tagline {
      margin: 0;
      font-size: 0.92rem;
      color: #e6edf3;
      line-height: 1.5;
      max-width: 520px;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 18px 24px;
      width: 100%;
    }

    .footer-col {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .footer-col-title {
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
      font-size: 0.93rem;
      letter-spacing: 0.15px;
    }

    .footer-col a {
      color: #e6edf3;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease, transform 0.1s ease;
    }

    .footer-col a:hover {
      color: #d32f2f;
      transform: translateX(1px);
    }

    .footer-bottom {
      max-width: 1180px;
      margin: 16px auto 0;
      padding: 12px 20px 0;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      color: #cbd5e1;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .footer-bottom-left {
      display: flex;
      justify-content: flex-start;
      align-items: center;
    }

    .footer-bottom-center {
      text-align: center;
    }

    .footer-bottom-right {
      display: flex;
      justify-content: flex-end;
    }

    .footer-meta {
      color: #93c5fd;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    @media (max-width: 768px) {
      .site-footer {
        padding: 32px 0 20px;
      }
      .footer-inner {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }
