/**
 * Pricing Page Styles
 * Page: /how-much-does-it-cost-to-hire-a-trade-show-model/
 * Page ID: 2845
 */

/* ============================================
   VARIABLES & BASE
   ============================================ */
.postid-2845 {
    --brand-color: #67c6b4;
    --brand-dark: #5ab3a2;
    --dark-slate: #303e48;
    --text-dark: #303e48;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --star-gold: #ffc107;
}

/* ============================================
   INTRO SECTION (matches bottom CTA bar style)
   ============================================ */
.pricing-hero {
    background: var(--dark-slate);
    padding: 40px 20px;
    text-align: center;
    /* alignwide: extends 60px beyond content on each side */
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
}

.pricing-hero__inner {
    max-width: 750px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pricing-hero__subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 30px 20px;
        /* On mobile, use full width without negative margins */
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .pricing-hero h1 {
        font-size: 26px;
    }
    .pricing-hero__subtitle {
        font-size: 16px;
    }
}

/* ============================================
   PRICING TABLE SECTION
   ============================================ */
.pricing-table-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.pricing-table-section__inner {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-table-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 40px 0;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.pricing-table thead {
    background: var(--brand-color);
}

.pricing-table th {
    padding: 18px 24px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    border: none;
}

.pricing-table th:first-child {
    border-radius: var(--radius-md) 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 var(--radius-md) 0 0;
}

.pricing-table tbody tr {
    transition: background-color 0.2s ease;
}

.pricing-table tbody tr:nth-child(odd) {
    background: var(--bg-white);
}

.pricing-table tbody tr:nth-child(even) {
    background: var(--bg-light);
}

.pricing-table tbody tr:hover {
    background: #e8f7f4;
}

.pricing-table td {
    padding: 18px 24px;
    font-size: 16px;
    color: var(--text-dark);
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-md);
}

.pricing-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-md) 0;
}

.pricing-table .role-name {
    font-weight: 600;
    color: var(--text-dark);
}

.pricing-table .rate {
    font-weight: 500;
    color: var(--text-medium);
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin: 0 0 32px 0;
}

.pricing-cta-wrapper {
    text-align: center;
}

.pricing-cta-wrapper--dual {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.pricing-cta-wrapper--dual .pricing-cta-btn {
    white-space: nowrap;
}

.pricing-cta-btn {
    display: inline-block;
    background: var(--brand-color);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.pricing-cta-btn:hover {
    background: var(--brand-dark);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .pricing-table-section {
        padding: 40px 15px;
    }
    .pricing-table-section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .pricing-table th,
    .pricing-table td {
        padding: 14px 16px;
        font-size: 14px;
    }
    .pricing-cta-wrapper--dual {
        flex-direction: column;
        align-items: center;
    }
    .pricing-cta-wrapper--dual .pricing-cta-btn {
        flex: none;
        width: 100%;
        max-width: 300px;
    }
    .pricing-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   TRUST BAR (dark style to stand out)
   ============================================ */
.pricing-trust-bar {
    background: var(--dark-slate);
    padding: 24px 20px;
    text-align: center;
    /* alignwide: extends 60px beyond content on each side */
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
}

.pricing-trust-bar__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.pricing-trust-item i {
    color: var(--brand-color);
    font-size: 20px;
}

.pricing-trust-item .fa-star {
    color: var(--star-gold);
}

@media (max-width: 768px) {
    .pricing-trust-bar {
        padding: 20px;
        /* On mobile, use full width without negative margins */
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .pricing-trust-bar__inner {
        flex-direction: column;
        gap: 12px;
    }
    .pricing-trust-item {
        font-size: 16px;
        justify-content: center;
    }
}

/* ============================================
   BUDGET EXAMPLE SECTION
   ============================================ */
.pricing-budget-example {
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(103, 198, 180, 0.1) 0%, rgba(103, 198, 180, 0.05) 100%);
    border-top: 3px solid var(--brand-color);
    border-bottom: 3px solid var(--brand-color);
    margin-bottom: 40px;
}

.pricing-budget-example__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.pricing-budget-example h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 16px 0;
}

.pricing-budget-example p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 0 12px 0;
}

.pricing-budget-example p:last-child {
    margin-bottom: 0;
}

.pricing-budget-example strong {
    color: var(--text-dark);
    font-weight: 700;
}

.pricing-budget-example a {
    color: var(--brand-color);
    font-weight: 600;
    text-decoration: none;
}

.pricing-budget-example a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pricing-budget-example {
        padding: 30px 20px;
    }
    .pricing-budget-example h3 {
        font-size: 20px;
    }
    .pricing-budget-example p {
        font-size: 16px;
    }
}

/* ============================================
   WHAT AFFECTS PRICING SECTION
   ============================================ */
.pricing-factors-section {
    padding: 70px 20px;
    background: var(--bg-white);
}

.pricing-factors-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-factors-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 30px 0;
    text-align: center;
}

.pricing-factors-section p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 0 20px 0;
}

.pricing-factors-section a {
    color: var(--brand-color);
    text-decoration: none;
    font-weight: 500;
}

.pricing-factors-section a:hover {
    text-decoration: underline;
}

.pricing-factor-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin: 24px 0;
    border-left: 4px solid var(--brand-color);
}

.pricing-factor-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.pricing-factor-card p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 768px) {
    .pricing-factors-section {
        padding: 50px 20px;
    }
    .pricing-factors-section h2 {
        font-size: 26px;
    }
    .pricing-factors-section p {
        font-size: 16px;
    }
}

/* ============================================
   WHAT'S INCLUDED SECTION (matches CTA bar style)
   ============================================ */
.pricing-included-section {
    background: var(--dark-slate);
    padding: 40px 20px;
    text-align: center;
    /* alignwide: extends 60px beyond content on each side */
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
}

.pricing-included-section__inner {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-included-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.pricing-included-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing-included-content p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-included-section {
        padding: 30px 20px;
        /* On mobile, use full width without negative margins */
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .pricing-included-section h2 {
        font-size: 26px;
    }
    .pricing-included-content p {
        font-size: 16px;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.pricing-faq-section {
    padding: 70px 20px;
    background: var(--bg-light);
    /* Light gray sections stay within content width */
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-md);
}

.pricing-faq-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 40px 0;
    text-align: center;
}

.pricing-faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.pricing-faq-item:hover {
    box-shadow: var(--shadow-md);
}

.pricing-faq-item:last-child {
    margin-bottom: 0;
}

.pricing-faq-item__question {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-faq-item__question::before {
    content: 'Q';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--brand-color);
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-faq-item__answer {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
    padding-left: 40px;
}

@media (max-width: 768px) {
    .pricing-faq-section {
        padding: 50px 20px;
    }
    .pricing-faq-section h2 {
        font-size: 26px;
    }
    .pricing-faq-item {
        padding: 20px;
    }
    .pricing-faq-item__question {
        font-size: 16px;
    }
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.pricing-testimonial-section {
    padding: 70px 20px;
    background: var(--bg-white);
}

.pricing-testimonial-section__inner {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    position: relative;
}

.pricing-testimonial-card__quote {
    font-size: 80px;
    color: var(--brand-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.pricing-testimonial-card__text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.pricing-testimonial-card__author {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-medium);
    margin: 0;
}

.pricing-testimonial-card__stars {
    color: var(--star-gold);
    margin-left: 8px;
}

@media (max-width: 768px) {
    .pricing-testimonial-section {
        padding: 50px 20px;
    }
    .pricing-testimonial-card {
        padding: 30px 20px;
    }
    .pricing-testimonial-card__text {
        font-size: 17px;
    }
    .pricing-testimonial-card__quote {
        font-size: 60px;
        left: 15px;
    }
}

/* ============================================
   BOTTOM CTA SECTION (Dual Card Layout)
   ============================================ */
.pricing-bottom-cta {
    padding: 50px 20px;
    background: var(--dark-slate);
    text-align: center;
    /* alignwide: extends 60px beyond content on each side */
    margin-left: -60px;
    margin-right: -60px;
    width: calc(100% + 120px);
}

.pricing-bottom-cta__inner {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-bottom-cta h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 32px 0;
}

/* Dual CTA Cards */
.pricing-cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
}

.pricing-cta-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.pricing-cta-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 24px 0;
}

.pricing-cta-card__btn {
    display: inline-block;
    background: var(--brand-color);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    border: 2px solid var(--brand-color);
}

.pricing-cta-card__btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #ffffff;
    text-decoration: none;
}

.pricing-bottom-cta__phone {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.pricing-bottom-cta__phone a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.pricing-bottom-cta__phone a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pricing-bottom-cta {
        padding: 40px 20px;
        /* On mobile, use full width without negative margins */
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }
    .pricing-bottom-cta h2 {
        font-size: 26px;
        margin-bottom: 24px;
    }
    .pricing-cta-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pricing-cta-card {
        padding: 28px 20px;
    }
    .pricing-cta-card h3 {
        font-size: 20px;
    }
    .pricing-cta-card__btn {
        width: 100%;
    }
}

/* ============================================
   HALF DAY & DISCOUNTS SECTION
   ============================================ */
.pricing-discounts-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.pricing-discounts-section__inner {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-discounts-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.pricing-discounts-section p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 0 20px 0;
}

.pricing-update-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
    text-align: center;
}

/* ============================================
   HIDE DEFAULT KADENCE BLOCKS ON THIS PAGE
   ============================================ */
.postid-2845 .entry-content > .wp-block-kadence-infobox:first-child {
    display: none !important;
}

/* Override any theme defaults */
.postid-2845 .entry-content {
    max-width: none;
    padding: 0;
}

.postid-2845 article.post {
    max-width: none;
}

.postid-2845 .entry-content > p:first-of-type {
    display: none;
}

/* Hide default entry title - we have H1 in hero */
.postid-2845 .entry-title {
    display: none !important;
}

/* Remove default post wrapper padding/margins */
.postid-2845 .entry-content {
    margin-top: 0 !important;
}

.postid-2845 article {
    padding-top: 0 !important;
}

/* ============================================
   HIDE SIDEBAR & MAKE FULL WIDTH
   ============================================ */
.postid-2845 #sidebar,
.postid-2845 aside#sidebar {
    display: none !important;
}

/* Make main content column full-width */
.postid-2845 .col-lg-8 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
}

/* Hide the sidebar column entirely */
.postid-2845 .col-lg-4:has(#sidebar) {
    display: none !important;
}

/* Fallback for browsers without :has() support */
.postid-2845 .row > .col-lg-4 {
    display: none !important;
}

/* ============================================
   RELATED ARTICLES SECTION
   ============================================ */
.pricing-related-section {
    padding: 60px 20px;
    background: var(--bg-light);
    border-top: 1px solid #e2e8f0;
    /* Light gray sections stay within content width */
    max-width: 1000px;
    margin: 40px auto 0;
    border-radius: var(--radius-md);
}

.pricing-related-section__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-related-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 32px 0;
    text-align: center;
}

.pricing-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.pricing-related-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    display: block;
}

.pricing-related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    text-decoration: none;
}

.pricing-related-card__title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.pricing-related-card:hover .pricing-related-card__title {
    color: var(--brand-color);
}

.pricing-related-card__excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

.pricing-related-card__arrow {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--brand-color);
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-related-section {
        padding: 50px 20px;
    }
    .pricing-related-section h2 {
        font-size: 24px;
    }
    .pricing-related-grid {
        grid-template-columns: 1fr;
    }
}
