/* ==========================================================================
   SILO PAGES - Hub & City Styles
   Matches Oxygen Builder visual language from the HOME page.
   All styles scoped under .silo-page to avoid affecting header/footer.
   ========================================================================== */

/* ===== SECTION DEFAULTS ===== */
.silo-page .ct-section > .ct-section-inner-wrap {
    align-items: center;
    text-align: center;
}

/* Text-heavy sections: left aligned, narrower */
.silo-page .silo-text-section > .ct-section-inner-wrap {
    text-align: left;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
}

/* Section backgrounds */
.silo-page .silo-bg-dark {
    background-color: #1c1c1c;
}
.silo-page .silo-bg-light {
    background-color: #eff4f7;
}

/* Hero background image (matching precio-incineracion-caceres.html) */
.silo-page .silo-hero-bg {
    background-image: linear-gradient(rgba(0,136,204,0.5), rgba(0,136,204,0.5)),
                      url(../images/incineracion-basica-economica.webp);
    background-size: auto, cover;
    background-repeat: no-repeat;
    background-position: center;
}
.silo-page .silo-hero-bg > .ct-section-inner-wrap {
    padding-top: 100px;
    padding-bottom: 60px;
}
.silo-page .silo-hero-bg .ct-headline {
    color: #ffffff;
}
.silo-page .silo-hero-bg .ct-text-block,
.silo-page .silo-hero-bg .atomic-subheading {
    color: #ffffff;
}
.silo-page .silo-hero-bg .silo-breadcrumbs li {
    color: rgba(255,255,255,0.8);
}
.silo-page .silo-hero-bg .silo-breadcrumbs li::after {
    color: rgba(255,255,255,0.6);
}
.silo-page .silo-hero-bg .silo-breadcrumbs a {
    color: #ffffff;
}
/* Dark hero variant for city pages */
.silo-page .silo-hero-bg-dark {
    background-image: linear-gradient(rgba(0,50,80,0.7), rgba(0,50,80,0.7)),
                      url(../images/incineracion-basica-economica.webp);
    background-size: auto, cover;
    background-repeat: no-repeat;
    background-position: center;
}
.silo-page .silo-hero-bg-dark > .ct-section-inner-wrap {
    padding-top: 100px;
    padding-bottom: 60px;
}
.silo-page .silo-hero-bg-dark .ct-headline {
    color: #ffffff;
}
.silo-page .silo-hero-bg-dark .ct-text-block,
.silo-page .silo-hero-bg-dark .atomic-subheading {
    color: #ddd;
}
.silo-page .silo-hero-bg-dark .silo-breadcrumbs li {
    color: #ccc;
}
.silo-page .silo-hero-bg-dark .silo-breadcrumbs li::after {
    color: #888;
}
.silo-page .silo-hero-bg-dark .silo-breadcrumbs a {
    color: #8cbde6;
}

/* ===== HEADINGS ===== */
.silo-page h1.ct-headline {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}
.silo-page h2.ct-headline {
    font-size: 45px;
    margin-bottom: 12px;
    line-height: 1.2;
}
.silo-page .silo-text-section h2.ct-headline {
    font-size: 30px;
    margin-bottom: 20px;
}
.silo-page .silo-text-section h3.ct-headline {
    font-size: 22px;
    margin: 30px 0 12px;
}
.silo-page .silo-text-section p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

/* ===== DARK SECTION TEXT ===== */
.silo-page .silo-bg-dark .ct-headline {
    color: #ffffff;
}
.silo-page .silo-bg-dark .ct-text-block,
.silo-page .silo-bg-dark .atomic-subheading {
    color: #ddd;
}

/* ===== BREADCRUMBS ===== */
.silo-page .silo-breadcrumbs {
    width: 100%;
    margin-bottom: 20px;
}
.silo-page .silo-breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    justify-content: center;
}
.silo-page .silo-breadcrumbs li {
    color: #666;
}
.silo-page .silo-breadcrumbs li:not(:last-child)::after {
    content: ">";
    margin: 0 8px;
    color: #999;
}
.silo-page .silo-breadcrumbs a {
    color: #0074db;
    text-decoration: none;
}
.silo-page .silo-breadcrumbs a:hover {
    text-decoration: underline;
}
.silo-page .silo-bg-dark .silo-breadcrumbs li {
    color: #ccc;
}
.silo-page .silo-bg-dark .silo-breadcrumbs li::after {
    color: #888;
}
.silo-page .silo-bg-dark .silo-breadcrumbs a {
    color: #8cbde6;
}

/* ===== SUBHEADING TEXT ===== */
.silo-page .atomic-subheading {
    max-width: 800px;
}

/* ===== CTA BUTTON ===== */
.silo-page .silo-cta-btn {
    display: inline-block;
    margin-top: 25px;
    background-color: #0088cc;
    color: #ffffff !important;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    transition: background-color 0.3s;
}
.silo-page .silo-cta-btn:hover {
    background-color: #006da8;
    text-decoration: none;
}

/* ===== SERVICE CARDS ===== */
.silo-page .silo-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    width: 100%;
    margin: 30px auto 0;
}
.silo-page .silo-service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid #e4e8ec;
    border-radius: 14px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.silo-page .silo-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,136,204,0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}
.silo-page .silo-service-card:hover {
    box-shadow: 0 12px 32px rgba(0,100,180,0.13);
    transform: translateY(-4px);
    border-color: #0088cc;
}
.silo-page .silo-service-card:hover::before {
    opacity: 1;
}
/* Icon */
.silo-page .silo-service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0088cc 0%, #005f8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}
.silo-page .silo-service-card:hover .silo-service-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 14px rgba(0,136,204,0.3);
}
.silo-page .silo-service-icon svg {
    width: 26px;
    height: 26px;
    fill: #ffffff;
}
/* Icon nature variant (cremation - leaf/peace) */
.silo-page .silo-service-icon--nature {
    background: linear-gradient(135deg, #6dba82 0%, #3d8b5e 100%);
}
.silo-page .silo-service-card:hover .silo-service-icon--nature {
    box-shadow: 0 4px 14px rgba(109,186,130,0.35);
}
/* Icon teal variant (transfers, legal) */
.silo-page .silo-service-icon--teal {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}
.silo-page .silo-service-card:hover .silo-service-icon--teal {
    box-shadow: 0 4px 14px rgba(26,188,156,0.35);
}
/* Title */
.silo-page .silo-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a2b3c;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}
.silo-page .silo-service-card:hover h3 {
    color: #0074db;
}
/* Description */
.silo-page .silo-service-card p {
    font-size: 14.5px;
    color: #666;
    line-height: 1.55;
    margin: 0 0 auto;
    padding-bottom: 16px;
    position: relative;
    z-index: 1;
}
/* Price */
.silo-page .silo-service-price {
    font-size: 22px;
    font-weight: 800;
    color:#0077a8;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.3px;
}
.silo-page .silo-service-price--consult {
    font-size: 18px;
    font-weight: 700;
    color:#0077a8;
}
/* Link */
.silo-page .silo-service-link {
    font-size: 14px;
    font-weight: 600;
    color: #0074db;
    position: relative;
    z-index: 1;
    transition: letter-spacing 0.3s;
}
.silo-page .silo-service-card:hover .silo-service-link {
    letter-spacing: 0.5px;
}

/* Column widths */
.silo-page .silo-col-third {
    width: 33.33%;
}
.silo-page .silo-col-half {
    width: 50%;
}
.silo-page .silo-col-wrapper {
    width: 75%;
    max-width: 100%;
}
@media (max-width: 991px) {
    .silo-page .ct-new-columns > .ct-div-block {
        width: 100% !important;
    }
}

/* ===== ICON BLOCKS (E-E-A-T section matching HOME features) ===== */
.silo-page .atomic-iconblock-4-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.silo-page .atomic-iconblock-4-icon > svg {
    fill: currentColor;
}

/* ===== CITY GRID ===== */
.silo-page .silo-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
    max-width: 1100px;
    width: 100%;
    margin: 30px auto 0;
}
.silo-page .silo-city-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 16px 20px 20px;
    background: #ffffff;
    border: 1px solid #e4e8ec;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.silo-page .silo-city-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,136,204,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.silo-page .silo-city-card:hover {
    box-shadow: 0 8px 30px rgba(0,100,180,0.12);
    transform: translateY(-3px);
    border-color: #0088cc;
}
.silo-page .silo-city-card:hover::before {
    opacity: 1;
}
/* Pin icon circle */
.silo-page .silo-city-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #0088cc 0%, #005f8f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 1;
}
.silo-page .silo-city-card:hover .silo-city-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,136,204,0.3);
}
.silo-page .silo-city-icon svg {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}
/* Info block */
.silo-page .silo-city-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.silo-page .silo-city-info strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a2b3c;
    line-height: 1.3;
}
.silo-page .silo-city-card:hover .silo-city-info strong {
    color: #0074db;
}
.silo-page .silo-city-comarca {
    font-size: 12.5px;
    color: #8a8a8a;
    font-weight: 400;
    order: -1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.silo-page .silo-city-arrival {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #0077b6;
    font-weight: 600;
    margin-top: 4px;
}
.silo-page .silo-city-arrival::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #25D366;
    flex-shrink: 0;
}
/* Arrow */
.silo-page .silo-city-arrow {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
    position: relative;
    z-index: 1;
}
.silo-page .silo-city-arrow svg {
    width: 18px;
    height: 18px;
    fill: #999;
    transition: fill 0.3s;
}
.silo-page .silo-city-card:hover .silo-city-arrow {
    background: #0088cc;
    transform: translateX(3px);
}
.silo-page .silo-city-card:hover .silo-city-arrow svg {
    fill: #fff;
}

/* ===== FAQ ACCORDION ===== */
.silo-page .silo-faq-list {
    max-width: 800px;
    width: 100%;
    margin: 20px auto 0;
    text-align: left;
}
.silo-page .silo-faq-item {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}
.silo-page .silo-faq-item summary {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 40px;
}
.silo-page .silo-faq-item summary::-webkit-details-marker {
    display: none;
}
.silo-page .silo-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color:#0077a8;
    font-weight: 700;
}
.silo-page .silo-faq-item[open] summary::after {
    content: "\2212";
}
.silo-page .silo-faq-item p {
    padding: 0 20px 16px;
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* ===== NEARBY CITIES ===== */
.silo-page .silo-nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
    max-width: 900px;
    width: 100%;
    margin: 20px auto 0;
}
.silo-page .silo-nearby-link {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #0074db;
    font-weight: 600;
    font-size: 15px;
    transition: border-color 0.3s;
}
.silo-page .silo-nearby-link:hover {
    border-color: #0088cc;
}
.silo-page .silo-nearby-link span {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-top: 4px;
}
.silo-page .silo-back-link {
    text-align: center;
    margin-top: 25px;
}
.silo-page .silo-back-link a {
    color: #0074db;
    text-decoration: none;
    font-size: 15px;
}
.silo-page .silo-back-link a:hover {
    text-decoration: underline;
}

/* ===== SECTION INTRO TEXT ===== */
.silo-page .silo-section-intro {
    max-width: 700px;
    margin: 0 auto;
}

/* ===== FINAL CTA BOX ===== */
.silo-page .silo-final-cta {
    text-align: center;
    max-width: 700px;
    margin: 30px auto 0;
    padding: 40px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.silo-page .silo-final-cta h2.ct-headline {
    margin-bottom: 15px;
    font-size: 30px;
}
.silo-page .silo-final-cta p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}
.silo-page .silo-final-cta a:not(.silo-cta-btn):not(.silo-whatsapp-btn) {
    color: #0074db;
    font-weight: 600;
}
/* Balanced CTA buttons container */
.silo-page .silo-cta-buttons {
    display: flex;
    gap: 14px;
    margin-top: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.silo-page .silo-cta-buttons .silo-cta-btn,
.silo-page .silo-cta-buttons .silo-whatsapp-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    margin-top: 0;
    transition: background-color 0.3s, transform 0.15s;
}
.silo-page .silo-cta-buttons .silo-cta-btn {
    background-color: #0088cc;
    color: #ffffff !important;
}
.silo-page .silo-cta-buttons .silo-cta-btn:hover {
    background-color: #006da8;
    transform: translateY(-1px);
}
.silo-page .silo-cta-buttons .silo-whatsapp-btn {
    background-color: #25D366;
    color: #ffffff !important;
}
.silo-page .silo-cta-buttons .silo-whatsapp-btn:hover {
    background-color: #1da851;
    transform: translateY(-1px);
}
.silo-page .silo-cta-buttons svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

/* ===== MAP ===== */
.silo-page iframe {
    display: block;
    margin: 0 auto 30px;
    max-width: 900px;
    border-radius: 10px;
}

/* ===== TRUST BADGES ===== */
.silo-page .silo-trust-badges {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.silo-page .silo-trust-badge {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 6px;
}
.silo-page .silo-trust-badge strong {
    color: #fff;
    font-size: 14px;
}

/* ===== VISUAL STEPS ===== */
.silo-page .silo-steps {
    display: flex;
    gap: 0;
    max-width: 1000px;
    margin: 30px auto 0;
    width: 100%;
    position: relative;
}
.silo-page .silo-steps-line {
    position: absolute;
    top: 49px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #0088cc;
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s ease-out;
}
.silo-page .silo-steps.animated .silo-steps-line {
    transform: scaleX(1);
}
.silo-page .silo-step {
    flex: 1;
    text-align: center;
    padding: 25px 15px 0;
    position: relative;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.silo-page .silo-steps.animated .silo-step {
    opacity: 1;
    transform: translateY(0);
}
/* Staggered delays */
.silo-page .silo-steps.animated .silo-step:nth-child(2) { transition-delay: 0.1s; }
.silo-page .silo-steps.animated .silo-step:nth-child(3) { transition-delay: 0.2s; }
.silo-page .silo-steps.animated .silo-step:nth-child(4) { transition-delay: 0.35s; }
.silo-page .silo-steps.animated .silo-step:nth-child(5) { transition-delay: 0.5s; }
.silo-page .silo-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #0088cc;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s;
}
.silo-page .silo-steps.animated .silo-step-number {
    transform: scale(1);
}
/* Staggered delays for number pop */
.silo-page .silo-steps.animated .silo-step:nth-child(2) .silo-step-number { transition-delay: 0.15s; }
.silo-page .silo-steps.animated .silo-step:nth-child(3) .silo-step-number { transition-delay: 0.3s; }
.silo-page .silo-steps.animated .silo-step:nth-child(4) .silo-step-number { transition-delay: 0.45s; }
.silo-page .silo-steps.animated .silo-step:nth-child(5) .silo-step-number { transition-delay: 0.6s; }
.silo-page .silo-step:hover .silo-step-number {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 4px 12px rgba(0,136,204,0.35);
}
.silo-page .silo-step h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 6px;
}
.silo-page .silo-step p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ===== LOCAL GUIDE ===== */
.silo-page .silo-guide-block {
    max-width: 800px;
    width: 100%;
    margin: 30px auto 0;
    text-align: left;
}
.silo-page .silo-guide-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a2b3c;
    margin: 0 0 20px;
    text-align: center;
}
.silo-page .silo-guide-title--directory {
    margin-top: 40px;
}
/* Checklist */
.silo-page .silo-guide-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: guide-step;
}
.silo-page .silo-guide-checklist li {
    counter-increment: guide-step;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 20px 20px 72px;
    position: relative;
    border-left: 3px solid #e4e8ec;
    margin-left: 24px;
}
.silo-page .silo-guide-checklist li:last-child {
    border-left-color: transparent;
}
.silo-page .silo-guide-checklist li::before {
    content: counter(guide-step);
    position: absolute;
    left: -18px;
    top: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0088cc;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
.silo-page .silo-guide-checklist li strong {
    font-size: 17px;
    color: #1a2b3c;
}
.silo-page .silo-guide-checklist li span {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}
.silo-page .silo-guide-checklist li span a {
    color: #0074db;
    font-weight: 600;
    text-decoration: none;
}
.silo-page .silo-guide-checklist li span a:hover {
    text-decoration: underline;
}
/* Note callout */
.silo-page .silo-guide-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: #f0f7fc;
    border-radius: 8px;
    border-left: 4px solid #0088cc;
    font-size: 14.5px;
    color: #444;
    line-height: 1.6;
}
.silo-page .silo-guide-note svg {
    flex-shrink: 0;
    margin-top: 2px;
}
/* Directory grid */
.silo-page .silo-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.silo-page .silo-directory-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid #e4e8ec;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
}
.silo-page a.silo-directory-card:hover {
    border-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0,100,180,0.1);
    transform: translateY(-2px);
}
.silo-page .silo-directory-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f4fd;
    color:#0077a8;
}
.silo-page .silo-directory-icon svg {
    width: 22px;
    height: 22px;
}
.silo-page .silo-directory-icon--health { background: #fce4e4; color: #d63031; }
.silo-page .silo-directory-icon--cementerio { background: #e8f5e9; color: #3d8b5e; }
.silo-page .silo-directory-icon--parroquia { background: #f3e5f5; color: #8e44ad; }
.silo-page .silo-directory-icon--ayuntamiento { background: #e3f2fd; color: #1565c0; }
.silo-page .silo-directory-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.silo-page .silo-directory-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    font-weight: 500;
}
.silo-page .silo-directory-info strong {
    font-size: 14.5px;
    font-weight: 600;
    color: #1a2b3c;
    line-height: 1.3;
}

/* ===== INCLUDES CHECKLIST ===== */
.silo-page .silo-includes {
    max-width: 600px;
    margin: 30px auto 0;
    text-align: left;
}
.silo-page .silo-includes h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px;
    text-align: center;
}
.silo-page .silo-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 30px;
}
.silo-page .silo-includes li {
    padding: 6px 0 6px 28px;
    position: relative;
    font-size: 15px;
    color: #555;
    break-inside: avoid;
}
.silo-page .silo-includes li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color:#0077a8;
    font-weight: 700;
    font-size: 16px;
}

/* ===== WHATSAPP BUTTON ===== */
.silo-page .silo-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    background-color: #25D366;
    color: #ffffff !important;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.silo-page .silo-whatsapp-btn:hover {
    background-color: #1da851;
    text-decoration: none;
}
.silo-page .silo-whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== TESTIMONIALS ===== */
.silo-page .silo-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 25px auto 0;
    width: 100%;
}
.silo-page .silo-testimonial {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-align: left;
}
.silo-page .silo-testimonial-stars {
    color: #f5a623;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.silo-page .silo-testimonial q {
    display: block;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
    quotes: none;
}
.silo-page .silo-testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
.silo-page .silo-testimonial-location {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* ===== STICKY CTA BAR ===== */
.silo-page .silo-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.silo-page .silo-sticky-bar a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: opacity 0.3s;
}
.silo-page .silo-sticky-bar a:hover {
    opacity: 0.9;
    text-decoration: none;
}
.silo-page .silo-sticky-phone {
    background: #0088cc;
    color: #fff !important;
}
.silo-page .silo-sticky-wa {
    background: #25D366;
    color: #fff !important;
}
.silo-page .silo-sticky-bar svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}
/* Space for sticky bar */
.silo-page {
    padding-bottom: 65px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .silo-page .silo-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .silo-page .silo-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .silo-page h1.ct-headline {
        font-size: 30px;
    }
    .silo-page h2.ct-headline {
        font-size: 30px;
    }
    .silo-page .ct-section > .ct-section-inner-wrap {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .silo-page .silo-cta-btn {
        display: block;
        text-align: center;
        font-size: 16px;
        padding: 12px 25px;
    }
    .silo-page .silo-cities-grid,
    .silo-page .silo-nearby-grid,
    .silo-page .silo-services-grid,
    .silo-page .silo-directory-grid {
        grid-template-columns: 1fr;
    }
    .silo-page .silo-guide-checklist li {
        padding-left: 60px;
    }
    .silo-page .silo-service-card {
        padding: 22px 20px;
    }
    .silo-page .silo-col-wrapper {
        width: 100%;
    }
    .silo-page .silo-steps {
        flex-direction: column;
        gap: 0;
    }
    .silo-page .silo-steps-line {
        display: none;
    }
    .silo-page .silo-step {
        padding: 15px;
    }
    .silo-page .silo-trust-badges {
        gap: 8px;
    }
    .silo-page .silo-trust-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    .silo-page .silo-testimonials {
        grid-template-columns: 1fr;
    }
    .silo-page .silo-includes ul {
        columns: 1;
    }
    .silo-page .silo-sticky-bar {
        gap: 8px;
        padding: 8px 12px;
    }
    .silo-page .silo-sticky-bar a {
        padding: 10px 16px;
        font-size: 14px;
        flex: 1;
        justify-content: center;
    }
    .silo-page .silo-whatsapp-btn {
        display: flex;
        justify-content: center;
    }
    .silo-page .silo-cta-buttons {
        flex-direction: column;
    }
    .silo-page .silo-cta-buttons .silo-cta-btn,
    .silo-page .silo-cta-buttons .silo-whatsapp-btn {
        width: 100%;
        padding: 14px 20px;
    }
}

@media (max-width: 479px) {
    .silo-page h1.ct-headline {
        font-size: 26px;
    }
    .silo-page h2.ct-headline {
        font-size: 26px;
    }
    .silo-page .silo-breadcrumbs ol {
        font-size: 12px;
    }
    .silo-page .silo-trust-badges {
        flex-direction: column;
        align-items: center;
    }
}
