/* Akasya Lojistik — Online Teklif Formu Stilleri
   Tüm stiller .akasya-quote-wrap altında kapsanmıştır.
   WordPress temasıyla çakışmaz.
*/

/* Google Fonts (zaten yüklüyse ikinci kez yüklenmez) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ------------------------------------------------------------------ */
/*  Tasarım değişkenleri (CSS custom properties)                        */
/* ------------------------------------------------------------------ */
.akasya-quote-wrap {
	--aq-brand:     #0f3a2a;
	--aq-brand-800: #0f3a2a;
	--aq-brand-700: #14513a;
	--aq-brand-600: #1d6b4a;
	--aq-brand-500: #2a8459;
	--aq-brand-400: #3f9b5b;
	--aq-brand-300: #7fc28a;
	--aq-brand-100: #d8ecd8;
	--aq-brand-50:  #ecf5ec;

	--aq-paper:     #ffffff;
	--aq-bg:        #faf8f3;
	--aq-bg-2:      #f3efe6;
	--aq-ink:       #0c1612;
	--aq-ink-2:     #1d2a23;
	--aq-muted:     #5b6a62;
	--aq-muted-2:   #8a9690;
	--aq-line:      #e3ddcf;
	--aq-line-2:    #d4ccba;

	--aq-font:      "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
	--aq-mono:      "JetBrains Mono", ui-monospace, "Menlo", monospace;
	--aq-r:         4px;
	--aq-r-lg:      10px;
	--aq-shadow:    0 4px 14px rgba(15,58,42,.07), 0 1px 3px rgba(15,58,42,.04);

	font-family: var(--aq-font);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	box-sizing: border-box;
}

.akasya-quote-wrap *, .akasya-quote-wrap *::before, .akasya-quote-wrap *::after {
	box-sizing: inherit;
}

/* ------------------------------------------------------------------ */
/*  Temel kart düzeni                                                   */
/* ------------------------------------------------------------------ */
.aq-quote {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	border-radius: var(--aq-r-lg);
	overflow: hidden;
	border: 1px solid var(--aq-line);
	background: var(--aq-paper);
	box-shadow: var(--aq-shadow);
}

@media (max-width: 900px) {
	.aq-quote { grid-template-columns: 1fr; }
}

/* Sol panel */
.aq-panel {
	padding: clamp(28px, 4vw, 48px) !important;
	background: #ffffff !important;
}

/* Sağ panel (koyu, özet) */
.aq-aside {
	background: #0f3a2a !important;
	color: #e7efe9 !important;
	padding: clamp(28px, 4vw, 48px) !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 24px !important;
}

/* ------------------------------------------------------------------ */
/*  Adım çubuğu                                                         */
/* ------------------------------------------------------------------ */
.aq-steps {
	display: flex;
	gap: 8px;
	margin-bottom: 28px;
}
.aq-steps > div {
	flex: 1;
	height: 3px;
	background: var(--aq-line);
	border-radius: 99px;
	transition: background .25s;
}
.aq-steps > div[data-state="active"] { background: var(--aq-brand-600); }
.aq-steps > div[data-state="done"]   { background: var(--aq-brand-400); }

.aq-step-label {
	font-family: var(--aq-mono);
	font-size: 11px;
	color: var(--aq-muted);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

/* ------------------------------------------------------------------ */
/*  Başlık                                                              */
/* ------------------------------------------------------------------ */
.aq-h3 {
	font-family: var(--aq-font) !important;
	font-size: clamp(20px, 2.2vw, 28px) !important;
	font-weight: 600 !important;
	letter-spacing: -.02em !important;
	line-height: 1.1 !important;
	color: #0c1612 !important;
	margin: 0 0 22px !important;
}

/* ------------------------------------------------------------------ */
/*  Butonlar                                                            */
/* ------------------------------------------------------------------ */
.aq-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: var(--aq-r);
	font-family: var(--aq-font);
	font-weight: 600;
	font-size: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s, background .2s, border-color .2s, opacity .2s;
	white-space: nowrap;
	line-height: 1.2;
}
.aq-btn:hover { transform: translateY(-1px); }
.aq-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.aq-btn--primary {
	background: #0f3a2a !important;
	color: #ffffff !important;
}
.aq-btn--primary:hover:not(:disabled) { background: #14513a !important; }

.aq-btn--ghost {
	background: transparent !important;
	color: #0c1612 !important;
	border-color: #d4ccba !important;
}
.aq-btn--ghost:hover:not(:disabled) { border-color: #0c1612 !important; }

/* ------------------------------------------------------------------ */
/*  Adım 0 — Hizmet seçimi                                             */
/* ------------------------------------------------------------------ */
.aq-choice-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}
@media (max-width: 640px) {
	.aq-choice-grid { grid-template-columns: 1fr 1fr; }
}

.aq-choice {
	border: 1px solid var(--aq-line-2) !important;
	border-radius: 6px !important;
	padding: 14px !important;
	text-align: left !important;
	background: #ffffff !important;
	cursor: pointer !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 5px !important;
	transition: border-color .2s, background .2s !important;
	font-family: var(--aq-font) !important;
	box-shadow: none !important;
}
.aq-choice:hover { border-color: var(--aq-brand-600) !important; }
.aq-choice[data-active="true"] {
	border-color: var(--aq-brand-700) !important;
	background: #ecf5ec !important;
}
.aq-choice[data-active="false"] {
	background: #ffffff !important;
}

.aq-choice-ic {
	width: 28px !important; height: 28px !important;
	display: grid !important; place-items: center !important;
	color: #14513a !important;
	margin-bottom: 2px !important;
}
.aq-choice-ti { font-weight: 600 !important; font-size: 13px !important; color: #0c1612 !important; }
.aq-choice-su { font-size: 11px !important; color: #5b6a62 !important; font-family: var(--aq-mono) !important; }

/* ------------------------------------------------------------------ */
/*  Adım 1 — Güzergah & tarih                                          */
/* ------------------------------------------------------------------ */
.aq-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 16px;
}
.aq-field label {
	font-size: 11px;
	font-family: var(--aq-mono);
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--aq-muted);
}
.aq-field input,
.aq-field select,
.aq-field textarea {
	border: 1px solid #d4ccba !important;
	background: #ffffff !important;
	padding: 11px 13px !important;
	border-radius: 4px !important;
	font-family: var(--aq-font) !important;
	font-size: 14px !important;
	color: #0c1612 !important;
	transition: border-color .15s, box-shadow .15s !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	box-shadow: none !important;
}
.aq-field select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235b6a62' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}
.aq-field input:focus,
.aq-field select:focus,
.aq-field textarea:focus {
	outline: none !important;
	border-color: #1d6b4a !important;
	box-shadow: 0 0 0 3px rgba(29,107,74,.12) !important;
}
.aq-field textarea { resize: vertical; min-height: 80px; }

.aq-field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
@media (max-width: 580px) { .aq-field-row { grid-template-columns: 1fr; } }

.aq-dist-badge {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 13px !important;
	color: #14513a !important;
	font-family: var(--aq-mono) !important;
	background: #ecf5ec !important;
	border: 1px solid #d8ecd8 !important;
	border-radius: 4px !important;
	padding: 8px 14px !important;
	margin-bottom: 18px !important;
	min-height: 38px !important;
}
.aq-dist-badge:empty { display: none; }

/* ------------------------------------------------------------------ */
/*  Adım 2 — Eşya / Oda                                                */
/* ------------------------------------------------------------------ */
.aq-mode-toggle {
	display: flex;
	gap: 6px;
	background: var(--aq-bg-2);
	padding: 4px;
	border-radius: 6px;
	width: fit-content;
	margin-bottom: 18px;
}
.aq-mode-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 16px;
	border-radius: 4px;
	font-family: var(--aq-font);
	font-size: 13px;
	font-weight: 500;
	border: none;
	cursor: pointer;
	background: transparent;
	color: var(--aq-muted);
	transition: background .15s, color .15s;
}
.aq-mode-btn.active {
	background: var(--aq-brand-800);
	color: #fff;
}

/* Eşya bırakma alanı */
.aq-itemlist {
	border: 1.5px dashed #d4ccba !important;
	border-radius: 6px !important;
	padding: 16px !important;
	min-height: 120px !important;
	background: #faf8f3 !important;
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	align-content: flex-start !important;
	margin-bottom: 4px !important;
	transition: border-color .2s !important;
}
.aq-itemlist-empty {
	width: 100%;
	text-align: center;
	color: var(--aq-muted-2);
	padding: 28px 0;
	font-family: var(--aq-mono);
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}

/* Chip (seçili eşya) */
.aq-chip {
	background: var(--aq-paper);
	border: 1px solid var(--aq-line);
	border-radius: 999px;
	padding: 5px 8px 5px 13px;
	font-size: 13px;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--aq-ink);
}
.aq-chip-count {
	font-family: var(--aq-mono);
	font-size: 11px;
	color: var(--aq-muted);
}
.aq-chip-x {
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--aq-brand-50);
	color: var(--aq-brand-800);
	display: grid; place-items: center;
	font-size: 12px;
	cursor: pointer;
	border: none;
	padding: 0;
	line-height: 1;
	transition: background .15s;
	font-family: var(--aq-font);
}
.aq-chip-x:hover { background: var(--aq-brand-100); }

/* Palette (eklenebilir eşyalar) */
.aq-palette {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}
.aq-pal-chip {
	background: var(--aq-brand-50);
	border: 1px solid var(--aq-brand-100);
	border-radius: 999px;
	padding: 5px 12px;
	font-size: 12px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	color: var(--aq-brand-700);
	font-family: var(--aq-font);
	font-weight: 500;
	transition: background .15s, border-color .15s;
	user-select: none;
}
.aq-pal-chip:hover {
	background: var(--aq-brand-100);
	border-color: var(--aq-brand-300);
}

/* Oda sliders */
.aq-rooms { margin-bottom: 8px; }
.aq-room-row {
	display: grid;
	grid-template-columns: 120px 1fr 48px;
	align-items: center;
	gap: 14px;
	padding-block: 10px;
	border-bottom: 1px solid var(--aq-line);
}
.aq-room-row:last-child { border-bottom: none; }
.aq-room-row label { font-size: 13px; font-weight: 500; color: var(--aq-ink-2); }
.aq-room-range {
	-webkit-appearance: none;
	width: 100%;
	height: 4px;
	background: var(--aq-line);
	border-radius: 99px;
	outline: none;
}
.aq-room-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px; height: 20px;
	background: var(--aq-brand-700);
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.aq-room-range::-moz-range-thumb {
	width: 20px; height: 20px;
	background: var(--aq-brand-700);
	border-radius: 50%;
	cursor: pointer;
	border: none;
}
.aq-room-val {
	font-family: var(--aq-mono);
	font-size: 15px;
	font-weight: 600;
	text-align: right;
	color: var(--aq-brand-800);
}

/* Hacim rozeti */
.aq-vol-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--aq-brand-700);
	font-family: var(--aq-mono);
	margin-top: 14px;
}

/* ------------------------------------------------------------------ */
/*  Adım 3 — İletişim                                                   */
/* ------------------------------------------------------------------ */
.aq-error {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #b91c1c;
	border-radius: var(--aq-r);
	padding: 10px 14px;
	font-size: 13px;
	margin-top: 12px;
}

/* ------------------------------------------------------------------ */
/*  Navigasyon (geri / ileri / gönder)                                 */
/* ------------------------------------------------------------------ */
.aq-nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 28px;
	padding-top: 20px;
	border-top: 1px solid var(--aq-line);
	gap: 12px;
}

/* ------------------------------------------------------------------ */
/*  Yan panel — özet & fiyat                                           */
/* ------------------------------------------------------------------ */
.aq-summary {
	display: grid;
	gap: 12px;
}
.aq-summary > div {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,.1);
	font-size: 13px;
	gap: 8px;
}
.aq-sum-k {
	color: rgba(255,255,255,.55);
	font-family: var(--aq-mono);
	font-size: 11px;
	letter-spacing: .05em;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
}
.aq-sum-v {
	color: #fff;
	font-weight: 500;
	text-align: right;
}

.aq-est {
	margin-top: auto;
	padding-top: 22px;
	border-top: 1px solid rgba(255,255,255,.15);
}
.aq-est-k {
	font-family: var(--aq-mono);
	font-size: 11px;
	color: rgba(255,255,255,.55);
	letter-spacing: .08em;
	text-transform: uppercase;
	margin-bottom: 6px;
}
.aq-est-v {
	font-size: clamp(32px, 3.5vw, 44px);
	font-weight: 700;
	letter-spacing: -.02em;
	color: #fff;
	line-height: 1;
}
.aq-est-v small {
	font-size: 13px;
	color: rgba(255,255,255,.5);
	font-weight: 400;
	margin-left: 6px;
	font-family: var(--aq-mono);
	letter-spacing: .03em;
}
.aq-est-note {
	font-size: 11px;
	color: rgba(255,255,255,.35);
	font-family: var(--aq-mono);
	margin-top: 12px;
	letter-spacing: .04em;
}

/* ------------------------------------------------------------------ */
/*  Başarı ekranı                                                       */
/* ------------------------------------------------------------------ */
.aq-success-icon {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--aq-brand-50);
	color: var(--aq-brand-700);
	display: grid;
	place-items: center;
	margin: 0 auto 22px;
}

/* ------------------------------------------------------------------ */
/*  Yükleniyor animasyonu (submit sırasında)                            */
/* ------------------------------------------------------------------ */
.aq-btn--primary:disabled {
	background: var(--aq-brand-500);
}
