.content-area {
    background: var(--zo-bg-page);
}

/* Breadcrumb */
.trip-single-container .breadcrumb {
    font-size: 14px;
    color: #666;
    margin: 0 !important;
}
.trip-single-container .breadcrumb a {
    color: #505968;
    font-size: 13px;
    line-height: 1.4;
    text-decoration: none;
}
.trip-single-container .breadcrumb svg {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    fill: var(--zo-heading-primary);
    margin: 0 6px;
}
.trip-single-container .breadcrumb a:hover {
    text-decoration: underline;
}

/* Title */
.trip-single-container h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 24px;
    line-height: 1.3;
}

/* Header Layout */
.trip-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

/* Featured Image */
.trip-header img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Sidebar Box */
.trip-sidebar {
    background: var(--zo-common-background);
    border: 1px solid #f1f1f1;
    padding: 24px;
    box-shadow: 0px 4px 0px 0px #83230A inset;
    border: 1px solid #F3E99E;
    border-radius: 4px;
}

.trip-sidebar p {
    color: #333;
    font-size: 16px;
}

.trip-sidebar p:first-child {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.trip-sidebar .price {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.2;
}
.trip-sidebar .trip-price span {
    font-size: 28px;
    font-weight: 700;
    color: var(--zo-heading-primary); /* deep red from Figma */
}
.trip-sidebar .trip-contact-btn {
    margin-top: 24px;
}
/* CTA Button */
.trip-contact-btn {
    display: block;
    background: var(--zo-theme-primary);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border-radius: 2px;
}
.trip-sidebar a:hover {
    background: #8c281d;
}

/* Tabs */
.trip-tabs {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: var(--zo-common-white);
    margin-top: 40px;
    border: 1px solid #E9EAEC;
    padding: 6px 8px;
    border-radius: 2px;
}
.trip-tabs button {
    background: none;
    border: none;
    font-size: 18px;
    padding: 10px 0;
    font-weight: 500;
    margin-left: 10px;
    color: #333;
    cursor: pointer;
    position: relative;
}
.trip-tabs button::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a33224;
}

/* Content */
.trip-content {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}


/* General Modal Styling (from previous answers, ensure these are present) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Slightly darker overlay */
}

.modal-content {
    background-color: #ffffff; /* White background for the modal */
    margin: 80px auto; /* Adjust margin from top for position */
    padding: 0; /* Remove default padding from here */
    border: none; /* Remove default border */
    width: 90%; /* Adjust width for responsiveness */
    max-width: 800px; /* Max-width as per your design's approximate size */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Softer shadow */
    position: relative;
    box-sizing: border-box; /* Include padding in width/height calculations */
}

/* Close Button Styling */
.close-button {
    color: #666; /* Darker grey for better visibility */
    position: absolute; /* Position relative to modal-content */
    top: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    font-size: 30px; /* Larger 'x' */
    font-weight: normal; /* Often looks better than bold for 'x' */
    cursor: pointer;
    line-height: 1; /* Aligns the 'x' better */
    z-index: 10; /* Ensure it's above other content */
}

.close-button:hover,
.close-button:focus {
    color: #333;
}

/* Form Container and Header */
.contact-form-container {
    padding: 30px; /* Internal padding for the whole form area */
    font-family: Arial, sans-serif; /* Use a consistent font */
    color: #333; /* Default text color */
}

.contact-form-container h2 {
    font-size: 24px; /* "Send request" title size */
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 30px; /* Space below the main title */
    text-align: center; /* Center the "Send request" title */
    border-bottom: 1px solid #eee; /* Separator line below title */
    padding-bottom: 20px; /* Space above the separator line */
}

/* Contact Information Block */
.contact-information-block {
    margin-bottom: 30px; /* Space below this block */
    position: relative;
}

.contact-information-block h4 {
    font-size: 16px; /* "Contact Information" title size */
    color: #333;
    margin-top: 0;
    margin-bottom: 15px; /* Space below "Contact Information" title */
    font-weight: bold;
}

/* Required fields indicator */
.contact-information-block::before {
    content: "* marked fields are required.";
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    color: #999;
}


/* Form Rows */
.form-row {
    display: flex; /* Use flexbox for two-column layout */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 20px; /* Space between columns */
    margin-bottom: 15px; /* Space between rows */
}

.form-row > div { /* For individual label/input groups if you structured them that way */
    flex: 1; /* Allow items to grow and shrink */
    min-width: 200px; /* Minimum width before wrapping */
}

.form-row label {
    display: block; /* Make labels block-level for better spacing */
    font-size: 14px;
    color: #555;
    margin-bottom: 8px; /* Space between label and input */
    font-weight: normal; /* As in the design */
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"] {
    width: 100%; /* Full width within its flex container */
    padding: 12px;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Include padding in width */
    color: #333;
}

.form-row input::placeholder {
    color: #bbb; /* Lighter placeholder text */
}

/* Selected Trip Block */
.selected-trip-block {
    background-color: #F8EEEE; 
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px; /* Space below this block */
}

.selected-trip-block h4 {
    font-size: 16px;
    color: var(--zo-heading-primary);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: start;
}

.selected-trip-block p {
    font-size: 18px; /* Larger font for the trip name */
    font-weight: bold;
    color: #333;
    margin: 0; 
}
.selected-trip-block {
    h2 {
        text-align: start;
        margin-bottom: 0;
    }
}

/* Policy Checkbox */
.policy-checkbox {
    display: flex; /* Align checkbox and label */
    align-items: center; /* Vertically center them */
}

.policy-checkbox input[type="checkbox"] {
    margin-right: 10px; /* Space between checkbox and label */
    /* You might need to style checkbox appearance specifically for cross-browser consistency */
}

.policy-checkbox label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

/* Send Button */
.send-button {
    display: block; /* Make button full width of its container */
    width: 100%;
    padding: 15px 20px;
    background-color: var(--zo-theme-primary); /* A dark brown, similar to the image */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth hover effect */
}

.send-button:hover {
    background-color: #A0522D; /* Slightly lighter on hover */
}

/* Pagination wrapper */
.navigation.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Container for links */
.navigation.pagination .nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Default link styles */
.navigation.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Hover */
.navigation.pagination .page-numbers:hover {
    border-color: #8B2C0F; /* adjust to your theme red */
    color: #8B2C0F;
}

/* Current page */
.navigation.pagination .page-numbers.current {
    background: #8B2C0F;  /* Figma red */
    color: #fff;
    border-color: #8B2C0F;
    font-weight: 600;
}

/* Prev/Next buttons */
.navigation.pagination .page-numbers.prev,
.navigation.pagination .page-numbers.next {
    border-radius: 20px;
    padding: 0 14px;
    width: auto;
    font-size: 14px;
    font-weight: 500;
}

/* Hover state for prev/next */
.navigation.pagination .page-numbers.prev:hover,
.navigation.pagination .page-numbers.next:hover {
    background: #f5f5f5;
    color: #8B2C0F;
}
