@charset "UTF-8";

:root {
    /* Color Palette */
    --primary: #4F46E5;
    --primary-dark: #4338ca;
    --accent: #00E388;
    --accent-glow: rgba(0, 227, 136, 0.4);
    --text-main: #111827;
    --text-sub: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;

    /* Gradients */
    --brand-gradient: linear-gradient(180deg, #03A0E3 0%, #0065C9 100%);
    --surface-gradient: linear-gradient(180deg, #F3F4F6 0%, #FFFFFF 100%);

    /* Shadows - The key to "Professional" looks */
    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Spacing */
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Makes text look sharper */
}

/* --- Header (Glassmorphism Effect) --- */
header {
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    /* Semi-transparent */
    backdrop-filter: blur(10px);
    /* Blur effect */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0 40px;
    display: flex;
    align-items: center;
    position: sticky;
    /* Sticks to top */
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex: 0 0 auto;
    width: auto;
    height: 70px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    border-radius: 0;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.nav-pills {
    display: flex;
    gap: 20px;
}

.nav-pill {
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-sub);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-pill:hover {
    color: var(--primary);
    background: #EEF2FF;
}

/* Hero Section */
.hero {
    width: 100%;
    max-width: 1200px;
    height: 640px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content img {
    width: 100%;
    height: auto;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.trial-button {
    position: absolute;
    width: 332px;
    height: 70px;
    left: 120px;
    bottom: 60px;
    background: #00E388;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
}

.trial-button:hover {
    transform: translateY(-2px);
}

/* Company Logos */
.company-logos {
    width: 100%;
    max-width: 1200px;
    height: 101px;
    background: #FFFFFF;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 75px;
    padding: 0 20px;
}

.company-logo {
    width: 176px;
    height: 40px;
    background: #ffffff;
    border-radius: 4px;
}

.company-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* Common Section Styles */
section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 25px 20px;
}

.section-title {
    position: relative;
    font-weight: 600;
    font-size: 36px;
    text-align: center;
    color: #1E1E1E;
    z-index: 2;
}

.title-highlight {
    position: absolute;
    height: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 187, 0, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Reasons Section */
.reasons-section {
    background: linear-gradient(180deg, #EAF9FF 80%, #F2FBFE 100%);
}

.reason-cards {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.reason-card {
    width: 300px;
    height: 280px;
    background: #FFFFFF;
    box-shadow: 0px 10px 20px rgba(6, 85, 255, 0.15);
    border-radius: 25px;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-icon {
    width: 60px;
    height: 60px;
    margin-bottom: auto;
}

.reason-percentage {
    font-weight: 700;
    font-size: 56px;
    line-height: 1;
    background: linear-gradient(180deg, #0B6DFF 0%, #74D5FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.reason-percentage.medium {
    font-size: 42px;
}

.reason-text {
    font-weight: 700;
    font-size: 20px;
    color: #0B6DFF;
}

.reason-description {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #757575;
    max-width: 800px;
}

/* Feature Diagram */
.feature-diagram {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
}

.feature-diagram img {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: auto;
}

/* Comparison Table */
.comparison-section {
    background: var(--bg-light);
}

.comparison-table-wrapper {
    margin: 40px auto;
    width: 100%;
    max-width: 1100px;
    overflow-x: auto;
    font-weight: 700;
}


.table th,
.table td {
    padding: 20px;
    border-bottom: 1px solid #E5E5E5;
    font-size: 18px;
}

.table th {
    background: #F9F9F9;
    font-weight: 600;
    color: #555;
}

.table th:nth-child(2) {
    background: linear-gradient(180deg, #03A0E3 0%, #0065C9 100%);
    color: #FFFFFF;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
}

.table td:nth-child(2) {
    background: #F2FBFE;
    color: #000000;
    font-weight: 700;
    border-left: 2px solid #EAF9FF;
    border-right: 2px solid #EAF9FF;
}

.table tr:last-child td:nth-child(2) {
    border-bottom: 4px solid #0B6DFF;
    border-radius: 0 0 8px 8px;
}

.check-mark {
    color: #00E388;
    font-weight: bold;
    font-size: 24px;
}

.cross-mark {
    color: #FF6B6B;
    font-size: 20px;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, #EAF9FF 80%, #F2FBFE 100%);
}

.review-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1060px;
    margin: 0 auto;
}

.review-card {
    background: #FFFFFF;
    border: 1px solid #D9D9D9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-icon {
    width: 60px;
    height: 60px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.review-stars {
    color: #FFBB00;
    font-size: 24px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #565656;
    text-align: justify;
    margin-bottom: auto;
}

.review-divider {
    height: 1px;
    background: #EEE;
    margin: 20px 0;
    width: 100%;
}

.review-author {
    font-weight: 700;
    font-size: 16px;
    color: #0B6DFF;
    text-align: right;
}

.cta-button-center {
    width: 332px;
    height: 70px;
    background: #00E388;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    font-weight: 600;
    font-size: 24px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 60px auto 0;
    text-decoration: none;
    transition: transform 0.2s;
}

.cta-button-center:hover {
    transform: translateY(-2px);
}

/* ID Cards Section */
.id-cards-section {
    background: var(--bg-light);
}

.id-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.id-card {
    height: 100px;
    background: linear-gradient(180deg, #03A0E3 0%, #0065C9 100%);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
}

/* BPO Section */
.bpo-section {
    background: linear-gradient(180deg, #EAF9FF 80%, #F2FBFE 100%);
}

.bpo-diagram {
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bpo-label {
    width: 200px;
    background: #666;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    padding: 20px;
}

.bpo-label.buster {
    background: #0B6DFF;
}

/* Implementation Section */
.implementation-section {
    background: var(--bg-light);
    padding-bottom: 120px;
}

.implementation-badge {
    position: relative;
    left: 20px;
    top: 40px;
    display: flex;
    align-items: center;
}

.implementation-badge-text {
    font-weight: 700;
    font-size: 20px;
    color: #DF5656;
}

.implementation-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.implementation-card {
    width: 320px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 80px;
}

.implementation-card.blue {
    background: #EBF5FF;
}

.implementation-card.yellow {
    background: #FFF6E2;
}

.card-header {
    padding: 15px;
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    color: #FFFFFF;
}

.card-header.blue {
    background: linear-gradient(180deg, #B8CFEE 0%, #0B6DFF 100%);
}

.card-header.yellow {
    background: linear-gradient(180deg, #EEDDB8 0%, #BA8901 100%);
}

.card-subtitle {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #1E1E1E;
    padding: 20px 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-area img {
    width: 100%;
    height: auto;
}

.card-description {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #565656;
}

.card-description li {
    list-style: none;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.card-description li::before {
    content: "・";
    position: absolute;
    left: 0;
}

.card-footer {
    width: 90%;
    height: 60px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    text-align: center;
    color: #FFFFFF;
    padding: 0 10px;
}

.card-footer.blue {
    background: #045CFF;
}

.card-footer.yellow {
    background: #BA8901;
}

/* Footer */
footer {
    width: 100%;
    border-top: 1px solid #D9D9D9;
    padding: 60px 20px;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 32px;
    height: 32px;
    text-align: center;
}

.footer-title {
    font-weight: 700;
    font-size: 16px;
    color: #1E1E1E;
    margin-bottom: 20px;
}

.footer-link {
    font-size: 14px;
    color: #555;
    transition: color 0.2s;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
}

.footer-link:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {

    .review-cards,
    .id-cards-grid,
    .implementation-cards {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: center;
    }

    .reason-cards {
        flex-direction: column;
        align-items: center;
    }

    .bpo-flow {
        flex-direction: column;
        gap: 20px;
    }

    .bpo-arrow {
        transform: rotate(90deg);
    }

    .comparison-table-wrapper {
        overflow-x: scroll;
    }

    .feature-diagram {
        flex-direction: column;
        gap: 30px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: var(--brand-gradient);
    padding: 80px 20px 60px;
    text-align: center;
}

.contact-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
}

.contact-section {
    padding: 60px 20px 80px;
    background: var(--bg-light);
}

.form-section {
    background: #fff;
    padding-bottom: 80px;
}

.form-container {
    max-width: 800px;
    margin: -60px auto 0;
    /* Overlap the hero slightly */
    background: #FFFFFF;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 60px;
    position: relative;
    z-index: 10;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #1E1E1E;
}

.form-label span.required {
    color: #DF5656;
    font-size: 12px;
    margin-left: 5px;
    background: #FFE5E5;
    padding: 2px 6px;
    border-radius: 4px;
}

.form-label span.optional {
    color: #757575;
    font-size: 12px;
    margin-left: 5px;
    background: #F5F5F5;
    padding: 2px 6px;
    border-radius: 4px;
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #0B6DFF;
    box-shadow: 0 0 0 3px rgba(11, 109, 255, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-block;
    width: 300px;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
    font-size: 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(102, 126, 234, 0.4);
    transition: transform 0.2s, opacity 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Success/Error Messages */
.message-box {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.message-success {
    background: #E7F9F0;
    color: #00A656;
    border: 1px solid #00A656;
}

.message-error {
    background: #FFE5E5;
    color: #DF5656;
    border: 1px solid #DF5656;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
        margin-top: -30px;
        width: 90%;
    }

    .btn-submit {
        width: 100%;
    }
}

/* Company Page Styles */
.company-hero {
    background: var(--brand-gradient);
    padding: 80px 20px 60px;
    text-align: center;
}

.company-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
}

.company-section {
    padding: 60px 20px 80px;
    background: var(--bg-light);
}

/* 沿革タイムラインのスタイル */
.history-timeline {
    position: relative;
    padding: 20px 0;
}

.history-item {
    display: flex;
    margin-bottom: 30px;
    border-left: 2px solid var(--primary);
    padding-left: 30px;
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
}

.history-year {
    flex: 0 0 150px;
    font-weight: 700;
    color: var(--primary);
}

.history-desc {
    flex: 1;
    color: var(--text-main);
}

.company-history-section {
    padding: 60px 20px 80px;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .history-item {
        flex-direction: column;
    }

    .history-year {
        margin-bottom: 5px;
    }
}

/* --- Terms of Service Page --- */
.terms-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.terms-intro {
    border-bottom: 2px solid var(--primary);
    padding-bottom: 30px;
}

.terms-intro .lead {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Sidebar Navigation */
.terms-nav {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    border-left: 4px solid var(--primary);
    position: sticky;
    top: 100px;
    /* Header height (80px) + spacing (20px) */
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.terms-nav h5 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.terms-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.terms-nav-item {
    padding: 10px 12px;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.terms-nav-item:hover {
    background: rgba(79, 70, 229, 0.08);
    border-left-color: var(--primary);
    color: var(--primary);
    font-weight: 500;
}

/* Accordion Styling */
.terms-accordion {
    border-radius: var(--radius-md);
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: none;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-button {
    background: var(--white);
    color: var(--text-main);
    font-weight: 600;
    font-size: 1rem;
    padding: 20px;
    box-shadow: none !important;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: rgba(79, 70, 229, 0.05);
    color: var(--primary);
    box-shadow: none !important;
}

.accordion-button:hover {
    background: rgba(79, 70, 229, 0.08);
}

.accordion-body {
    padding: 20px;
    color: var(--text-main);
    background: var(--white);
    line-height: 1.8;
}

.accordion-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.accordion-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-body li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Support Info Styling */
.support-info {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 15px;
}

.support-item {
    margin-bottom: 20px;
}

.support-item:last-child {
    margin-bottom: 0;
}

.support-item strong {
    color: var(--primary);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.support-item p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-main);
}

.support-item ul {
    margin: 10px 0 0 20px;
    padding: 0;
}

.support-item li {
    margin-bottom: 6px;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .terms-nav {
        display: none;
    }

    .accordion-button {
        font-size: 0.95rem;
        padding: 15px;
    }

    .accordion-body {
        padding: 15px;
    }
}

/* Print Styles */
@media print {
    .terms-nav {
        display: none;
    }

    .accordion-button::after {
        display: none;
    }

    .accordion-button {
        color: var(--text-main);
        background: white;
    }

    .accordion-item:not(:first-child) .accordion-button {
        font-weight: 700;
        page-break-before: always;
    }
}

/* ====================================
   BLOG SECTION STYLES
   ==================================== */

/* Blog Hero Section */
.blog-hero {
    background: var(--brand-gradient);
    padding: 80px 20px 60px;
    text-align: center;
}

.blog-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
}

/* Blog List Section */
.blog-list-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

/* Blog Card */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-sub);
    font-size: 0.9rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

/* ====================================
   BLOG DETAIL PAGE STYLES
   ==================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    background: var(--brand-gradient);
    padding: 80px 20px 60px;
    text-align: center;
}

.blog-detail-container {
    max-width: 100%;
    margin: 0 auto;
}

.blog-detail-category {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: var(--white);
    font-size: 1rem;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Blog Content Section */
.blog-detail-content-section {
    padding: 60px 20px 80px;
    background: var(--bg-light);
}

.blog-content-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 60px;
}

.blog-featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    min-height: 260px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-featured-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

.blog-content {
    padding: 40px;
    color: var(--text-main);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-content h3 {
    color: var(--text-main);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-content ul li {
    margin-bottom: 10px;
    color: var(--text-sub);
}

/* Blog Actions */
.blog-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-top: 2px solid var(--bg-light);
}

.btn-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back-to-blog:hover {
    background: var(--primary-dark);
    transform: translateX(-5px);
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.blog-share span {
    color: var(--text-sub);
    font-weight: 600;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    color: var(--text-main);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Related Blogs Section */
.related-blogs {
    margin-top: 60px;
}

.related-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 30px;
    text-align: center;
}

.related-blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.related-blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.related-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-blog-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-blog-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.related-blog-card:hover .related-blog-image img {
    transform: scale(1.05);
}

.related-blog-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.related-blog-content {
    padding: 20px;
}

.related-blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.related-blog-title a {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-blog-title a:hover {
    color: var(--primary);
}

.related-blog-date {
    color: var(--text-sub);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-hero-content p {
        font-size: 1rem;
    }

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

    .blog-detail-title {
        font-size: 1.8rem;
    }

    .blog-detail-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-featured-image {
        height: 250px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-actions {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .related-blogs-grid {
        grid-template-columns: 1fr;
    }
}