/* Services Pricing Section - Dark template (The Cappa) */

/* Hide About and Clients sections on the Services page */
body.page-slug-services .about-dark-bg,
body.page-slug-services .clients-section-dark {
    display: none !important;
}


.pricing.bg-black {
    background-color: #1b1b1b;
}

/* Section title styling for dark pricing section */
.pricing.bg-black .section-title {
    font-size: 45px;
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    color: #fff;
    position: relative;
    margin-bottom: 20px;
    line-height: 1.25em;
}

/* Match dark pricing card palette from template dark styles */
.pricing.bg-black .pricing-card {
    background-color: #2b2b2b;
}

.pricing.bg-black .pricing-card .name {
    color: #fff;
}

.pricing.bg-black .pricing-card .subname,
.pricing.bg-black .pricing-card .list li,
.pricing.bg-black .pricing-card p,
.pricing.bg-black .pricing-card .pricing-description {
    color: #999;
}

.pricing.bg-black .pricing-card .amount,
.pricing.bg-black .pricing-card .list li i {
    color: #aa8453;
}

/* Amount block — aligned to same horizontal level via flex layout */
.pricing.bg-black .pricing-card .desc .amount {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.pricing.bg-black .pricing-card .desc .amount .amount-value {
    font-family: "Gilda Display", serif;
    font-size: 56px;
    line-height: 1;
    color: #aa8453;
}

.pricing.bg-black .pricing-card .desc .amount .amount-label {
    margin-top: 10px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #aa8453;
}

.pricing.bg-black .pricing-card .desc .pricing-description {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #fff;
}

/* Pricing divider - visual separator between description and list */
.pricing.bg-black .pricing-card .desc .pricing-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(170, 132, 83, 0.3);
    margin: 20px 0 25px 0;
}

/* Pricing card images - consistent sizing like in example */
.pricing.bg-black .pricing-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 0;
}

/* Equal card heights for better UX/UI consistency */
.pricing.bg-black .row {
    align-items: stretch;
}

.pricing.bg-black .col-md-4 {
    display: flex;
}

.pricing.bg-black .col-md-4 .pricing-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.pricing.bg-black .col-md-4 .pricing-card .desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 40px;
}

/* List does NOT grow — stays compact */
.pricing.bg-black .pricing-card .desc .list {
    flex: 0 0 auto;
    margin-bottom: 0;
}

/* Amount block pushed to bottom via margin-top: auto — aligns across all cards */
.pricing.bg-black .pricing-card .desc .amount {
    margin-top: auto;
    padding-top: 30px;
    margin-bottom: 0;
}

/* CTA Button wrapper — breathing room between price and button */
.pricing.bg-black .pricing-card .desc .pricing-cta-wrapper {
    margin-top: 24px;
    padding-top: 0;
}

/* CTA Button styles for pricing cards */
.pricing.bg-black .pricing-card .desc .pricing-cta-wrapper .butn-dark {
    margin: 0;
}

.pricing.bg-black .pricing-card .desc .pricing-cta-wrapper .butn-dark a {
    display: block;
    text-align: center;
    width: 100%;
}

/* Hover effect for pricing cards */
.pricing.bg-black .pricing-card {
    transition: all 0.3s ease;
}

.pricing.bg-black .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing.bg-black .pricing-card:hover .desc {
    background-color: #333;
}
