/* Svalbergs Bilteknik – boka.css */

main { max-width: 1200px; margin: 0 auto; padding: 5rem 2.5rem; }

.booking-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start; }

.booking-info h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 2rem; text-transform: uppercase; line-height: 1; margin-bottom: 1.2rem; }
.booking-info p { color: var(--tungsten); font-size: 0.88rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-items { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: center; gap: 0.9rem; font-size: 0.88rem; }
.cicon { width: 2rem; height: 2rem; background: var(--ice-dim); border: 1px solid var(--ice-border); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cicon svg { width: 1rem; height: 1rem; stroke: var(--ice); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.contact-item .label { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); display: block; }
.contact-item .value { color: var(--white); font-weight: 500; }

.response-note { background: var(--ice-dim); border: 1px solid var(--ice-border); border-radius: 3px; padding: 1rem 1.2rem; font-size: 0.82rem; color: var(--tungsten); line-height: 1.7; }
.response-note strong { color: var(--ice); font-weight: 600; }

.steps { margin-top: 2.5rem; }
.steps h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 1rem; }
.step-row { display: flex; gap: 0.9rem; align-items: flex-start; padding: 0.9rem 0; border-bottom: 1px solid var(--divider); }
.step-row:last-child { border-bottom: none; }
.step-num { width: 1.6rem; height: 1.6rem; border-radius: 50%; border: 1px solid var(--ice-border); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; color: var(--ice); flex-shrink: 0; margin-top: 0.05rem; }
.step-row p { font-size: 0.84rem; color: var(--tungsten); line-height: 1.6; }
.step-row strong { color: var(--white); font-weight: 500; display: block; margin-bottom: 0.1rem; }

/* FAQ */
.faq-section { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--divider); }
.faq-item { border-bottom: 1px solid var(--divider); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 500; text-align: left; padding: 1.1rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; }
.faq-q:hover { color: var(--ice); }
.faq-icon { font-size: 1.3rem; color: var(--ice); flex-shrink: 0; line-height: 1; transition: transform 0.25s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.2rem; }
.faq-a.open { display: block; }
.faq-a p { font-size: 0.86rem; color: var(--tungsten); line-height: 1.75; }

/* Booking form */
.booking-form { background: var(--steel); border: 1px solid var(--divider); border-radius: 4px; padding: 2.5rem; }
.booking-form h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.6rem; text-transform: uppercase; margin-bottom: 1.8rem; }

.form-section { margin-bottom: 1.8rem; }
.form-section-title { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ice); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--divider); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.field-row.single { grid-template-columns: 1fr; }

label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.35rem; text-transform: uppercase; }

input, textarea, select {
  width: 100%; background: var(--panel); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; color: var(--white); font-family: 'Inter', sans-serif;
  font-size: 0.88rem; padding: 0.8rem 1rem; outline: none; transition: border-color 0.2s;
}
input::placeholder, textarea::placeholder { color: var(--muted); }
input:focus, textarea:focus, select:focus { border-color: var(--ice-border); }
textarea { resize: vertical; min-height: 110px; }
select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236E7380' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
select option { background: var(--panel); }

/* Plate field */
.plate-wrap { display: flex; align-items: center; background: var(--panel); border: 1px solid rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; transition: border-color 0.2s; }
.plate-wrap:focus-within { border-color: var(--ice-border); }
.plate-badge { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 0 0.75rem; border-right: 1px solid rgba(255,255,255,0.08); align-self: stretch; background: rgba(61,223,255,0.06); flex-shrink: 0; }
.plate-badge-s { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1rem; color: var(--ice); letter-spacing: 0.05em; line-height: 1; }
.plate-badge-label { font-size: 0.48rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ice); opacity: 0.5; line-height: 1; }
.plate-input { background: transparent !important; border: none !important; border-radius: 0 !important; color: var(--white) !important; font-family: 'Barlow Condensed', sans-serif !important; font-weight: 700 !important; font-size: 1.15rem !important; letter-spacing: 0.25em !important; padding: 0.8rem 1rem !important; flex: 1; text-transform: uppercase; outline: none !important; }
.plate-input::placeholder { color: var(--muted) !important; letter-spacing: 0.15em !important; font-weight: 600 !important; }

.plate-lookup-btn { margin-top: 0.5rem; width: 100%; background: var(--ice-dim); border: 1px solid var(--ice-border); border-radius: 3px; padding: 0.65rem 1rem; cursor: pointer; color: var(--ice); font-family: 'Inter', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 0.5rem; white-space: nowrap; transition: background 0.15s, opacity 0.15s; }
.plate-lookup-btn:hover { background: rgba(61,223,255,0.2); }
.plate-lookup-btn:disabled { opacity: 0.3; cursor: default; }
.plate-lookup-btn svg { width: 0.9rem; height: 0.9rem; flex-shrink: 0; }

.plate-result { display: none; margin-top: 0.6rem; background: var(--ice-dim); border: 1px solid var(--ice-border); border-radius: 3px; padding: 0.9rem 1rem; font-size: 0.82rem; animation: fadeSlide 0.2s ease; }
.plate-result.show { display: block; }
.plate-result.error { background: rgba(255,80,80,0.08); border-color: rgba(255,80,80,0.3); }
.plate-result-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; color: var(--white); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
.plate-result-meta { color: var(--tungsten); line-height: 1.7; font-size: 0.82rem; }
.plate-result-link { display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.6rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ice); text-decoration: none; }
.plate-result-link:hover { text-decoration: underline; }
.plate-result-link::after { content: '↗'; }

/* Checkboxes */
.checkbox-group { display: flex; flex-direction: column; gap: 0.6rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.7rem; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 1rem; height: 1rem; accent-color: var(--ice); cursor: pointer; flex-shrink: 0; }
.checkbox-item span { font-size: 0.85rem; color: var(--tungsten); }

.form-submit { width: 100%; padding: 1rem; background: var(--ice); border: none; border-radius: 2px; font-family: 'Inter', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--carbon); cursor: pointer; transition: opacity 0.2s; margin-top: 0.5rem; }
.form-submit:hover { opacity: 0.85; }

.success-msg { display: none; background: var(--green-dim); border: 1px solid var(--green-border); border-radius: 3px; padding: 1.2rem 1.5rem; text-align: center; }
.success-msg.show { display: block; }
.success-msg h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.3rem; text-transform: uppercase; color: var(--green); margin-bottom: 0.4rem; }
.success-msg p { font-size: 0.85rem; color: var(--tungsten); }

@keyframes fadeSlide { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  main { padding: 3.5rem 1.5rem; }
  .booking-grid { grid-template-columns: 1fr; gap: 3rem; }
  .field-row { grid-template-columns: 1fr; }
}
