/home3/bmscom/.trash/css.7/style.css
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Montserrat:wght@400;500;600&display=swap');

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

:root {
    --gold: #c9a962;
    --gold-dim: #b89b58;
    --navy: #0b0f1a;
    --charcoal: #1a1f2e;
    --text-dark: #2a2a2a;
    --text-light: #666;
    --border: #e0e0e0;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --success: #4caf50;
    --error: #f44336;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f0f2f5;
    color: var(--text-dark);
    line-height: 1.6;
    padding: 2rem;
}

.form-container {
    max-width: 1400px;
    /* Wider to accommodate images */
    margin: 0 auto;
    background: var(--white);
    border-top: 5px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 3rem;
}

/* Header */
.header {
    text-align: center;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--navy);
    margin: 1rem auto 0;
}

.header h1 {
    font-family: 'Playfair Display', serif;
    color: var(--navy);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.header p {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

/* Sections */
.section {
    margin-bottom: 4rem;
    background: var(--white);
    page-break-inside: avoid;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--navy);
    padding-right: 1.5rem;
    background: var(--white);
    z-index: 1;
    font-weight: 600;
}

.section-line {
    flex-grow: 1;
    height: 1px;
    background: var(--border);
}

/* Visual Measurement Grid */
.visual-guide-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    /* Content | Image */
    gap: 3rem;
    background: var(--bg-light);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.guide-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.guide-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border: 1px solid var(--border);
    background: white;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.guide-caption {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* Inputs & Forms */
.customer-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--navy);
    color: white;
    border-radius: 4px;
}

.customer-info .form-group label {
    color: var(--gold);
}

.customer-info .form-group input {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.measurements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.measurement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border);
    transition: all 0.2s ease;
}

.measurement-item:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}

.measurement-label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.measure-badge {
    background: var(--navy);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 2px;
}

.input-wrapper {
    position: relative;
    width: 120px;
}

.measurement-item input {
    width: 100%;
    border: 1px solid var(--border);
    padding: 0.5rem;
    text-align: right;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-right: 2.5rem;
    /* Space for unit */
}

.unit-label {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 0.8rem;
    pointer-events: none;
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-title {
    font-weight: 700;
    color: var(--navy);
    display: block;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.25rem;
}

.checkbox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
}

.custom-checkbox input {
    margin-right: 0.5rem;
    accent-color: var(--gold);
    width: 18px;
    height: 18px;
}

.input-line {
    border: none;
    border-bottom: 1px solid var(--text-dark);
    padding: 0.25rem 0.5rem;
    font-family: inherit;
    width: 150px;
}

.notes-area {
    width: 100%;
    min-height: 100px;
    border: 1px solid var(--border);
    padding: 1rem;
    background: #fffdf5;
    /* Slight gold tint */
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
}

/* Submit Section */
.submit-section {
    text-align: center;
    padding: 3rem;
    margin-top: 3rem;
    background: var(--bg-light);
    border-top: 2px solid var(--gold);
}

.submit-btn {
    background: var(--navy);
    color: var(--white);
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: 2px solid var(--navy);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s all;
}

.submit-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Status Messages */
.status-message {
    padding: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    border-radius: 4px;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media print {
    body {
        padding: 0;
        background: white;
    }

    .form-container {
        border: none;
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .submit-section {
        display: none;
    }

    .visual-guide-container {
        page-break-inside: avoid;
        border: 1px solid #000;
    }

    .customer-info {
        background: #eee;
        color: black;
        border: 1px solid #ccc;
    }

    .customer-info .form-group input {
        border-bottom-color: #000;
        color: black;
    }

    .customer-info .form-group label {
        color: black;
    }
}

@media (max-width: 900px) {
    .visual-guide-container {
        grid-template-columns: 1fr;
    }

    .guide-image-col {
        order: -1;
        margin-bottom: 2rem;
    }

    .customer-info,
    .options-grid,
    .measurements-grid {
        grid-template-columns: 1fr;
    }
}