/* ==================================================
   UnitechService — Ultra Modern UI (No logic change)
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg-main: #030712;
  --bg-glass: rgba(255,255,255,0.06);
  --border-glass: rgba(255,255,255,0.14);
  --primary: #3b82f6;
  --primary-glow: rgba(59,130,246,0.55);
  --accent: #22c55e;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
}

/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 15% 20%, #0b1c3d, transparent 45%),
    radial-gradient(circle at 85% 80%, #020617, transparent 45%),
    var(--bg-main);
  color: var(--text-main);
  display: flex;
  overflow: auto;
}

/* LAYOUT */
.column {
  overflow-x: visible;
  overflow-y: auto;
  padding: 20px;
}
.side-column {
  width: 25%;
}

.center-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* GLASS PANELS */
.side-column,
.form-container {
  background: var(--bg-glass);
  backdrop-filter: blur(22px);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
}

/* IMAGE */
#partImage {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border-glass);
  box-shadow:
    0 0 40px rgba(0,0,0,0.6),
    0 0 35px var(--primary-glow);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

#partImage:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 55px rgba(0,0,0,0.8),
    0 0 55px var(--primary-glow);
}

/* HEADINGS */
h1 {
  margin: 22px 0;
  font-size: 2.4rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: white;

}

h2 {
  margin-top: 28px;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 10px;
}

/* FORM */
.form-container {
  width: 86%;
  padding: 38px;
}

label {
  font-size: 0.7rem;
  letter-spacing: 1.6px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* SELECTS */
select {
  width: 100%;
  padding: 17px;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

select:hover {
  background: rgba(255,255,255,0.12);
}

select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.35);
}

/* INFO */
.info-label {
  margin: 20px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* PRICES */
.price-container {
  display: flex;
  gap: 20px;
}

.price-box {
  flex: 1;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.12), rgba(255,255,255,0.02));
  border: 1px solid var(--border-glass);
  text-align: center;
}

.price-box h3 {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.price-value {
  font-size: 34px;
  font-weight: 900;
}

.budget-value {
  color: #facc15;
}

/* BUTTON */
#orderButton {
  margin-top: 30px;
  width: 100%;
  padding: 17px;
  border-radius: 18px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e14;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#orderButton:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(34,197,94,0.5);
}

#orderButton:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* LISTS */
ul {
  padding-left: 18px;
}

ul li {
  margin-bottom: 10px;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 900px) {
  body {
    flex-direction: column;
    overflow-y: auto;
  }

  .column {
    width: 100%;
    padding: 32px;
  }

  .form-container {
    width: 96%;
    padding: 24px;
  }

  h1 {
    font-size: 1.7rem;
  }
}

/* SELECT DARK FIX */
select,
option {
  background-color: #030712;
  color: #e5e7eb;
}

option:hover {
  background-color: #111827;
}
/* ==========================
   MICRO ANIMATIONS
   ========================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-container,
.side-column {
  animation: fadeUp 0.6s ease forwards;
}

.price-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.price-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

select,
#orderButton {
  transition: transform 0.2s ease;
}

select:active {
  transform: scale(0.985);
}

/* ==========================
   THEME TOGGLE BUTTON
   ========================== */

#themeToggle {
  position: fixed;
  top: 18px;
  right: 22px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  color: white;
  cursor: pointer;
  font-size: 1rem;
  z-index: 9999;
  transition: all 0.25s ease;
}

#themeToggle:hover {
  box-shadow: 0 0 25px var(--primary-glow);
}

/* ==========================
   LIGHT MODE
   ========================== */

body.light {
  --bg-main: #f8fafc;
  --bg-glass: rgba(255,255,255,0.85);
  --border-glass: rgba(0,0,0,0.1);
  --text-main: #020617;
  --text-muted: #475569;
}

body.light a {
  color: #2563eb;
}

body.light .budget-value {
  color: #ca8a04;
}

select:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

#orderButton:not(:disabled)::after {
  content: " →";
}

/* =====================================
   FINAL TEXT DEPTH — STRONG & CLEAR
   ===================================== */

/* 🔥 H1 — STRONG EMBOSSED (RAISED) */
h1 {
  color: #f8fafc;
  text-shadow:
    -2px -2px 3px rgba(255, 255, 255, 0.45),
     3px  3px 6px rgba(0, 0, 0, 0.95);
}

/* 🕳️ ALL OTHER TEXT — STRONG DEBOSSED (ENGRAVED) */
h2, h3,
label,
.info-label,
p,
li,
span {
  color: #9ca3af;
  text-shadow:
     2px  2px 3px rgba(0, 0, 0, 0.95),
    -2px -2px 2px rgba(255, 255, 255, 0.08);
}

h1:hover {
  text-shadow:
    -1px -1px 2px rgba(255,255,255,0.3),
     2px  2px 4px rgba(0,0,0,0.9);
}

label:hover,
li:hover {
  text-shadow:
     1px  1px 2px rgba(0,0,0,0.9),
    -1px -1px 1px rgba(255,255,255,0.05);
}

/* ==========================
   ORDER ACTION BUTTONS
   ========================== */

.order-actions {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.order-actions button {
  flex: 1;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 16px;
}

#sendRepairButton {
  background: linear-gradient(135deg, #1e293b, #020617);
  border: 1px solid rgba(255,255,255,0.15);
}

#sendRepairButton:hover:not(:disabled) {
  box-shadow: 0 0 25px rgba(34,197,94,0.45);
}

/* ==========================
   ORDER BUTTON TEXT STYLE FIX
   ========================== */

/* PRIMARY — Order visit (GREEN, BIG TEXT) */
#orderVisitButton {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #052e14;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border: none;
}

#orderVisitButton:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(34,197,94,0.55);
}

/* SECONDARY — Send for repair (GREEN TEXT, DARK BUTTON) */
#sendRepairButton {
  background: linear-gradient(135deg, #020617, #020617);
  color: #22c55e;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border: 1px solid rgba(34,197,94,0.35);
}

#sendRepairButton:hover:not(:disabled) {
  box-shadow: 0 0 30px rgba(34,197,94,0.45);
  transform: translateY(-2px);
}

/* DISABLED STATE (BOTH) */
#orderVisitButton:disabled,
#sendRepairButton:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ==========================
   CUSTOM DROPDOWN UI
   ========================== */

.custom-dropdown {
  position: relative;
  overflow: visible;
}

.custom-dropdown select {
  display: none;
}

/* Display */
.dropdown-display {
  padding: 17px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-display:hover {
  background: rgba(255,255,255,0.12);
}

/* Arrow */
.dropdown-display .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: rotate(45deg);
}

/* Dropdown list */
.dropdown-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: rgba(3,7,18,0.95);
  border-radius: 14px;
  z-index: 10000;
  pointer-events: auto;
  display: none;
}

/* Item */
.dropdown-list li {
  padding: 14px 18px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dropdown-list li:hover {
  background: rgba(255,255,255,0.08);
}

/* ==========================
   DROPDOWN ARROW → RIGHT SIDE
   ========================== */

.dropdown-display {
  position: relative;
  padding-right: 44px; /* ადგილი ისრისთვის */
}

.dropdown-display .arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.column h1,
.column h2,
.column p,
.column label {
  margin-left: 0;
  margin-right: 0;
}

.column h1 {
  margin-bottom: 18px;
}

.column h2,
.column label {
  margin-bottom: 10px;
}

.column p {
  margin-bottom: 14px;
}

.columns {
  gap: 32px;
}
.column h2:first-child {
  margin-top: 0;
}

.column h1:first-child {
  margin-top: 0;
}
/* ==========================
   MOBILE FIX — ORDER BUTTONS
   ========================== */

@media (max-width: 768px) {
  .order-actions {
    flex-direction: column;
  }

  .order-actions button {
    width: 100%;
  }
}

.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.booking-content {
  background: #111827;
  padding: 25px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
}

.booking-content input,
.booking-content select {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
}

.booking-buttons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.booking-buttons button {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
