/* ==========================================================================
   Creative Clarity - Symfony Staging Site
   Matching the WordPress/Elementor design
   ========================================================================== */

/* ---------- Self-hosted Fonts ---------- */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/roboto-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/roboto-slab-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Roboto Slab';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/roboto-slab-latin.woff2') format('woff2');
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --color-primary: #6EC1E4;
    --color-secondary: #54595F;
    --color-text: #7A7A7A;
    --color-accent: #61CE70;
    --color-red: #C1272D;
    --color-dark: #1a1a1a;
    --color-white: #ffffff;
    --color-light-bg: #f9f9f9;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Roboto Slab', serif;
    --font-display: 'Roboto Slab', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    color: var(--color-secondary);
    line-height: 1.6;
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-red); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--color-dark); }
strong { font-weight: 600; }
em { font-style: italic; }

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-secondary);
    text-decoration: none;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-red);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-red);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 74px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 40px 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ---------- Intro Section ---------- */
.intro-section {
    padding: 80px 0;
    text-align: center;
    background: var(--color-white);
}

.intro-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-secondary);
}

/* ---------- Counter Section (Wave Brush) ---------- */
.counter-section {
    position: relative;
    background: var(--color-red);
    padding: 80px 0;
    overflow: hidden;
}

.shape-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider-top {
    top: -1px;
}

.shape-divider-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.shape-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 28px;
}

.shape-fill {
    fill: var(--color-white);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.counter-item.animated {
    opacity: 1;
    transform: translateX(0);
}

.counter-item:nth-child(2) { transition-delay: 0.15s; }
.counter-item:nth-child(3) { transition-delay: 0.3s; }
.counter-item:nth-child(4) { transition-delay: 0.45s; }

.counter-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    margin-bottom: 10px;
}

.counter-title {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- About Section ---------- */
.about-section {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 80px 40px;
    color: var(--color-white);
}

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
    opacity: 0.95;
}

/* ---------- Testimonial Carousel ---------- */
.testimonial-section {
    padding: 80px 0;
    background: var(--color-light-bg);
}

.carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.carousel-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    text-align: left;
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-red);
}

.testimonial-initial {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--color-red);
    background: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-initial::after {
    content: attr(data-initial);
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
}

.testimonial blockquote {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-secondary);
    border: none;
    margin: 0;
    padding: 0;
}

.testimonial cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-red);
}

/* Carousel controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: none;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--color-secondary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    border-color: var(--color-red);
    color: var(--color-red);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ccc;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--color-red);
}

@media (max-width: 768px) {
    .testimonial {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ---------- Cards Section ---------- */
.cards-section {
    padding: 80px 0;
    background: var(--color-white);
}

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

.card {
    display: block;
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--color-secondary);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    color: var(--color-secondary);
}

.card-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

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

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    padding: 20px;
    text-align: center;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 74px;
}

.page-hero-short {
    min-height: 55vh;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-white);
    padding: 60px 20px 40px;
    max-width: 800px;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 8px;
}

.page-hero-small {
    font-size: 0.95rem !important;
    opacity: 0.75 !important;
}

.post-date-hero {
    color: rgba(255,255,255,0.7) !important;
    font-size: 0.95rem;
}

/* ---------- Page Header (fallback) ---------- */
.page-header {
    padding: 120px 0 40px;
    background: var(--color-light-bg);
    margin-top: 74px;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-dark);
}

.page-intro {
    max-width: 700px;
    margin-top: 16px;
}

.page-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}

.separator {
    border: none;
    border-top: 2px solid var(--color-red);
    width: 60px;
    margin: 20px 0;
}

/* ---------- Services Page ---------- */
.service-icons-section {
    padding: 60px 0 40px;
}

.service-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.service-icon-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
    padding: 12px;
}

.service-icon-link:hover {
    transform: translateY(-4px);
    color: var(--color-red);
}

.service-icon-link img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.service-icon-link:hover img {
    border-color: var(--color-red);
}

.service-icon-link span {
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.service-detail {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-odd {
    background: var(--color-white);
}

.service-even {
    background: var(--color-light-bg);
}

.service-detail-inner {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.service-detail-icon {
    flex-shrink: 0;
}

.service-detail-icon img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.service-detail-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-dark);
}

.service-detail-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* ---------- Blog Posts ---------- */
.posts-section {
    padding: 60px 0;
}

.post-card {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #eee;
}

.post-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.post-card-image {
    flex-shrink: 0;
    width: 300px;
}

.post-card-image img {
    border-radius: 6px;
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.post-card-content h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.post-card-content h2 a {
    color: var(--color-dark);
}

.post-card-content h2 a:hover {
    color: var(--color-red);
}

.post-date {
    font-size: 0.85rem;
    color: var(--color-text);
    display: block;
    margin-bottom: 12px;
}

.post-card-content p {
    line-height: 1.8;
    margin-bottom: 12px;
}

.read-more {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-red);
}

.read-more:hover {
    color: var(--color-dark);
}

.post-card-full {
    flex-direction: column;
}

/* ---------- Single Post ---------- */
.post-content-section {
    padding: 60px 0;
}

.post-content-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.post-content-section figure.post-image {
    margin: 30px 0;
}

.post-content-section figure.post-image img {
    border-radius: 6px;
    width: 100%;
}

.post-content-section figcaption {
    font-size: 0.85rem;
    color: var(--color-text);
    text-align: center;
    margin-top: 8px;
    font-style: italic;
}

.post-nav {
    padding: 30px 0 60px;
}

.back-link {
    font-weight: 500;
    color: var(--color-red);
}

/* ---------- Contact Form ---------- */
.contact-section {
    padding: 60px 0 80px;
}

.contact-form {
    max-width: 600px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-secondary);
    transition: border-color 0.3s ease;
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-red);
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-red);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #a01f24;
}

.form-success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.form-error {
    background: #fbe9e7;
    color: #c62828;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.site-footer {
    color: rgba(255,255,255,0.85);
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    background: var(--color-dark);
    padding: 60px 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-evenly;
    gap: 40px;
    text-align: center;
}

.footer-col {
    flex: 1;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--color-white);
}

.footer-address {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-top: 16px;
}

/* Partners */
.footer-partners {
    margin-top: 50px;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-partners p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
}

.footer-partners strong {
    color: rgba(255,255,255,0.5);
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 30px;
    width: auto;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.partner-logos img:hover {
    opacity: 0.7;
}

/* Copyright */
.footer-copyright {
    background: #111;
    padding: 16px 0;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .service-icons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        background-attachment: scroll;
        min-height: 65vh;
    }

    .page-hero {
        background-attachment: scroll;
        min-height: 50vh;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .about-section {
        background-attachment: scroll;
    }

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

    .counter-number {
        font-size: 2.2rem;
    }

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

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

    .service-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .service-detail-inner {
        flex-direction: column;
    }

    .post-card {
        flex-direction: column;
    }

    .post-card-image {
        width: 100%;
    }

    .about-content {
        padding: 60px 20px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

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

    .footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }

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

    .partner-logos img {
        height: 22px;
    }
}

/* ---------- Legal Pages ---------- */
.legal-content {
    padding: 60px 0 80px;
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 36px;
    margin-bottom: 14px;
}

.legal-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 24px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.legal-content ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 14px 0;
    padding: 16px 20px;
    background: var(--color-light-bg);
    border-left: 3px solid var(--color-red);
    border-radius: 0 4px 4px 0;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
    text-align: left;
    padding: 12px 16px;
    border: 1px solid #ddd;
}

.legal-table th {
    background: var(--color-light-bg);
    font-weight: 600;
    color: var(--color-dark);
}

/* ---------- Section general ---------- */
.section {
    padding: 60px 0;
}

/* ---------- Homepage specifics to avoid margin-top on non-home pages ---------- */
.page-home main {
    margin-top: 0;
}

body:not(.page-home) main {
    margin-top: 0;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    background: var(--color-light-bg);
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1140px;
    font-size: 0.85rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--color-text);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-item a {
    color: var(--color-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-dark);
}

/* ---------- Post CTA ---------- */
.post-cta {
    background: var(--color-light-bg);
    padding: 20px 24px;
    border-left: 4px solid var(--color-red);
    border-radius: 0 4px 4px 0;
    margin-top: 30px;
    font-size: 1rem;
    line-height: 1.8;
}

.post-cta a {
    font-weight: 500;
}

/* ---------- Services CTA ---------- */
.services-cta {
    background: var(--color-light-bg);
}

.services-cta h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 1.1rem;
    color: var(--color-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}
