/* Page Detail */

.content-article {
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid #bebebe;
}

.page-title {
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
}

.content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: #2c3e50;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-body p {
    margin-bottom: 1.5rem;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 6px 0;
}

.content-body blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    background-color: #fff;
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 0 8px 8px 0;
}

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

.content-body li {
    margin-bottom: 0.5rem;
}

.content-body a {
    color: #007bff;
    text-decoration: none;
}

.content-body a:hover {
    text-decoration: underline;
}

.content-body table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.content-body table th,
.content-body table td {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    text-align: left;
}

.content-body table th {
    background-color: #fff;
    font-weight: 600;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #ffa21a;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
    color: #e8941a;
}

/* Side bar */

.sidebar .list-group-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(104, 104, 104, 0.1);
    transition: all 0.3s ease;
}

.sidebar .list-group-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sidebar .list-group-item h6 {
    line-height: 1.3;
    font-weight: 600;
    color: #2c3e50;
}

.sidebar .list-group-item .badge {
    font-size: 0.7rem;
}

.sidebar .list-group-item .badge.bg-info {
    background-color: #ffa21a !important;
    border-color: #ffa21a !important;
}

.tag-cloud .badge {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    background-color: #fff;
    color: #ffa21a;
    font-weight: 500;
}

.tag-cloud .badge:hover {
    background-color: #ffa21a !important;
    color: white !important;
    transform: scale(1.05);
    border-color: #ffa21a;
    box-shadow: 0 2px 8px rgba(255, 162, 26, 0.3);
}

.sidebar .card-footer {
    background-color: transparent;
    border-top: 1px solid #e9ecef;
    padding: 1rem;
    text-align: center;
}

.btn-outline-primary {
    border-color: #ffa21a;
    color: #ffa21a;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #ffa21a;
    border-color: #ffa21a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 162, 26, 0.3);
}

/* Sidebar Headers and Links */
.sidebar span.text-uppercase {
    font-size: 1rem;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.sidebar span.text-uppercase i {
    color: #ffa21a;
}

.sidebar hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffa21a, transparent);
    margin: 2rem 0;
    opacity: 0.5;
}

/* Breadcrumb Active Item */
.breadcrumb-item.active {
    color: #ffa21a;
}

.card-title a {
    color: #e28904 !important;
}

.post-images {
    margin-top: 1rem;
    padding: 1rem 0;
}

.post-images img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.post-images img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.post-images .row {
    margin: 0;
}

.post-images .col-md-6,
.post-images .col-lg-4 {
    padding: 0.5rem;
}

.post-images .col-md-6 img,
.post-images .col-lg-4 img {
    margin-bottom: 0;
    height: 250px;
    object-fit: cover;
}

/* Single image styling */
.post-images:has(img:only-child) img {
    max-width: 600px;
    margin: 0 auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .post-images {
        margin: 1rem 0;
        padding: 0.5rem 0;
    }

    .post-images img {
        max-height: 300px;
        margin-bottom: 0.5rem;
    }

    .post-images .col-md-6 img,
    .post-images .col-lg-4 img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .post-images .col-md-6 img,
    .post-images .col-lg-4 img {
        height: 180px;
    }
}

/* Section */

.hero-section {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 6rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    letter-spacing: -3px;
    margin-top: 9.8rem;
    width: 100%;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0px;
}

.stat-content {
    z-index: 2;
    width: 1080px;
    position: absolute;
    bottom: -16px;
}
/* Statistics Cards */
.stat-card {
    width: 100%;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
    text-align: center;
    min-height: 280px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 600;
    color: #ffa21a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #777;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.3;
}

.stat-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Services Section */
.services-section {
    background-color: #fff;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffa21a;
    margin: 10px 0;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin: 0 auto;
}

.service-item {
    height: 100%;
    margin-top: 20px;
}

.service-icon .service-image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 16px;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #2d5a3d;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.content-prefix {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffa21a;
    letter-spacing: -1px;
}

.content-suffix {
    font-size: 0.95rem;
    color: #777;
}

.feature-grid {
    column-count: 2;
    column-gap: 30px;
}

.feature-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 16px;
}

.why-use-section {
    background-color: rgb(243, 243, 243);
}

.section-title-2 {
    font-size: 2.2rem;
    font-weight: 500;
    color: rgb(108, 104, 104);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

.feature-item.with-image {
    padding: 20px 12px;
    height: fit-content;
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ffa21a;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -1px;
}

.feature-desc p,
.criteria-item,
.verification-item {
    color: #777;
    text-align: left;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.feature-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature-item strong {
    color: #777;
}

.step-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-item h5 {
    color: #2d5a3d;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Guarantee Section */
.guarantee-section {
    background-color: white;
    padding: 80px 0;
}

.section-desc {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 24px;
}

.guarantee-badge {
    margin: 40px 0;
}

.badge-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2d5a3d, #1e3f2a);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-circle::before {
    content: '';
    position: absolute;
    width: 170px;
    height: 170px;
    border: 3px solid #2d5a3d;
    border-radius: 50%;
    border-style: dashed;
}

.badge-text {
    text-align: center;
    color: white;
}

.badge-percent {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.badge-sub {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-title {
    font-size: 2rem;
    font-weight: 500;
    color: #ffa21a;
}

.media-logos {
    padding: 24px 0;
}

.media-logo {
    background: white;
    padding: 10px;
    border-radius: 1px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.media-logo img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background: #f3f3f3;
    padding: 80px 0;
}

.contact-label {
    font-size: 1.5rem;
    color: #777;
    margin-bottom: 10px;
}

.contact-phone {
    font-size: 3rem;
    color: #ffa21a;
    margin-bottom: 10px;
}

.contact-sub {
    font-size: 1rem;
    color: #777;
}

.contact-form {
    border-radius: 15px;
}

.contact-form .form-control {
    padding: 8px 18px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #ffa21a;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.btn-contact {
    background: linear-gradient(135deg, #ffa21a, #ff8c42);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #e55a2b, #e67a32);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
}

.btn-onup {
    background-color: #ff8c42;
    color: #fff;
}

.btn-onup:hover {
    background-color: #e06c24;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-section {
        height: auto;
        margin-bottom: 0;
    }
    .stat-content {
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.4rem;
    }

    .content-article {
        padding: 8px;
        border: none;
    }
}
