/* ============================================
   Destination Weddings - Group Quote Request
   Brand colors:
     Primary: #bc295f (rose/maroon)
     Dark:    #1a1a1a
     Body:    #333
     Light BG:#f8f6f4
     White:   #fff
   Font: Work Sans
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', Arial, Helvetica, sans-serif;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.6;
    font-size: 15px;
}

a {
    color: #bc295f;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* ---- Promo Bar ---- */
.promo-bar {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    letter-spacing: 0.3px;
}
.promo-bar strong {
    color: #e8a0b8;
}

/* ---- Header ---- */
.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo-link {
    display: flex;
    align-items: center;
}
.logo {
    height: 44px;
    width: auto;
}
.header-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}
.header-nav a {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}
.header-nav a:hover {
    color: #bc295f;
    text-decoration: none;
}

/* ---- Main Content ---- */
.main-content {
    background: #f8f6f4;
    min-height: calc(100vh - 200px);
    padding: 40px 24px 60px;
}
.container {
    max-width: 900px;
    margin: 0 auto;
}

/* ---- Page Header ---- */
.page-header {
    text-align: center;
    margin-bottom: 36px;
}
.page-header h1 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}
.how-it-works {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13.5px;
    color: #555;
}
.step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #bc295f;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
}
.step-arrow {
    color: #ccc;
    font-size: 16px;
}

/* ---- Form Sections ---- */
.form-section {
    background: #fff;
    border-radius: 8px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.section-header {
    background: #bc295f;
    color: #fff;
    margin: -28px -32px 20px -32px;
    padding: 12px 32px;
    border-radius: 8px 8px 0 0;
}
.section-header h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}
.section-desc {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 18px;
}
.privacy-note {
    font-size: 13px;
    color: #2e8b57;
    margin-bottom: 18px;
    font-weight: 500;
}

/* ---- Form Fields ---- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}
.field-group {
    margin-bottom: 16px;
}
.field-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.required {
    color: #bc295f;
    font-weight: 400;
    font-size: 12px;
}
.optional {
    color: #999;
    font-weight: 400;
    font-size: 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: 'Work Sans', Arial, sans-serif;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: #333;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
input:focus,
select:focus,
textarea:focus {
    border-color: #bc295f;
    box-shadow: 0 0 0 3px rgba(188, 41, 95, 0.1);
}
input::placeholder,
textarea::placeholder {
    color: #aaa;
}

textarea {
    resize: vertical;
}

/* ---- Destination Rows ---- */
.destination-row {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 16px;
    margin-bottom: 12px;
    align-items: end;
}
.autocomplete-wrapper {
    position: relative;
}

/* ---- Suggestions Dropdown ---- */
.suggestions-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    margin-top: 2px;
    overflow: hidden;
    max-height: 260px;
    overflow-y: auto;
}
.suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    border-top: 1px solid #f3f4f6;
    line-height: 1.4;
    color: #333;
    transition: background-color 0.1s;
}
.suggestion-item:first-child {
    border-top: none;
}
.suggestion-item:hover,
.suggestion-item.active {
    background-color: #fdf2f6;
}
.suggestion-item strong {
    font-weight: 700;
    color: #bc295f;
}

/* ---- Add City Button ---- */
.add-city-btn {
    background: none;
    border: none;
    color: #bc295f;
    font-family: 'Work Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s;
}
.add-city-btn:hover {
    color: #8a1d45;
    text-decoration: underline;
}

/* ---- Budget Slider ---- */
.budget-display {
    margin-bottom: 8px;
}
.budget-range {
    font-size: 16px;
    font-weight: 600;
    color: #bc295f;
    background: #fdf2f6;
    padding: 6px 16px;
    border-radius: 4px;
    display: inline-block;
}
.budget-slider-wrapper {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}
.budget-slider-wrapper input[type="range"] {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
}
.budget-slider-wrapper input[type="range"]:focus {
    box-shadow: none;
}
.budget-slider-wrapper input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #bc295f;
    cursor: pointer;
    pointer-events: all;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.budget-slider-wrapper input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
}
.budget-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* ---- Toggle Buttons ---- */
.toggle-group {
    display: flex;
    gap: 0;
}
.toggle-btn {
    padding: 8px 24px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    border: 1px solid #d1d5db;
    background: #fff;
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
    font-weight: 500;
}
.toggle-btn:first-child {
    border-radius: 6px 0 0 6px;
}
.toggle-btn:last-child {
    border-radius: 0 6px 6px 0;
    border-left: none;
}
.toggle-btn.active {
    background: #bc295f;
    color: #fff;
    border-color: #bc295f;
}

/* ---- Checkbox ---- */
.checkbox-group {
    margin-top: 4px;
}
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 400 !important;
    font-size: 13px !important;
    color: #555 !important;
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #bc295f;
    cursor: pointer;
}

/* ---- Form Footer / Submit ---- */
.form-footer {
    text-align: center;
    padding: 24px 0 0;
}
.terms-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}
.submit-btn {
    display: inline-block;
    background: #bc295f;
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 52px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background-color 0.2s, transform 0.1s;
    box-shadow: 0 2px 8px rgba(188, 41, 95, 0.3);
}
.submit-btn:hover {
    background: #a32352;
}
.submit-btn:active {
    transform: scale(0.98);
}

/* ---- Footer ---- */
.site-footer {
    background: #1a1a1a;
    color: #ccc;
    text-align: center;
    padding: 24px 16px;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
}
.footer-links a:hover {
    color: #fff;
}
.footer-links span {
    color: #555;
}
.copyright {
    font-size: 12px;
    color: #777;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .destination-row {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-section {
        padding: 20px 18px;
    }
    .section-header {
        margin: -20px -18px 16px -18px;
        padding: 10px 18px;
    }
    .how-it-works {
        flex-direction: column;
        gap: 6px;
    }
    .step-arrow {
        display: none;
    }
    .page-header h1 {
        font-size: 1.5rem;
    }
}


/* ---- Room Details: trigger button + summary ---- */
.provide-details-btn {
    display: none;
    background: #fff;
    border: 1px solid #bc295f;
    color: #bc295f;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: background 0.15s ease;
}
.provide-details-btn.visible {
    display: inline-block;
}
.provide-details-btn:hover {
    background: #fdf0f5;
}
.room-details-summary {
    margin-top: 8px;
    font-size: 13px;
    color: #555;
    font-style: italic;
}
.room-details-summary:empty {
    display: none;
}

/* ---- Room Details: modal ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}
.modal-overlay.open {
    display: flex;
}
.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 28px 32px 24px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}
.modal-close:hover {
    color: #1a1a1a;
}
.modal-content h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}
.optional-tag {
    color: #888;
    font-weight: 400;
    font-size: 16px;
}

/* ---- Room Details: table ---- */
.room-details-table {
    border-top: 1px solid #eee;
}
.rd-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.rd-header-row {
    font-weight: 600;
    color: #555;
    font-size: 13px;
}
.rd-footer-row {
    font-weight: 600;
    background: #fafafa;
}
.rd-col-type {
    width: 200px;
    flex-shrink: 0;
}
.rd-col-type select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}
.rd-dates {
    display: flex;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.rd-date,
.rd-total {
    flex: 1;
    min-width: 64px;
    text-align: center;
}
.rd-date-md {
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
}
.rd-date-dow {
    font-size: 12px;
    color: #888;
}
.rd-total {
    padding: 6px 0;
}
.rd-qty {
    flex: 1;
    min-width: 64px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-align: center;
    font-family: inherit;
    font-size: 14px;
}
.rd-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
    color: #888;
}
.rd-remove:hover {
    background: #fee;
    color: #c33;
    border-color: #c33;
}

/* ---- Room Details: actions ---- */
.add-room-type-btn {
    background: #fafafa;
    border: 1px dashed #ccc;
    color: #555;
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 16px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}
.add-room-type-btn:hover {
    background: #f0f0f0;
    border-color: #888;
    color: #1a1a1a;
}
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}
.modal-cancel-btn {
    background: #fff;
    border: 1px solid #ccc;
    color: #555;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}
.modal-cancel-btn:hover {
    background: #f5f5f5;
}
.modal-save-btn {
    background: #bc295f;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}
.modal-save-btn:hover {
    background: #a32152;
}
.modal-save-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
