/* ========================================
   TELL PROJECTS - BLOG POST STYLESHEET v2.0
   WordPress-Style Professional Blog Design
   Clean, Modern, Mobile-First Approach
   ======================================== */

/* ===== CSS VARIABLES (Blog-Specific) ===== */
:root {
    --blog-max-width: 900px;
    --blog-content-padding: 60px;
    --blog-mobile-padding: 30px;
    --blog-reading-line-height: 1.8;
}

/* ===== BLOG PAGE HERO SECTION ===== */
.page-header.blog-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: 100px; /* Account for fixed navbar */
}

.page-header.blog-header .container {
    position: relative;
    z-index: 2;
}

.page-header.blog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.page-header.blog-header .section-badge {
    background: rgba(209, 160, 4, 0.1);
    color: var(--gold-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-header.blog-header .blog-meta {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 25px;
}

.page-header.blog-header .blog-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-header.blog-header .blog-meta i {
    color: var(--gold-primary);
}

/* Decorative background elements */
.page-header.blog-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(209, 160, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.page-header.blog-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(209, 160, 4, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
    background: var(--bg-secondary);
    padding: 15px 0;
    margin-top: 100px; /* Account for fixed navbar */
}

.breadcrumbs nav ol {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.breadcrumbs nav ol li a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs nav ol li a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* ===== MAIN BLOG CONTENT CONTAINER ===== */
.blog-content {
    padding: 80px 0;
    background: var(--bg-dark);
    min-height: calc(100vh - 600px);
}

.blog-content .container {
    max-width: var(--blog-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BLOG ARTICLE WRAPPER ===== */
.blog-article {
    background: var(--bg-dark);  /* Dark background to match site theme */
    border-radius: 20px;
    padding: var(--blog-content-padding);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(209, 160, 4, 0.2);
    margin: 0 auto;
}

/* Remove duplicate main/article wrappers that cause issues */
.blog-article > main,
.blog-article > article > main {
    all: unset;
    display: block;
}

/* ===== TYPOGRAPHY - WORDPRESS STYLE ===== */

/* Hide duplicate H1 titles inside content */
.blog-article main > h1:first-of-type,
.blog-article > h1:first-of-type {
    display: none; /* Hero already has H1 */
}

.blog-article h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-primary);  /* Light text for dark background */
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold-primary);
    line-height: 1.3;
    font-weight: 700;
}

.blog-article h2:first-child {
    margin-top: 0;
}

.blog-article h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--gold-primary);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 600;
}

.blog-article h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-primary);  /* Light text for dark background */
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.blog-article p {
    color: var(--text-secondary);  /* Light gray text for dark background */
    font-size: 1.1rem;
    line-height: var(--blog-reading-line-height);
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.blog-article p:last-child {
    margin-bottom: 0;
}

/* Strong and emphasis */
.blog-article strong,
.blog-article b {
    color: var(--gold-primary);
    font-weight: 600;
}

.blog-article em,
.blog-article i {
    font-style: italic;
    color: var(--text-secondary);  /* Light gray for dark background - CONTRAST FIX */
}

/* ===== LISTS - WORDPRESS STYLE ===== */
.blog-article ul,
.blog-article ol {
    margin: 25px 0;
    padding-left: 40px;
    color: var(--text-secondary);
}

.blog-article ul {
    list-style-type: disc;
}

.blog-article ol {
    list-style-type: decimal;
}

.blog-article li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-secondary);  /* Light gray text for dark background */
}

.blog-article li strong {
    color: var(--gold-primary);
}

.blog-article li::marker {
    color: var(--gold-primary);
    font-weight: bold;
}

/* Nested lists */
.blog-article ul ul,
.blog-article ol ol,
.blog-article ul ol,
.blog-article ol ul {
    margin: 10px 0;
}

/* ===== MAP SECTION INSIDE ARTICLE ===== */
.blog-article .blog-map-section {
    background: linear-gradient(135deg, rgba(15, 35, 64, 0.9), rgba(10, 22, 40, 0.95));
    border: 2px solid rgba(209, 160, 4, 0.3);
    border-radius: 20px;
    padding: 50px;
    margin: 60px 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.blog-article .blog-map-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    text-align: center;
    margin-top: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-article .blog-map-section > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.blog-article .blog-map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 450px;
    margin-bottom: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(209, 160, 4, 0.4);
}

.blog-article .blog-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    cursor: pointer;
}

.blog-article .blog-map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.blog-article .blog-map-info-item {
    background: rgba(209, 160, 4, 0.08);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(209, 160, 4, 0.25);
    text-align: center;
    transition: all 0.3s ease;
}

.blog-article .blog-map-info-item:hover {
    background: rgba(209, 160, 4, 0.15);
    border-color: rgba(209, 160, 4, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(209, 160, 4, 0.2);
}

.blog-article .blog-map-info-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.blog-article .blog-map-info-item h4 {
    color: var(--gold-primary);
    font-size: 1.3rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

.blog-article .blog-map-info-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.blog-article .blog-map-info-item a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-article .blog-map-info-item a:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* ===== LINKS - WORDPRESS STYLE ===== */
.blog-article a {
    color: var(--gold-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
    font-weight: 500;
}

.blog-article a:hover {
    color: #f4d03f;
    text-decoration: none;
}

.blog-article a:visited {
    color: #b8860b;
}

/* ===== IMAGES - WORDPRESS STYLE ===== */
.blog-article img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 30px 0;
    display: block;
}

.blog-article figure {
    margin: 40px 0;
}

.blog-article figcaption {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 10px;
    font-style: italic;
}

/* ===== BLOCKQUOTES - WORDPRESS STYLE ===== */
.blog-article blockquote {
    background: var(--bg-secondary);
    border-left: 4px solid var(--gold-primary);
    padding: 25px 30px;
    margin: 35px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: var(--text-primary);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.blog-article blockquote p {
    margin-bottom: 15px;
    font-size: 1.15rem;
    line-height: 1.7;
}

.blog-article blockquote p:last-child {
    margin-bottom: 0;
}

.blog-article blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--gold-primary);
    font-weight: 600;
}

/* ===== CODE BLOCKS - WORDPRESS STYLE ===== */
.blog-article code {
    background: var(--bg-secondary);
    color: var(--gold-primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
}

.blog-article pre {
    background: var(--bg-secondary);
    border: 1px solid rgba(209, 160, 4, 0.2);
    border-radius: 10px;
    padding: 25px;
    overflow-x: auto;
    margin: 30px 0;
}

.blog-article pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ===== TABLES - WORDPRESS STYLE ===== */
.blog-article table {
    width: 100%;
    margin: 35px 0;
    border-collapse: collapse;
    background: var(--bg-secondary);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.blog-article th,
.blog-article td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(209, 160, 4, 0.1);
}

.blog-article th {
    background: var(--gold-primary);
    color: var(--bg-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.blog-article td {
    color: var(--text-secondary);
    font-size: 1rem;
}

.blog-article tbody tr:hover {
    background: rgba(209, 160, 4, 0.05);
    transition: background 0.3s ease;
}

.blog-article tbody tr:last-child td {
    border-bottom: none;
}

/* ===== TABLE OF CONTENTS - WORDPRESS STYLE ===== */
.blog-article > section[aria-label="Table of contents"],
.blog-article section:has(> h2:first-child:contains("Table of Contents")) {
    background: var(--bg-secondary);
    border: 2px solid rgba(209, 160, 4, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.blog-article section[aria-label="Table of contents"] h2 {
    margin-top: 0;
    border-bottom: none;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.blog-article section[aria-label="Table of contents"] ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}

.blog-article section[aria-label="Table of contents"] li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(209, 160, 4, 0.1);
}

.blog-article section[aria-label="Table of contents"] li:last-child {
    border-bottom: none;
}

.blog-article section[aria-label="Table of contents"] a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.blog-article section[aria-label="Table of contents"] a:hover {
    color: var(--gold-primary);
    padding-left: 10px;
}

.blog-article section[aria-label="Table of contents"] a::before {
    content: '→';
    color: var(--gold-primary);
    font-weight: bold;
}

/* ===== CALL-TO-ACTION SECTION ===== */
.blog-cta {
    background: linear-gradient(135deg, var(--gold-primary), #c4940a);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 15px 40px rgba(209, 160, 4, 0.4);
}

.blog-cta h3 {
    color: var(--bg-dark) !important;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    border: none !important;
    font-family: 'Playfair Display', serif;
}

.blog-cta p {
    color: var(--bg-dark) !important;
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-cta .btn {
    background: var(--bg-dark);
    color: var(--gold-primary);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.blog-cta .btn:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* ===== FAQ SECTION - WORDPRESS STYLE ===== */
.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid rgba(209, 160, 4, 0.2);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 5px 20px rgba(209, 160, 4, 0.15);
}

.faq-question {
    background: var(--bg-secondary);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    font-size: 1.2rem;
    color: var(--text-primary);
    flex: 1;
}

.faq-question i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer.active {
    padding: 25px 30px;
    max-height: 1000px;
}

.faq-answer p {
    margin-bottom: 15px;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Tablets and smaller (< 768px) */
@media (max-width: 768px) {
    .page-header.blog-header {
        padding: 60px 0 40px;
    }

    .page-header.blog-header h1 {
        font-size: 2rem;
    }

    .page-header.blog-header .blog-meta {
        gap: 15px;
        font-size: 0.85rem;
    }

    .blog-article {
        padding: var(--blog-mobile-padding);
        border-radius: 15px;
    }

    .blog-article h2 {
        font-size: 1.6rem;
        margin-top: 35px;
    }

    .blog-article h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .blog-article p,
    .blog-article li {
        font-size: 1rem;
    }

    .blog-article ul,
    .blog-article ol {
        padding-left: 25px;
    }

    .blog-cta {
        padding: 35px 25px;
    }

    .blog-cta h3 {
        font-size: 1.5rem !important;
    }

    .blog-cta p {
        font-size: 1rem !important;
    }

    .blog-article table {
        font-size: 0.9rem;
    }

    .blog-article th,
    .blog-article td {
        padding: 12px 15px;
    }
}

/* Mobile phones (< 480px) */
@media (max-width: 480px) {
    .page-header.blog-header h1 {
        font-size: 1.6rem;
    }

    .blog-content {
        padding: 40px 0;
    }

    .blog-article {
        padding: 25px 20px;
    }

    .blog-article h2 {
        font-size: 1.4rem;
    }

    .blog-article h3 {
        font-size: 1.2rem;
    }

    .blog-cta {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-answer.active {
        padding: 20px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .blog-article {
        box-shadow: none;
        border: none;
        padding: 0;
    }

    .page-header.blog-header::before,
    .page-header.blog-header::after {
        display: none;
    }

    .blog-cta,
    .faq-section {
        display: none;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
.blog-article :focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 4px;
}

.blog-article a:focus-visible {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold-primary);
    color: var(--bg-dark);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}

/* ===== SMOOTH SCROLL BEHAVIOR ===== */
html {
    scroll-behavior: smooth;
}

/* Scroll margin for anchor links (accounts for fixed header) */
.blog-article section[id],
.blog-article h2[id],
.blog-article h3[id] {
    scroll-margin-top: 120px;
}

/* ===== BLOG HERO SECTION - CLEAN & SIMPLE ===== */
.blog-hero {
    position: relative;
    background: var(--bg-secondary);
    padding: 40px 20px;
    margin-top: 100px;
    margin-bottom: 40px;
}

/* Hide video and overlay - they cause issues */
.blog-hero .hero-video,
.blog-hero .hero-overlay {
    display: none;
}

/* Hide standalone stars and rating text */
.blog-hero > i.fas.fa-star,
.blog-hero > span.rating-text {
    display: none;
}

/* Trust badges grid */
.blog-hero .trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 30px;
}

.blog-hero .trust-badges-grid .trust-badge {
    background: rgba(209, 160, 4, 0.1);
    border: 1px solid rgba(209, 160, 4, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.blog-hero .trust-badges-grid .trust-badge i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.blog-hero .trust-badges-grid .trust-badge h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.blog-hero .trust-badges-grid .trust-badge p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Map section */
.blog-hero .blog-map-section {
    background: rgba(15, 35, 64, 0.8);
    border-radius: 15px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-hero .blog-map-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    text-align: center;
}

.blog-hero .blog-map-section > p {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.blog-hero .blog-map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    margin-bottom: 25px;
}

.blog-hero .blog-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-hero .blog-map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.blog-hero .blog-map-info-item {
    background: rgba(209, 160, 4, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(209, 160, 4, 0.2);
}

.blog-hero .blog-map-info-item i {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
    display: block;
}

.blog-hero .blog-map-info-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.blog-hero .blog-map-info-item p,
.blog-hero .blog-map-info-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    text-decoration: none;
}

.blog-hero .blog-map-info-item a:hover {
    color: var(--gold-primary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 30px 15px;
    }

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

    .blog-hero .blog-map-section {
        padding: 25px 15px;
    }

    .blog-hero .blog-map-container {
        height: 300px;
    }

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

    /* Prevent horizontal overflow on mobile */
    .blog-hero,
    .blog-hero * {
        max-width: 100%;
        overflow-x: hidden;
    }

    .blog-hero .blog-map-section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .blog-hero .blog-map-container {
        width: 100%;
        max-width: 100%;
    }

    .blog-hero .trust-badges-grid {
        width: 100%;
        max-width: 100%;
    }

    /* Customer Reviews Section - Mobile */
    .customer-reviews-section .container {
        padding: 0 15px !important;
    }

    .customer-reviews-section h2 {
        font-size: 1.8rem !important;
    }

    .customer-reviews-section p {
        font-size: 1rem !important;
    }

    /* Contractor CTA - Mobile */
    .contractor-cta-advanced {
        padding: 30px 15px !important;
        margin: 30px 0 !important;
    }

    .contractor-cta-header h2 {
        font-size: 1.6rem !important;
    }

    .contractor-cta-header .subheading {
        font-size: 1.1rem !important;
    }

    .contractor-cta-header .header-description {
        font-size: 0.95rem !important;
    }

    /* Benefits Grid - Stack on Mobile */
    .contractor-cta-benefits {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .benefit-card {
        padding: 20px !important;
    }

    .benefit-card h3 {
        font-size: 1.2rem !important;
    }

    .benefit-card p {
        font-size: 0.9rem !important;
    }

    /* Stats Grid - 2 Columns on Mobile */
    .contractor-cta-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 15px !important;
    }

    .stat-item {
        padding: 15px !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.85rem !important;
    }

    /* CTA Actions - Stack Buttons */
    .contractor-cta-actions {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .contractor-cta-actions a {
        width: 100% !important;
        justify-content: center !important;
        padding: 15px 20px !important;
        font-size: 0.95rem !important;
    }

    /* Requirements List */
    .contractor-cta-requirements {
        padding: 20px !important;
    }

    .contractor-cta-requirements h3 {
        font-size: 1.3rem !important;
    }

    .contractor-cta-requirements ul li {
        font-size: 0.9rem !important;
        padding: 8px 0 !important;
    }
}
