/* ============================================
   BRANDIFY MASTER STYLESHEET
   ============================================ */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: #f7f7fa;
    color: #1a1a2e;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   HEADER (Global)
   ============================================ */
header {
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo .icon {
    font-size: 28px;
    font-weight: 800;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    padding: 4px 12px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
}

.logo .name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.logo .name span {
    color: #dc3545;
}

.logo small {
    display: block;
    font-size: 10px;
    font-weight: 400;
    color: #999;
    margin-top: -2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover,
.nav a.active {
    color: #dc3545;
}

.nav .btn-cta {
    background: #dc3545;
    color: #fff !important;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.nav .btn-cta:hover {
    background: #c82333;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

/* ============================================
   BUTTONS (Global)
   ============================================ */
.btn-primary {
    background: #dc3545;
    color: #fff;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-primary:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(220, 53, 69, 0.4);
}

.btn-primary i {
    margin-left: 8px;
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #dc3545;
    color: #dc3545;
    transform: translateY(-2px);
}

.btn-secondary i {
    margin-right: 8px;
}

.btn-cta-big {
    background: #dc3545;
    color: #fff;
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-cta-big i {
    margin-left: 8px;
}

.btn-cta-big:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

/* ============================================
   BADGE (Global)
   ============================================ */
.badge {
    display: inline-block;
    background: rgba(220, 53, 69, 0.12);
    color: #dc3545;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 18px;
}

.badge i {
    margin-right: 6px;
}

/* ============================================
   SECTION TITLES (Global)
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 34px;
    font-weight: 700;
}

.section-title h2 span {
    color: #dc3545;
}

.section-subtitle {
    text-align: center;
    color: #777;
    font-size: 17px;
    margin-bottom: 40px;
}

/* ============================================
   HERO (Homepage)
   ============================================ */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f7f7fa 0%, #eef0f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.hero-left h1 .highlight {
    color: #dc3545;
    position: relative;
}

.hero-left h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(220, 53, 69, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #eee;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat .number {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
}

.hero-stats .stat .number span {
    color: #dc3545;
}

.hero-stats .stat .label {
    font-size: 13px;
    color: #999;
    margin-top: 2px;
}

/* Hero Right - Card */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    max-width: 420px;
    width: 100%;
    position: relative;
}

.hero-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #dc3545;
    margin-bottom: 14px;
}

.hero-card h3 {
    font-size: 19px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.hero-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 14px;
}

.hero-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-card .tags span {
    background: #f5f5fa;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
}

.hero-card .tags span.active {
    background: #dc3545;
    color: #fff;
}

/* ============================================
   PAGE HEADER (Services, dll)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 60px 0 50px;
    color: #fff;
    text-align: center;
    border-bottom: 4px solid #dc3545;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header h1 span {
    color: #dc3545;
}

.page-header p {
    font-size: 18px;
    color: #b0b0c8;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .breadcrumb {
    margin-top: 16px;
    font-size: 14px;
    color: #8888aa;
}

.page-header .breadcrumb a {
    color: #dc3545;
}

.page-header .breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   TRUST BAR / CLIENTS
   ============================================ */
.trust-section {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-section .label {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-section .brands {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-section .brands .brand-item {
    font-size: 18px;
    font-weight: 700;
    color: #ccc;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.trust-section .brands .brand-item:hover {
    color: #1a1a2e;
}

.trust-section .brands .brand-item i {
    margin-right: 8px;
    color: #dc3545;
    font-size: 14px;
}

/* ============================================
   ABOUT / WHY US
   ============================================ */
.about-section {
    padding: 60px 0 70px;
    background: #f7f7fa;
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-left h2 span {
    color: #dc3545;
}

.about-left p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-left .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    margin-top: 16px;
}

.about-left .features-list .item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #444;
}

.about-left .features-list .item i {
    color: #dc3545;
    font-size: 16px;
}

.about-right {
    flex: 1;
}

.about-right .image-placeholder {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-right .image-placeholder i {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.about-right .image-placeholder h3 {
    font-size: 24px;
    font-weight: 700;
}

.about-right .image-placeholder p {
    opacity: 0.8;
    max-width: 300px;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-section {
    padding: 60px 0 80px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dc3545;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #dc3545;
}

.service-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 28px;
    color: #dc3545;
    transition: all 0.3s;
}

.service-card:hover .icon-wrap {
    background: #dc3545;
    color: #fff;
    transform: scale(1.05);
}

.service-card .badge-service {
    display: inline-block;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card .features {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.service-card .features li {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card .features li .fa-check {
    color: #dc3545;
    font-size: 12px;
    width: 16px;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.service-card .price small {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.service-card .btn-service {
    display: inline-block;
    background: #dc3545;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    margin-top: 4px;
    border: none;
    cursor: pointer;
}

.service-card .btn-service:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.service-card .btn-service-outline {
    display: inline-block;
    background: transparent;
    color: #dc3545;
    padding: 10px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid #dc3545;
    transition: all 0.3s;
    margin-top: 4px;
    cursor: pointer;
}

.service-card .btn-service-outline:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-2px);
}

/* Service Item (Homepage preview) */
.service-item {
    background: #f7f7fa;
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.service-item:hover {
    background: #fff;
    border-color: #dc3545;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-item .icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(220, 53, 69, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #dc3545;
    margin-bottom: 14px;
}

.service-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.service-item p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.service-item .link {
    display: inline-block;
    margin-top: 12px;
    color: #dc3545;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
}

.service-item .link i {
    transition: transform 0.3s;
}

.service-item .link:hover i {
    transform: translateX(4px);
}

.services-preview {
    padding: 60px 0 70px;
    background: #fff;
}

.services-preview .btn-center {
    text-align: center;
    margin-top: 36px;
}

/* ============================================
   PROCESS / HOW IT WORKS
   ============================================ */
.process-section {
    background: #fff;
    padding: 60px 0 70px;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step {
    text-align: center;
    position: relative;
}

.step .step-number {
    width: 56px;
    height: 56px;
    background: #dc3545;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 2;
}

.step .step-number i {
    font-size: 22px;
}

.step .step-line {
    position: absolute;
    top: 28px;
    left: calc(50% + 28px);
    width: calc(100% - 56px);
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step:last-child .step-line {
    display: none;
}

.step h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.step p {
    font-size: 13px;
    color: #888;
    max-width: 200px;
    margin: 0 auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 60px 0 70px;
    background: #f7f7fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #dc3545;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.testimonial-card .stars {
    color: #ffc107;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-card blockquote {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-card .client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .client .avatar {
    width: 44px;
    height: 44px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
}

.testimonial-card .client .info .name {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a2e;
}

.testimonial-card .client .info .role {
    font-size: 12px;
    color: #999;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 60px 0 70px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 12px;
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: #dc3545;
}

.faq-item .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #1a1a2e;
}

.faq-item .faq-question .arrow {
    color: #dc3545;
    font-size: 16px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 12px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    padding: 50px 0;
    text-align: center;
    color: #fff;
    border-top: 4px solid #dc3545;
    border-bottom: 4px solid #dc3545;
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-banner h2 span {
    color: #dc3545;
}

.cta-banner p {
    color: #b0b0c8;
    font-size: 17px;
    margin-bottom: 24px;
}

/* ============================================
   FOOTER (Global)
   ============================================ */
footer {
    background: #1a1a2e;
    color: #a0a0b0;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

footer a {
    color: #a0a0b0;
    transition: color 0.2s;
}

footer a:hover {
    color: #dc3545;
}

footer .links {
    display: flex;
    gap: 20px;
}

footer .links a i {
    margin-right: 4px;
}

/* ============================================
   RESPONSIVE (Global)
   ============================================ */
@media screen and (max-width: 991px) {
    .hero .container,
    .about-section .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero::before {
        display: none;
    }

    .about-left .features-list {
        grid-template-columns: 1fr;
    }

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

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .step .step-line {
        display: none !important;
    }

    .trust-section .container {
        justify-content: center;
        text-align: center;
    }

    .trust-section .brands {
        justify-content: center;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .nav a:not(.btn-cta) {
        display: none;
    }

    .hero {
        padding: 50px 0 40px;
    }

    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-stats .stat .number {
        font-size: 20px;
    }

    .logo .name {
        font-size: 17px;
    }

    .logo small {
        font-size: 9px;
    }

    .about-left h2,
    .section-title h2,
    .services-section .section-title h2,
    .process-section .section-title h2,
    .faq-section .section-title h2,
    .services-preview .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 26px;
    }

    .services-grid,
    .services-grid-home {
        grid-template-columns: 1fr;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-header p {
        font-size: 15px;
    }

    .cta-banner h2 {
        font-size: 24px;
    }

    .cta-banner .btn-cta-big {
        padding: 14px 32px;
        font-size: 16px;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .trust-section .brands {
        gap: 20px;
    }

    .trust-section .brands .brand-item {
        font-size: 15px;
    }

    .faq-item {
        padding: 16px 18px;
    }

    .faq-item .faq-question {
        font-size: 14px;
    }

    .about-right .image-placeholder {
        padding: 40px 20px;
        min-height: 200px;
    }

    .about-right .image-placeholder i {
        font-size: 40px;
    }

    .about-right .image-placeholder h3 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .hero-left h1 {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-card {
        padding: 20px;
    }

    .hero-card .tags {
        justify-content: center;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-card .price {
        font-size: 20px;
    }

    .service-card .btn-service,
    .service-card .btn-service-outline {
        width: 100%;
        text-align: center;
    }

    .btn-cta-big {
        padding: 14px 32px;
        font-size: 16px;
        width: 100%;
    }
}

/* ============================================
   NEW STYLE - BLOG LIST VIEW
   ============================================ */

.blog-section {
    padding: 40px 0 70px;
}

.blog-layout {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 2;
}

/* ============================================
   BLOG LIST ITEMS
   ============================================ */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.blog-list-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.blog-list-item:hover {
    border-color: #dc3545;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog-list-item .thumb {
    width: 200px;
    min-height: 150px;
    background: linear-gradient(135deg, #f0f0f5 0%, #e0e0e8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #ccc;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.blog-list-item .thumb .category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(220, 53, 69, 0.9);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.blog-list-item .info {
    flex: 1;
}

.blog-list-item .info .meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-list-item .info .meta i {
    color: #dc3545;
    margin-right: 4px;
}

.blog-list-item .info .meta .separator {
    color: #ddd;
}

.blog-list-item .info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-list-item .info h3 a {
    transition: color 0.3s;
}

.blog-list-item .info h3 a:hover {
    color: #dc3545;
}

.blog-list-item .info p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-item .info .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-list-item .info .bottom .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.blog-list-item .info .bottom .tags span {
    background: #f5f5fa;
    padding: 2px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #666;
}

.blog-list-item .info .bottom .read-more {
    color: #dc3545;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s;
    white-space: nowrap;
}

.blog-list-item .info .bottom .read-more i {
    transition: transform 0.3s;
}

.blog-list-item .info .bottom .read-more:hover i {
    transform: translateX(4px);
}

/* ============================================
   SIDEBAR
   ============================================ */
.blog-sidebar {
    flex: 1;
}

.blog-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.blog-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .sidebar-widget .widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-sidebar .sidebar-widget .widget-title i {
    color: #dc3545;
}

.blog-sidebar .sidebar-widget .widget-title span {
    color: #dc3545;
}

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

.blog-sidebar .sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5fa;
}

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

.blog-sidebar .sidebar-widget ul li a {
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-sidebar .sidebar-widget ul li a:hover {
    color: #dc3545;
}

.blog-sidebar .sidebar-widget ul li a i {
    color: #dc3545;
    font-size: 10px;
}

.blog-sidebar .sidebar-widget .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-sidebar .sidebar-widget .tag-cloud a {
    background: #f5f5fa;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    transition: all 0.3s;
}

.blog-sidebar .sidebar-widget .tag-cloud a:hover {
    background: #dc3545;
    color: #fff;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-form input:focus {
    outline: none;
    border-color: #dc3545;
}

.search-form button {
    padding: 10px 18px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #c82333;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.pagination a:hover {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.pagination span.current {
    background: #dc3545;
    color: #fff;
    border-color: #dc3545;
}

.pagination a.next-prev {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media screen and (max-width: 991px) {
    .blog-layout {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .blog-list-item {
        flex-direction: column;
        padding: 18px 20px;
    }

    .blog-list-item .thumb {
        width: 100%;
        min-height: 120px;
    }

    .blog-list-item .info h3 {
        font-size: 17px;
    }

    .blog-list-item .info .bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-sidebar .sidebar-widget {
        padding: 18px;
    }
}

@media screen and (max-width: 480px) {
    .blog-list-item {
        padding: 14px 16px;
    }

    .blog-list-item .thumb {
        min-height: 100px;
        font-size: 24px;
    }

    .blog-list-item .info .meta {
        font-size: 11px;
        gap: 8px;
    }

    .blog-list-item .info h3 {
        font-size: 15px;
    }

    .blog-list-item .info p {
        font-size: 13px;
    }

    .pagination a,
    .pagination span {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.single-post {
    padding: 40px 0 70px;
}

.single-post .post-layout {
    display: flex;
    gap: 40px;
}

.post-content {
    flex: 2;
}

.post-content .featured-image {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: rgba(255,255,255,0.15);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.post-content .featured-image .overlay-text {
    position: absolute;
    color: rgba(255,255,255,0.05);
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 10px;
    text-transform: uppercase;
}

.post-content .post-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #999;
    margin-bottom: 16px;
}

.post-content .post-meta i {
    color: #dc3545;
    margin-right: 6px;
    width: 16px;
}

.post-content .post-meta .separator {
    color: #ddd;
}

.post-content .post-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-content .post-title span {
    color: #dc3545;
}

.post-content .post-body {
    font-size: 16px;
    color: #444;
    line-height: 1.9;
}

.post-content .post-body p {
    margin-bottom: 18px;
}

.post-content .post-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.post-content .post-body h2 span {
    color: #dc3545;
}

.post-content .post-body h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 28px 0 10px;
}

.post-content .post-body h3 i {
    color: #dc3545;
    margin-right: 8px;
}

.post-content .post-body ul,
.post-content .post-body ol {
    margin: 12px 0 20px 24px;
}

.post-content .post-body ul li,
.post-content .post-body ol li {
    margin-bottom: 8px;
}

.post-content .post-body ul li strong,
.post-content .post-body ol li strong {
    color: #1a1a2e;
}

.post-content .post-body blockquote {
    background: #f7f7fa;
    border-left: 4px solid #dc3545;
    padding: 18px 24px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #555;
    font-size: 17px;
}

.post-content .post-body blockquote cite {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #999;
    font-style: normal;
}

.post-content .post-body .highlight-box {
    background: rgba(220, 53, 69, 0.04);
    border: 2px solid rgba(220, 53, 69, 0.12);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
}

.post-content .post-body .highlight-box h4 {
    color: #dc3545;
    margin-bottom: 6px;
    font-size: 15px;
}

.post-content .post-body .highlight-box p {
    margin-bottom: 0;
}

.post-content .post-body .example-box {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 20px 0;
}

.post-content .post-body .example-box h4 {
    color: #1a1a2e;
    font-size: 14px;
    margin-bottom: 4px;
}

.post-content .post-body .example-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Post Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.post-tags .label {
    color: #999;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-tags .label i {
    color: #dc3545;
}

.post-tags a {
    background: #f5f5fa;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    transition: all 0.3s;
}

.post-tags a:hover {
    background: #dc3545;
    color: #fff;
}

/* Author Box */
.author-box {
    background: #f7f7fa;
    border-radius: 16px;
    padding: 24px 28px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #f0f0f0;
}

.author-box .avatar {
    width: 64px;
    height: 64px;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #dc3545;
    flex-shrink: 0;
}

.author-box .info .name {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
}

.author-box .info .role {
    font-size: 13px;
    color: #dc3545;
}

.author-box .info p {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Related Posts */
.related-posts {
    margin-top: 44px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

.related-posts .related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.related-posts .related-title span {
    color: #dc3545;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-item {
    background: #fff;
    border-radius: 12px;
    padding: 18px 20px 20px;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}

.related-item:hover {
    border-color: #dc3545;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.related-item .thumb-small {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #f0f0f5 0%, #e0e0e8 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ccc;
    margin-bottom: 12px;
}

.related-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.4;
}

.related-item h4 a {
    transition: color 0.3s;
}

.related-item h4 a:hover {
    color: #dc3545;
}

.related-item .date {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.related-item .date i {
    margin-right: 4px;
    color: #dc3545;
}

/* Sidebar */
.blog-sidebar {
    flex: 1;
}

.blog-sidebar .sidebar-widget {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
}

.blog-sidebar .sidebar-widget:last-child {
    margin-bottom: 0;
}

.blog-sidebar .sidebar-widget .widget-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-sidebar .sidebar-widget .widget-title i {
    color: #dc3545;
}

.blog-sidebar .sidebar-widget .widget-title span {
    color: #dc3545;
}

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

.blog-sidebar .sidebar-widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5fa;
}

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

.blog-sidebar .sidebar-widget ul li a {
    color: #555;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-sidebar .sidebar-widget ul li a:hover {
    color: #dc3545;
}

.blog-sidebar .sidebar-widget ul li a i {
    color: #dc3545;
    font-size: 10px;
}

.blog-sidebar .sidebar-widget .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-sidebar .sidebar-widget .tag-cloud a {
    background: #f5f5fa;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: #555;
    transition: all 0.3s;
}

.blog-sidebar .sidebar-widget .tag-cloud a:hover {
    background: #dc3545;
    color: #fff;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-form input:focus {
    outline: none;
    border-color: #dc3545;
}

.search-form button {
    padding: 10px 18px;
    background: #dc3545;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: #c82333;
}

/* ============================================
   RESPONSIVE SINGLE
   ============================================ */
@media screen and (max-width: 991px) {
    .single-post .post-layout {
        flex-direction: column;
    }

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

@media screen and (max-width: 768px) {
    .post-content .featured-image {
        height: 200px;
        font-size: 36px;
    }

    .post-content .featured-image .overlay-text {
        font-size: 60px;
    }

    .post-content .post-title {
        font-size: 26px;
    }

    .post-content .post-body {
        font-size: 15px;
    }

    .post-content .post-body h2 {
        font-size: 20px;
    }

    .post-content .post-body h3 {
        font-size: 17px;
    }

    .post-content .post-body blockquote {
        font-size: 15px;
        padding: 14px 18px;
    }

    .post-content .post-meta {
        font-size: 12px;
        gap: 12px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

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

    .blog-sidebar .sidebar-widget {
        padding: 18px;
    }
}

@media screen and (max-width: 480px) {
    .post-content .featured-image {
        height: 160px;
    }

    .post-content .post-title {
        font-size: 22px;
    }

    .post-content .post-body {
        font-size: 14px;
    }

    .author-box .avatar {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}