:root {
    --olive: #43542a;
    --orange: #e8a02c;
    --light-grey: #cbd2c3;
    --white: #ffffff;
}

body {
    background-color: #f5f5f5;
    font-family: 'Helvetica', Arial, sans-serif;
    color: var(--white);
   /* display: flex;*/
   /* justify-content: center;*/
   /* padding: 20px;*/
}



/* Layout Container */
.page-container {

    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white; /* Sidebar background */
    align-items: flex-start;
}




/* Sidebar (Right Side) */
.sidebar {
    flex: 1; /* Takes up 1/3 of space */
    padding: 40px;
    background-color: #ffffff;
    color: #333;
}

.sidebar h2 {
    font-size: 1.4rem;
    color: #4a5d23;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 1.05rem;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #ffb84d; /* Orange/Yellow circle */
    color: #4a5d23;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

/* Ratings Section */
.ratings-title {
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #666;
}

.rating-card {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.rating-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

.rating-logo.tripadvisor { background-color: #ffb84d; }
.rating-logo.google { background-color: #ffb84d; font-weight: bold; color: white; }

.rating-info .score {
    font-size: 1.2rem;
    font-weight: bold;
}

.stars {
    color: #ffb84d;
    margin-left: 5px;
}

.rating-info a {
    font-size: 0.85rem;
    color: #4a5d23;
    text-decoration: underline;
}

/* Responsive: Stack columns on mobile */
@media (max-width: 900px) {
    .page-container {
        flex-direction: column-reverse;
    }
    .sidebar, .form-container {
        width: 100%;
        box-sizing: border-box;
    }
}
/* Form Container (Left Side) */
.form-container {
    background-color: var(--olive);
    width: 100%;
    max-width: 600px;
    padding: 40px;
      flex: 2; /* Takes up 2/3 of space */
    border-radius: 4px;
}

h1 { font-size: 1.6rem; margin-bottom: 5px; letter-spacing: 1px; }
.required-note { font-size: 0.8rem; margin-bottom: 30px; opacity: 0.8; }
h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }

.q-label { font-weight: bold; display: block; margin-top: 25px; }
.sub-label { font-size: 0.85rem; margin-bottom: 15px; opacity: 0.9; }

/* Checkboxes & Radios */
.checkbox-grid, .radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.custom-checkbox, .custom-radio {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

input[type="checkbox"], input[type="radio"] { margin-right: 10px; accent-color: var(--orange); width: 18px; height: 18px; }

/* Sliders */
.range-container { margin-bottom: 30px; position: relative; }
.range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--light-grey);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--orange);
    border: 3px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
}

/* Date Input */
.date-input-wrapper {
    position: relative;
    background: var(--light-grey);
    border-radius: 2px;
}

.date-input-wrapper input {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 1rem;
}

.date-input-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a02b2b; /* Red calendar icon like image */
}

/* Submit */
.submit-btn {
    background-color: var(--orange);
    color: var(--olive);
    border: none;
    padding: 20px;
    width: 100%;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 30px;
    text-transform: uppercase;
}

.submit-btn:hover { background-color: #f7b243; }
/* Base Styles */
body {
    background-color: #4a5d23; /* Dark olive green */
    font-family: 'Arial', sans-serif;
    color: white;
    margin: 0;
    padding: 20px;
}

section {
    max-width: 600px;
    margin: 0 auto 40px auto;
}

h3 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Labels */
.sub-label, .field-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

/* Form Controls */
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    background-color: #ccd5c0; /* Light grey/beige */
    border: 1px solid #aeb8a2;
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

textarea {
    height: 150px;
    resize: none;
}

/* Flex Layouts */
.traveller-flex, .input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.input-col {
    flex: 1;
}

/* Stepper Component (+ / - buttons) */
.stepper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stepper button {
    background-color: #ffb84d; /* Yellow/Orange */
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stepper input {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 30px;
    text-align: center;
    outline: none;
}

/* Hide arrows in number input */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Age Selects Column */
.age-selects {
    flex: 1;
}

/* Newsletter Checkbox */
.newsletter-opt {
    display: flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.4;
    cursor: pointer;
    margin-top: 20px;
}

.newsletter-opt input {
    margin-right: 10px;
    margin-top: 3px;
}

/* Submit Button */
button[type="submit"], .submit-btn {
    width: 100%;
    background-color: #ffb84d;
    color: #4a5d23;
    border: none;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    font-size: 14px;
}

button[type="submit"]:hover {
    background-color: #ffa726;
}

/* Footer Links */
.footer-text {
    font-size: 0.75rem;
    margin-top: 15px;
    line-height: 1.5;
}

.footer-text a {
    color: white;
    text-decoration: underline;
}

