/* =========================================
   1. GLOBAL VARIABLES
========================================= */
:root {
    --brand-pink: #E6005A;
    --bg-canvas: #F4F4F4;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --text-main: #111;
    --text-gray: #666;
    --border-light: #eee;
    --border-dark: #333;
    --pink-faint: #fcf2f5;
    --pink-light: #FFF0F3;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);
    --doc-max-width: 800px;
}

/* =========================================
   2. SHARED COMPONENTS (ALL PAGES)
========================================= */
/* Canvas Background */
body.quote-canvas-body {
    background-color: var(--bg-canvas);
    margin: 0;
    padding: 40px 20px;
    font-family: var(--font-main);
    color: var(--text-main);
}

/* The White "Paper" Look */
.quote-document-wrapper,
.proposal-document-wrapper {
    max-width: var(--doc-max-width);
    margin: 0 auto;
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

/* Checkmark Lists */
.includes-content ul,
.custom-checkmark-list ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.includes-content li,
.custom-checkmark-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px; 
    font-size: 14px;
}
.includes-content li::before,
.custom-checkmark-list li::before {
    content: '✓';
    color: var(--brand-pink);
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* =========================================
   3. PAGE: EVENT HIRE QUOTE
========================================= */
.quote-header {
    background: var(--bg-dark);
    color: #fff;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quote-header h2 { margin: 0; font-size: 26px; font-weight: 900; letter-spacing: -0.5px; }
.quote-header .brand-pink { color: var(--brand-pink); }
.quote-header p { margin: 5px 0 0; font-size: 11px; letter-spacing: 1px; }
.quote-header-right { text-align: right; line-height: 1.1; }
.quote-header-right h3 { margin: 0; font-size: 20px; font-weight: 900; }
.quote-header-right span { color: var(--brand-pink); font-weight: 900; font-size: 20px; }

.quote-body { padding: 40px; }

.quote-title-area h1 { font-size: 26px; text-transform: uppercase; margin: 0 0 5px 0; font-weight: 800; }
.quote-title-area p { color: #888; font-size: 13px; margin: 0; text-transform: uppercase; font-weight: bold; }

.quote-meta-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-bottom: 20px;
    font-size: 14px;
    font-weight: bold;
}
.meta-label { color: var(--brand-pink); margin-right: 5px; }

.quote-section-box { margin-bottom: 25px; }
.section-title {
    background: var(--pink-faint);
    color: var(--brand-pink);
    font-weight: bold;
    padding: 10px 15px;
    font-size: 14px;
}
.section-content {
    background: var(--bg-white);
    padding: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.event-row { display: flex; margin-bottom: 5px; }
.event-label { font-weight: bold; width: 140px; }

.quote-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}
.quote-table th {
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    text-align: left;
    padding: 12px 15px;
    border-right: 1px solid var(--border-dark);
}
.quote-table th:last-child { border-right: none; }
.quote-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    font-size: 14px;
}
.quote-table td:last-child { border-right: none; }
.quote-table th:nth-child(2), .quote-table td:nth-child(2) { text-align: center; }
.quote-table th:nth-child(3), .quote-table td:nth-child(3),
.quote-table th:nth-child(4), .quote-table td:nth-child(4) { text-align: right; }

.quote-totals-block {
    width: 320px;
    margin-left: auto;
    margin-top: 15px;
    font-size: 14px;
}
.quote-totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-light);
    font-weight: bold;
}
.quote-totals-grand {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: var(--brand-pink);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.quote-includes-box {
    margin-top: 40px;
    background: var(--pink-light);
    padding: 25px;
}
.quote-includes-box strong { color: var(--brand-pink); display: block; margin-bottom: 10px; }

.quote-action-btn { margin-top: 30px; text-align: center; }
.quote-action-btn a {
    display: block;
    background: var(--brand-pink);
    color: #fff;
    text-decoration: none;
    padding: 18px;
    font-weight: bold;
    font-size: 16px;
}

/* =========================================
   4. PAGE: VENUE PROPOSAL
========================================= */
.proposal-body { padding: 40px; }

.proposal-title-area h1 {
    font-size: 28px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
    font-weight: 900;
}
.proposal-title-area p {
    color: var(--text-gray);
    font-size: 16px;
    margin: 0;
    text-transform: uppercase;
}

.proposal-meta-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}
.meta-col { display: flex; flex-direction: column; }
.meta-value { font-size: 14px; line-height: 1.4; }

.proposal-hero-section {
    display: flex;
    margin-top: 30px;
    background: #111;
    color: #fff;
    min-height: 250px;
}
.hero-image-half {
    width: 50%;
    background-size: cover;
    background-position: center;
}
.hero-text-half {
    width: 50%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* Forces ACF WYSIWYG text in the dark section to remain white */
.hero-text-half p, 
.hero-text-half li,
.hero-text-half div {
    color: #ffffff !important;
}

.hero-text-half h2 {
    color: #fff;
    font-size: 22px;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 1.2;
}
.hero-benefits li { color: #ddd; font-weight: bold; }
.hero-benefits li::before {
    background: var(--brand-pink);
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.proposal-section { margin-top: 40px; }
.section-heading {
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    font-weight: 800;
}
.section-paragraph { font-size: 15px; line-height: 1.6; margin: 0; }

.machine-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-start;
}
.machine-item {
    width: calc(20% - 12px); /* 5 columns */
    text-align: center;
}
.machine-img-box {
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-canvas);
    border-radius: 4px;
    margin-bottom: 10px;
}
.machine-details { font-size: 13px; line-height: 1.4; }
.machine-details strong { display: block; }

.proposal-checklists-row {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
.checklist-col { width: 48%; }

.proposal-cta-box {
    background: var(--brand-pink);
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    border-radius: 4px;
}
.proposal-cta-box h2 { margin: 0 0 5px 0; font-size: 24px; font-weight: 900; }
.proposal-cta-box p { margin: 0; font-size: 15px; }

/* Document Icon Footer */
.proposal-icon-footer {
    background: var(--bg-dark);
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    margin-top: 30px;
    border-radius: 4px;
    text-align: center;
}
.icon-col {
    width: 23%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.5px;
}
.icon-col i {
    color: var(--brand-pink);
    font-size: 26px;
    margin-bottom: 12px;
}