/* Article Page Styles */
:root {
    --primary: #4461F2;
    --primary-light: #5A75F3;
    --primary-dark: #3350D9;
    --secondary: #12B76A;
    --secondary-light: #32D583;
    --text-dark: #1D2939;
    --text-medium: #475467;
    --text-light: #667085;
    --gray-light: #F2F4F7;
    --gray-medium: #E4E7EC;
    --white: #FFFFFF;
    --radius: 8px;
    --shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Ensure all content below header stays below it */
.hero,
.business-types,
.main,
.download-section,
.faq-section,
.cta,
.contact,
footer {
    position: relative;
    z-index: 1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--text-medium);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

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

.cta-buttons {
    display: flex;
    gap: 16px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--gray-medium);
}

.btn-secondary:hover {
    background-color: var(--gray-light);
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--gray-light);
    padding: 15px 0;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--primary);
    font-weight: 500;
}

/* Article Hero */
.article-hero {
    background: linear-gradient(135deg, #4461F2 0%, #3350D9 100%);
    color: white;
    padding: 60px 0 80px;
}

.article-hero__content {
    max-width: 800px;
}

.article-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.3;
}

.article-hero__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.article-hero__meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Article Layout */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding: 60px 0;
}

.article-main {
    max-width: 100%;
}

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

/* Main Content Section */
.main {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
    background: #fff;
}

.main .container {
    max-width: 900px;
}

/* Breadcrumb for blog style */
.main .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: var(--text-light);
}

/* Article Header for blog style */
.article-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.article-header * {
    position: relative;
    z-index: 1;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.article-category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.article-date,
.article-read-time {
    color: var(--text-light);
}

.article-title {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-excerpt {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Tags */
.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-medium);
}

.tag {
    background: var(--gray-light);
    color: var(--text-medium);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Article Content */
.article-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.article-content img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Feature Box */
.feature-box {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    margin: 1.5rem 0;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-box h4 i {
    color: var(--primary);
}

.feature-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 2rem 0;
}

.feature-item {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-medium);
}

.comparison-table th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: var(--gray-light);
}

.comparison-table tr:hover {
    background: #E3F2FD;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
}

.sidebar-widget li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
}

.sidebar-widget li:last-child {
    border-bottom: none;
}

.sidebar-widget a {
    color: var(--text-medium);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.sidebar-widget a:hover {
    color: var(--primary);
}

.sidebar-widget a i {
    color: var(--primary);
}

/* Download CTA Widget */
.download-cta {
    background: linear-gradient(135deg, #12B76A 0%, #0D9456 100%);
    color: white;
    text-align: center;
}

.download-cta h3 {
    color: white;
    border-bottom: none;
}

.download-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.download-cta .btn {
    background: white;
    color: #12B76A;
    width: 100%;
}

.download-cta .btn:hover {
    background: var(--gray-light);
}

/* FAQ Section */
.faq-section {
    margin-top: 2rem;
}

.faq-item {
    background: var(--gray-light);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item summary {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 20px 15px;
    margin: 0;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #4461F2 0%, #3350D9 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
}

.cta-banner h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons-group .btn {
    min-width: 200px;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-light);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--gray-medium);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: var(--gray-medium);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

/* WhatsApp Sticky */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 1.8rem;
    }

    .article-title {
        font-size: 1.6rem;
    }

    .article-content {
        padding: 25px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .cta-buttons {
        display: none;
    }

    .article-meta {
        gap: 10px;
    }
}

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

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-buttons-group .btn {
        width: 100%;
    }
}
