/* WARRANTY PAGE STYLES */

.warranty-main {
    background-color: #060b13;
    color: #8a9bb2;
    font-family: 'Inter', 'Roboto', sans-serif;
    min-height: 100vh;
    padding-bottom: 80px;
}

.warranty-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 40px;
}

/* Utilities */
.cyan { color: #00e5ff; }
.yellow { color: #ffd700; }
.required { color: #ff3333; }

/* Header */
.warranty-title {
    color: #ffffff;
    font-size: 54px;
    font-weight: 800;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.warranty-subtitle {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Coverage Cards */
.warranty-coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.coverage-card {
    background-color: #0d131f;
    border: 1px solid #1a2436;
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.coverage-card.highlight {
    border-color: #00e5ff;
    background-color: #09101b;
}

.coverage-card.full-width {
    margin-bottom: 60px;
}

.coverage-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #61748d;
}

.coverage-label.cyan {
    color: #00e5ff;
}

.coverage-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
}

.coverage-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    border-top: 1px solid #1a2436;
    padding-top: 30px;
}

.form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.section-title {
    color: #4a6583;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 25px;
}

.section-desc {
    font-size: 14px;
    margin-bottom: 20px;
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    background-color: #0d131f;
    border: 1px solid #1a2436;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00e5ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #3b4b61;
}

.date-input-wrapper input {
    width: 100%;
    color: #ffffff;
}

.date-input-wrapper input::-webkit-calendar-picker-indicator {
    filter: invert(0.5) sepia(1) saturate(1) hue-rotate(180deg);
    cursor: pointer;
}

.field-note {
    font-size: 12px;
    margin: 10px 0 0;
    color: #61748d;
    line-height: 1.5;
}

/* File Upload */
.file-upload-box {
    border: 1px dashed #3b4b61;
    background-color: #0d131f;
    padding: 30px;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s;
}

.file-upload-box:hover {
    border-color: #c5d2e0;
}

.file-input {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #c5d2e0;
    font-size: 14px;
    pointer-events: none;
}

.upload-icon {
    width: 20px;
    height: 20px;
}

.file-preview-list {
    margin-top: 15px;
}

.file-preview-item {
    font-size: 13px;
    color: #00e5ff;
    margin-bottom: 5px;
}

/* Submit Button */
.warranty-submit {
    width: 100%;
    background-color: #00e5ff;
    color: #060b13;
    border: none;
    padding: 20px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.1em;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s;
    margin-top: 20px;
}

.warranty-submit:hover {
    background-color: #00d5e5;
}

/* Responsive */
@media (max-width: 768px) {
    .warranty-coverage-grid, .form-row {
        grid-template-columns: 1fr;
    }
}
