/* ================================================================
   AB Performance - Homepage Consolidated CSS (ab-home.css)
   Merged from: home-text-links, home-hero, home-intro, home-about,
                home-story, home-blog
   Order preserved from original index.php link tags to maintain cascade.
   Brand Colours: Red #e1303a, Black #1a1a1a, Gold #E9A329
   ================================================================ */


/* ================================================================
   SECTION: home-text-links
   ================================================================ */


/* Internal text links within paragraph content */
.ab-performance-text-link {
    color: #e1303a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-performance-text-link:hover {
    color: #c72730;
}

/* Light text variant for dark background sections */
.ab-performance-story-section .ab-performance-text-link {
    color: #ffffff;
}

.ab-performance-story-section .ab-performance-text-link:hover {
    color: #e1303a;
}
/* ================================================================
   SECTION: home-hero
   ================================================================ */


/* --------------------------------
   Hero Section Container
   -------------------------------- */
.ab-performance-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background-image: url('../images/home-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dark overlay */
.ab-performance-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(26, 26, 26, 0.75) 50%,
        rgba(26, 26, 26, 0.5) 100%
    );
    z-index: 1;
}

/* --------------------------------
   Hero Container
   -------------------------------- */
.ab-performance-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* --------------------------------
   Hero Content
   -------------------------------- */
.ab-performance-hero-content {
    display: flex;
    align-items: stretch;
    gap: 30px;
    max-width: 700px;
}

/* --------------------------------
   Vertical Accent Bar
   -------------------------------- */
.ab-performance-hero-accent {
    width: 4px;
    background: linear-gradient(180deg, #e1303a 0%, #E9A329 100%);
    border-radius: 2px;
    flex-shrink: 0;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    animation: abAccentGrow 0.6s ease-out 0.1s forwards;
}

/* --------------------------------
   Text Block
   -------------------------------- */
.ab-performance-hero-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --------------------------------
   Main Headline
   -------------------------------- */
.ab-performance-hero-headline {
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateX(-20px);
    animation: abHeroSlideIn 0.6s ease-out 0.2s forwards;
}

.ab-performance-hero-headline span {
    color: #E9A329;
}

/* --------------------------------
   Supporting Text
   -------------------------------- */
.ab-performance-hero-text {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-20px);
    animation: abHeroSlideIn 0.6s ease-out 0.35s forwards;
}

/* --------------------------------
   CTA Button Group
   -------------------------------- */
.ab-performance-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    opacity: 0;
    transform: translateX(-20px);
    animation: abHeroSlideIn 0.6s ease-out 0.5s forwards;
}

/* Primary CTA */
.ab-performance-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #e1303a;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 48, 58, 0.35);
}

.ab-performance-hero-btn-primary:hover {
    background-color: #c72730;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 58, 0.45);
}

.ab-performance-hero-btn-primary i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ab-performance-hero-btn-primary:hover i {
    transform: translateX(3px);
}

/* Secondary CTA */
.ab-performance-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.ab-performance-hero-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* ================================
   Keyframe Animations
   ================================ */
@keyframes abAccentGrow {
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes abHeroSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   Responsive Design
   ================================ */

/* Tablet */
@media (max-width: 968px) {
    .ab-performance-hero {
        min-height: 520px;
    }
    
    .ab-performance-hero-container {
        padding: 70px 30px;
    }
    
    .ab-performance-hero-content {
        gap: 24px;
    }
    
    .ab-performance-hero-headline {
        font-size: 38px;
        margin-bottom: 18px;
    }
    
    .ab-performance-hero-text {
        font-size: 17px;
        margin-bottom: 26px;
    }
    
    .ab-performance-hero-btn-primary,
    .ab-performance-hero-btn-secondary {
        padding: 14px 26px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ab-performance-hero {
        min-height: 480px;
    }
    
    .ab-performance-hero::before {
        background: linear-gradient(
            180deg,
            rgba(26, 26, 26, 0.85) 0%,
            rgba(26, 26, 26, 0.7) 100%
        );
    }
    
    .ab-performance-hero-container {
        padding: 60px 24px;
    }
    
    .ab-performance-hero-content {
        gap: 20px;
    }
    
    .ab-performance-hero-accent {
        width: 3px;
    }
    
    .ab-performance-hero-headline {
        font-size: 30px;
        margin-bottom: 16px;
    }
    
    .ab-performance-hero-text {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .ab-performance-hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .ab-performance-hero-btn-primary,
    .ab-performance-hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ab-performance-hero {
        min-height: 450px;
    }
    
    .ab-performance-hero-container {
        padding: 50px 20px;
    }
    
    .ab-performance-hero-content {
        gap: 16px;
    }
    
    .ab-performance-hero-headline {
        font-size: 26px;
    }
    
    .ab-performance-hero-text {
        font-size: 15px;
    }
    
    .ab-performance-hero-btn-primary,
    .ab-performance-hero-btn-secondary {
        padding: 13px 20px;
        font-size: 14px;
    }
}
/* ================================================================
   SECTION: home-intro
   ================================================================ */


.ab-performance-intro {
    padding: 100px 20px;
    background-color: #ffffff;
}

.ab-performance-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --------------------------------
   Left: Image
   -------------------------------- */
.ab-performance-intro-image {
    position: relative;
}

.ab-performance-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Decorative accent behind image */
.ab-performance-intro-image-accent {
    position: absolute;
    top: 20px;
    left: -20px;
    right: 20px;
    bottom: -20px;
    background: linear-gradient(135deg, #e1303a 0%, #E9A329 100%);
    border-radius: 10px;
    z-index: 1;
}

/* --------------------------------
   Right: Content
   -------------------------------- */
.ab-performance-intro-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 12px;
    padding-bottom: 18px;
    position: relative;
}

/* H2 Underline */
.ab-performance-intro-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

.ab-performance-intro-content h2 span {
    color: #e1303a;
}

.ab-performance-intro-content > p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.ab-performance-intro-content > p:last-of-type {
    margin-bottom: 30px;
}

/* --------------------------------
   Outcomes Grid
   -------------------------------- */
.ab-performance-intro-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 35px;
}

.ab-performance-intro-outcome {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ab-performance-intro-outcome:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
}

/* Icon */
.ab-performance-intro-outcome-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ab-performance-intro-outcome-icon i {
    font-size: 17px;
    color: #e1303a;
    transition: all 0.3s ease;
}

.ab-performance-intro-outcome:hover .ab-performance-intro-outcome-icon {
    background-color: #e1303a;
}

.ab-performance-intro-outcome:hover .ab-performance-intro-outcome-icon i {
    color: #ffffff;
}

/* Text */
.ab-performance-intro-outcome-text h3 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 3px;
    padding-bottom: 0;
    position: relative;
}

.ab-performance-intro-outcome-text p {
    font-size: 13px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------
   CTA Button
   -------------------------------- */
.ab-performance-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ab-performance-intro-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.ab-performance-intro-btn:hover {
    background-color: #e1303a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 58, 0.3);
}

.ab-performance-intro-btn:hover i {
    transform: translateX(3px);
}

/* ================================
   Global H2/H3 Underline Styles
   (Can be used across sections)
   ================================ */
.ab-performance-h2-underline {
    position: relative;
    padding-bottom: 18px;
    margin-bottom: 12px;
}

.ab-performance-h2-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

.ab-performance-h2-underline.ab-performance-h2-underline-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.ab-performance-h3-underline {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 10px;
}

.ab-performance-h3-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

/* ================================
   Responsive Design
   ================================ */

/* Tablet */
@media (max-width: 968px) {
    .ab-performance-intro {
        padding: 80px 20px;
    }
    
    .ab-performance-intro-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ab-performance-intro-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ab-performance-intro-image-accent {
        top: 15px;
        left: -15px;
        right: 15px;
        bottom: -15px;
    }
    
    .ab-performance-intro-content {
        text-align: center;
    }
    
    .ab-performance-intro-content h2 {
        font-size: 34px;
    }
    
    .ab-performance-intro-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ab-performance-intro-content > p {
        font-size: 16px;
        max-width: 550px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .ab-performance-intro-outcomes {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
    }
    
    .ab-performance-intro-outcome {
        text-align: left;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ab-performance-intro {
        padding: 70px 20px;
    }
    
    .ab-performance-intro-container {
        gap: 40px;
    }
    
    .ab-performance-intro-image-accent {
        top: 12px;
        left: -12px;
        right: 12px;
        bottom: -12px;
    }
    
    .ab-performance-intro-content h2 {
        font-size: 30px;
        padding-bottom: 16px;
        margin-bottom: 10px;
    }
    
    .ab-performance-intro-content h2::after {
        width: 60px;
    }
    
    .ab-performance-intro-content > p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
    }
    
    .ab-performance-intro-content > p:last-of-type {
        margin-bottom: 25px;
    }
    
    .ab-performance-intro-outcomes {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .ab-performance-intro-outcome {
        padding: 16px;
        gap: 12px;
    }
    
    .ab-performance-intro-outcome-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 8px;
    }
    
    .ab-performance-intro-outcome-icon i {
        font-size: 16px;
    }
    
    .ab-performance-intro-outcome-text h3 {
        font-size: 15px;
    }
    
    .ab-performance-intro-outcome-text p {
        font-size: 13px;
    }
    
    .ab-performance-intro-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ab-performance-intro {
        padding: 60px 15px;
    }
    
    .ab-performance-intro-image-accent {
        top: 10px;
        left: -10px;
        right: 10px;
        bottom: -10px;
    }
    
    .ab-performance-intro-content h2 {
        font-size: 26px;
    }
    
    .ab-performance-intro-content > p {
        font-size: 15px;
    }
    
    .ab-performance-intro-outcome {
        padding: 14px;
    }
}
/* ================================================================
   SECTION: home-about
   ================================================================ */


.ab-performance-about-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #eaeaea 100%);
    padding: 80px 20px;
}

.ab-performance-about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* --------------------------------
   Left: Image
   -------------------------------- */
.ab-performance-about-image {
    position: relative;
}

.ab-performance-about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* --------------------------------
   Right: Content
   -------------------------------- */
.ab-performance-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* About Label */
.ab-performance-about-label {
    margin-bottom: 18px;
}

.ab-performance-about-label span {
    display: inline-block;
    background-color: #e1303a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 3px;
}

/* H2 - Name */
.ab-performance-about-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* H3 - Title with underline */
.ab-performance-about-content h3 {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 10px;
    padding-bottom: 16px;
    position: relative;
}

.ab-performance-about-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

/* Main Text */
.ab-performance-about-text {
    margin-bottom: 20px;
}

.ab-performance-about-text p {
    font-size: 15px;
    color: #555555;
    line-height: 1.8;
    margin-bottom: 14px;
}

.ab-performance-about-text p:last-child {
    margin-bottom: 0;
}

/* Highlight Block */
.ab-performance-about-highlight {
    background-color: #ffffff;
    border-left: 3px solid #e1303a;
    padding: 18px 22px;
    margin-bottom: 28px;
    border-radius: 0 6px 6px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.ab-performance-about-highlight p {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.7;
    margin: 0;
}

/* CTA Button */
.ab-performance-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ab-performance-about-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.ab-performance-about-btn:hover {
    background-color: #e1303a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 58, 0.3);
}

.ab-performance-about-btn:hover i {
    transform: translateX(3px);
}

/* ================================
   Responsive Design
   ================================ */

/* Tablet */
@media (max-width: 968px) {
    .ab-performance-about-section {
        padding: 70px 20px;
    }
    
    .ab-performance-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ab-performance-about-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .ab-performance-about-content {
        text-align: center;
    }
    
    .ab-performance-about-content h2 {
        font-size: 34px;
    }
    
    .ab-performance-about-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ab-performance-about-highlight {
        text-align: left;
    }
    
    .ab-performance-about-btn {
        align-self: center;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ab-performance-about-section {
        padding: 60px 20px;
    }
    
    .ab-performance-about-container {
        gap: 35px;
    }
    
    .ab-performance-about-label span {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .ab-performance-about-content h2 {
        font-size: 28px;
    }
    
    .ab-performance-about-content h3 {
        font-size: 15px;
        padding-bottom: 14px;
    }
    
    .ab-performance-about-content h3::after {
        width: 40px;
    }
    
    .ab-performance-about-text p {
        font-size: 14px;
    }
    
    .ab-performance-about-highlight {
        padding: 16px 18px;
    }
    
    .ab-performance-about-highlight p {
        font-size: 14px;
    }
    
    .ab-performance-about-btn {
        padding: 13px 24px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ab-performance-about-section {
        padding: 50px 15px;
    }
    
    .ab-performance-about-content h2 {
        font-size: 26px;
    }
    
    .ab-performance-about-text p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .ab-performance-about-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ================================================================
   SECTION: home-story
   ================================================================ */


.ab-performance-story-section {
    background-color: #1a1a1a;
    padding: 100px 20px;
}

.ab-performance-story-container {
    max-width: 1280px;
    margin: 0 auto;
}

.ab-performance-story-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* --------------------------------
   Image
   -------------------------------- */
.ab-performance-story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* --------------------------------
   Text
   -------------------------------- */
.ab-performance-story-text {
    color: #ffffff;
}

.ab-performance-story-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #E9A329;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

/* Heading */
.ab-performance-story-text h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 24px;
    padding-bottom: 18px;
    position: relative;
}

.ab-performance-story-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

/* Body Paragraphs */
.ab-performance-story-text > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Quote */
.ab-performance-story-quote {
    font-size: 16px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 28px 0;
    padding: 20px 24px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-left: 3px solid #e1303a;
}

.ab-performance-story-quote cite {
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: #E9A329;
    margin-top: 10px;
}

/* Clients line */
.ab-performance-story-clients {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin: 0;
}

.ab-performance-story-clients strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .ab-performance-story-section {
        padding: 80px 20px;
    }
    
    .ab-performance-story-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .ab-performance-story-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .ab-performance-story-text {
        text-align: center;
    }
    
    .ab-performance-story-text h2 {
        font-size: 30px;
    }
    
    .ab-performance-story-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ab-performance-story-quote {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ab-performance-story-section {
        padding: 70px 20px;
    }
    
    .ab-performance-story-content {
        gap: 40px;
    }
    
    .ab-performance-story-text h2 {
        font-size: 26px;
        padding-bottom: 14px;
        margin-bottom: 20px;
    }
    
    .ab-performance-story-text h2::after {
        width: 40px;
    }
    
    .ab-performance-story-text > p {
        font-size: 15px;
    }
    
    .ab-performance-story-quote {
        font-size: 15px;
        padding: 18px 20px;
        margin: 24px 0;
    }
    
    .ab-performance-story-clients {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ab-performance-story-section {
        padding: 60px 15px;
    }
    
    .ab-performance-story-image {
        max-width: 100%;
    }
    
    .ab-performance-story-text h2 {
        font-size: 24px;
    }
    
    .ab-performance-story-text > p {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .ab-performance-story-quote {
        font-size: 14px;
        padding: 16px 18px;
    }
    
    .ab-performance-story-quote cite {
        font-size: 12px;
    }
    
    .ab-performance-story-clients {
        font-size: 12px;
        line-height: 2;
    }
}
/* ================================================================
   SECTION: home-blog
   ================================================================ */


.ab-performance-blog-section {
    background-color: #ffffff;
    padding: 90px 20px;
}

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

/* --------------------------------
   Header
   -------------------------------- */
.ab-performance-blog-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
    flex-wrap: wrap;
    gap: 20px;
}

.ab-performance-blog-header-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ab-performance-blog-label {
    font-size: 11px;
    font-weight: 600;
    color: #e1303a;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ab-performance-blog-header h2 {
    font-size: 34px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    padding-bottom: 14px;
    position: relative;
}

.ab-performance-blog-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #e1303a, #E9A329);
    border-radius: 2px;
}

.ab-performance-blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #1a1a1a;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.ab-performance-blog-view-all i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.ab-performance-blog-view-all:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.ab-performance-blog-view-all:hover i {
    transform: translateX(4px);
}

/* --------------------------------
   Grid
   -------------------------------- */
.ab-performance-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* --------------------------------
   Card
   -------------------------------- */
.ab-performance-blog-card {
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ab-performance-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Card Image */
.ab-performance-blog-card-image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.ab-performance-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ab-performance-blog-card:hover .ab-performance-blog-card-image img {
    transform: scale(1.08);
}

/* Card Content */
.ab-performance-blog-card-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ab-performance-blog-card-content h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
}

.ab-performance-blog-card-content h3 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-performance-blog-card:hover .ab-performance-blog-card-content h3 a {
    color: #e1303a;
}

.ab-performance-blog-card-content p {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

/* Button */
.ab-performance-blog-card-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.ab-performance-blog-card-btn:hover {
    background-color: #e1303a;
    transform: translateY(-2px);
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 968px) {
    .ab-performance-blog-section {
        padding: 70px 20px;
    }
    
    .ab-performance-blog-header {
        margin-bottom: 35px;
    }
    
    .ab-performance-blog-header h2 {
        font-size: 30px;
    }
    
    .ab-performance-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .ab-performance-blog-section {
        padding: 60px 20px;
    }
    
    .ab-performance-blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .ab-performance-blog-header h2 {
        font-size: 26px;
    }
    
    .ab-performance-blog-view-all {
        width: 100%;
        justify-content: center;
    }
    
    .ab-performance-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ab-performance-blog-card-image {
        height: 180px;
    }
    
    .ab-performance-blog-card-content {
        padding: 24px;
    }
    
    .ab-performance-blog-card-content h3 {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .ab-performance-blog-section {
        padding: 50px 15px;
    }
    
    .ab-performance-blog-header h2 {
        font-size: 24px;
    }
    
    .ab-performance-blog-card-content {
        padding: 20px;
    }
    
    .ab-performance-blog-card-content p {
        font-size: 13px;
    }
    
    .ab-performance-blog-card-btn {
        width: 100%;
        text-align: center;
    }
}