/* --- Booking Summary Page --- */
.adq-booking-summary-wrapper {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    font-family: Arial, sans-serif; /* Or your theme's font */
}

.adq-page-title {
    text-align: center;
    color: #007bff; /* Adjust to your blue, if this title is outside the gigs */
    /* If the "Your Quote" title is also on the blue background, make it white */
    /* color: #ffffff; */ 
    margin-bottom: 30px;
    font-size: 2.5em; 
    font-weight: bold;
}

/* Calculation Errors & Messages */
.adq-calculation-errors .adq-error,
.adq-message {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 1em;
}
.adq-message-error, .adq-calculation-errors .adq-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.adq-message-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.adq-message-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

/* Gigs Container */
.adq-gigs-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.adq-gig {
    background-color: #4A6B82; /* Your blueish background */
    color: #ffffff; /* DEFAULT TEXT COLOR FOR GIG CONTENT IS NOW WHITE */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
}

.adq-gig-title {
    color: #ffffff; /* Titles remain white */
    font-size: 1.4em;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
}

.adq-gig ul.adq-gig-list,
.adq-gig ul.adq-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.adq-gig ul.adq-gig-list li,
.adq-gig ul.adq-details-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95em;
    color: #ffffff; /* Ensure list item text is white */
}
.adq-gig ul.adq-gig-list li:last-child,
.adq-gig ul.adq-details-list li:last-child {
    border-bottom: none;
}

.adq-gig .adq-summary-section {
    margin-bottom: 15px;
}
.adq-gig .adq-summary-section h4 {
    color: #ffffff; /* Section sub-titles white */
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: bold;
}
.adq-gig .adq-summary-section p {
    margin: 5px 0;
    font-size: 0.95em;
    line-height: 1.5;
    color: #ffffff; /* Paragraph text white */
}
/* For the labels like "Postcode:", "Type:" */
.adq-gig .adq-summary-section p strong,
.adq-gig ul.adq-details-list strong {
    font-weight: normal; /* As per your image, labels aren't heavily bolded */
    color: #ffffff; /* MAKE LABELS WHITE */
    margin-right: 5px;
}

/* Estimated Price Section (Gig 3) */
.adq-gig .adq-estimated-price {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #ffffff; /* Ensure this text is white */
}
.adq-gig .adq-estimated-price strong { /* This is for the £287.00 part */
    font-size: 1.5em;
    font-weight: bold;
    color: #ffffff;
}
/* Text like "+ VAT" */
.adq-gig .adq-estimated-price span.vat-text {
    color: #ffffff; /* If you wrap "+ VAT" in a span, style it white */
}


.adq-gig .adq-extra-info {
    margin-top: 15px;
    font-size: 0.9em;
    line-height: 1.6;
    color: #ffffff; /* Make this text white */
}
.adq-gig .adq-extra-info p {
    margin: 5px 0;
    color: #ffffff; /* Ensure these paragraphs are white */
}

.adq-gig .adq-total-price {
    margin-top: auto;
    padding-top: 20px;
    font-size: 1.2em;
    text-align: center;
    color: #ffffff; /* Make this text white */
}
.adq-gig .adq-total-price strong { /* This is for the "Total Estimated Price..." label and amount */
    font-size: 1.6em;
    font-weight: bold;
    color: #ffffff;
    display: block;
}

/* Book Now Button Container & Button - Styles remain the same */
/* ... (all other CSS from previous answer) ... */

/* Book Now Button Container & Button */
.adq-book-now-container {
    margin-top: 20px;
    text-align: center;
}

/* Make this selector more specific if needed */
.adq-booking-summary-wrapper .adq-gigs-container .adq-gig .adq-book-now-container .adq-book-now-button,
.adq-book-now-button { /* Keep the general one too */
    background-color: #FF5722 !important; /* Orange color from your image - !important as last resort */
    color: white !important; /* !important as last resort */
    border: none !important; /* !important as last resort */
    padding: 15px 30px !important; /* !important as last resort */
    font-size: 1.2em !important; /* !important as last resort */
    font-weight: bold !important; /* !important as last resort */
    border-radius: 5px !important; /* !important as last resort */
    cursor: pointer !important; /* !important as last resort */
    text-transform: uppercase !important; /* !important as last resort */
    display: inline-block !important; /* !important as last resort */
    text-decoration: none !important; /* !important as last resort */
    transition: background-color 0.3s ease !important; /* !important as last resort */
    line-height: normal; /* Ensure normal line height */
}
.adq-book-now-button:hover {
    background-color: #E64A19 !important; /* Darker orange on hover - !important as last resort */
}

/* After booking actions link */
.adq-after-booking-actions a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff; /* Example style */
    color: white;
    text-decoration: none;
    border-radius: 4px;
}
.adq-after-booking-actions a:hover {
    background-color: #0056b3;
}

/* Responsive Adjustments - Styles remain the same */
@media (max-width: 991px) { /* ... */ }
@media (max-width: 767px) { /* ... */ }