/* ====== Beyaz, modern, mobil-first ====== */
	:root{
	  --ink:#0f172a;
	  --muted:#475569;
	  --line:#e2e8f0;
	  --line-2:#cbd5e1;
	  --brand:#0ea5e9;
	  --brand-ink:#075985;
	  --whatsapp:#22c55e;
	  --bg:#ffffff;
	  --card:#ffffff;
	  --soft:#f8fafc;
	}

	@font-face {
		font-family: 'HelveticaThin';
		src: url('../font/HelveticaNeueThin.otf') format('truetype');
		font-weight: normal;
		font-style: normal;
	}
	
	*{box-sizing:border-box}
	html,body {
		margin:0;
		padding:0;
		background: #f6fbff;
		color:var(--ink);
		font-family: 'HelveticaLight', sans-serif;
	}
	
	img {
		max-width:100%;
		display:block;
	}

	.imgaa {
		max-width:100%;
		display:block;
		margin: auto;
	}
	
	a {
		color:inherit;
		text-decoration:none
	}
	
	.container {
		width:min(80%,92vw);
		margin-inline:auto
	}

	/* NAV */
	.nav {
		position:sticky;
		top:0;
		background:#f6fbff;
		border-bottom:1px solid var(--line);
		z-index: 9999999;
	}
	
	.nav-in {
		display:flex;
		align-items:center;
		justify-content:space-between;
		padding:0px 0
	}
	
	.brand {
		display:flex;
		align-items:center;
		gap:10px;
		font-weight:700;
		width:100%;
		height: 80px;
		justify-content:space-between;
	}
	
	.brand span {
		font-size:15px;
	}
	
	.brand img {
		width:75px;
		height:75px;
		border-radius:8px
	}
	
	.btn {
		display:inline-flex;
		align-items:center;
		justify-content:center;
		gap:8px;
		padding:11px 14px;
		border-radius:12px;
		border:1px solid var(--line);
		background:#fff;
		font-weight:600
	}
	
	.btn:hover {
		background:#f8fafc
	}
	
	.btn-primary {
		border-color:#0ea5e9;
		background:#0ea5e9;
		color:#fff
	}
	
	.btn-primary:hover {
		background:#0284c7
	}
	/* NAV */

	/* SEARCH */
	.hero {
		padding:0;
		border-bottom:1px solid var(--line)
	}
	
	.search-band {
		position: relative;
		border-bottom: 1px solid var(--line);
		box-shadow: 0 12px 32px rgba(2,6,23,.05);
		background: url("../img/banner.jpg") no-repeat center center / cover;
	}

	.search-band::before {
		content: "";
		position: absolute;
		inset: 0;
		border-radius: inherit;
	}
	
	.search-card {
		display: grid;
		grid-template-columns: 1.5fr 2fr;
		gap: 20px;
		padding: 100px 0;
		opacity:0.99;
	}
	@media (max-width:780px){
		.logobaslik {
			width:50%;
		}
		
		.container {
			width: min(96%, 96vw);
			margin-inline:auto
		}
		
		.search-card {
			grid-template-columns:1fr;
			gap:12px;
			padding: 18px 0;
			opacity:0.99;
		} 
	}
	/* SEARCH */

	/* FORM CARD (yüksek vurgulu) */
	.card {
		border:2px solid var(--brand);
		border-radius:16px;
		background:var(--card);
		padding:14px;
	}
	
	.form {
		display:grid;
		gap:12px;
	}
	
	.label {
		font-size:12px;
		color:#334155;
		margin:0 0 6px;
	}

	.input {
		position:relative
	}
	
	.input input {
		width:100%;
		border:1px solid var(--line-2);
		border-radius:12px;
		padding: 10px 0px 10px 10px;
		font-size:15px;
		outline:0;
		background:#fff
	}
	.input input:focus {
		border-color:#94a3b8
	}
	.input .i-right {
		position:absolute;
		right:10px;
		top:50%;
		transform:translateY(-50%);
		color:#94a3b8;
	}

	.row {
		display:grid;
		grid-template-columns:1fr 1fr;
		gap:10px
	}
	
	@media (max-width:600px) { 
		.row {
			grid-template-columns:1fr
		} 
	}

	.dd{position:relative}
	
	.hero,
	.search-band {
		position: relative;
		z-index: 100;
	}

	.suggest,
	.panel {
		z-index: 1000;
	}
	
	.select {
		display:flex;
		align-items:center;
		gap:10px;
		border:1px solid var(--line-2);
		border-radius:12px;
		padding:12px;
		background:#fff;
		cursor:pointer
	}
	
	.select img {
		width:70px;
		border-radius:10px
	}
	
	.panel {
		position:absolute;
		left:0;
		right:0;
		top:calc(100% + 8px);
		border:1px solid var(--line);
		border-radius:12px;
		background:#fff;
		box-shadow:0 10px 30px rgba(2,6,23,.08);
		display:none;
		z-index:20;
		max-height:340px;
		overflow:auto
	}
	
	.opt {
		display:flex;
		gap:10px;
		align-items:center;
		padding:10px;
		border-bottom:1px dashed #eef2f7
	}
	
	.opt:last-child {
		border-bottom:0
	}
	
	.opt small {
		color:#64748b
	}

	/* SUGGEST – küçük resimli */
	.suggest {
		position:absolute;
		left:0;
		right:0;
		top:80px;
		border:1px solid var(--line);
		border-radius:12px;
		background:#fff;
		box-shadow:0 12px 28px rgba(2,6,23,.10);
		display:none;
		z-index:25;
		max-height:320px;
		overflow:auto;
	}
	
	.suggest ul {
		list-style:none;
		margin:0;
		padding:6px;
	}
	
	.suggest li {
		display:grid; 
		grid-template-columns:auto 1fr auto; 
		align-items:center;
		gap:10px; 
		padding:10px; 
		border-radius:10px; 
		cursor:pointer;
	}
	
	.suggest li:hover {
		background:#f8fafc
	}
	
	.thumb {
		width:32px;
		height:32px;
		border-radius:6px;
		border:1px solid var(--line);
		background:#fff;
		display:flex;
		align-items:center;
		justify-content:center;
		overflow:hidden;
	}
	
	.thumb img {
		width:20px;
		height:20px;
	}
	
	.suggest .title {
		font-weight:600;
	}
	
	.suggest .meta {
		font-size:12px;
		color:#64748b;
	}
	
	.tag {
		font-size:11px; 
		padding:4px 8px; 
		border:1px solid var(--line); 
		border-radius:999px;
		background:#fff; 
		color:#334155
	}
	
	.hl {
		background:#fffbeb;
		border:1px solid #fde68a;
		border-radius:4px;
		padding:0 2px;
	}

	/* CTA */
	.actions {
		display:flex;
		gap:10px;
		align-items:center;
		margin-top:2px;
		justify-content: flex-end;
	}
	
	.btn-wa {
		background:var(--whatsapp);
		color:#fff;
		border-color:var(--whatsapp);
		cursor:pointer;
	}
	
	.btn-wa:hover {
		background:#16a34a;
		color:#fff
	}
	
	.error {
		color:#dc2626;
		font-size:12px;
		margin-top:6px
	}

	/* INFO Sections */
	.section h2 {
		font-size:clamp(20px,3.1vw,28px);
		margin:0 0 10px;
	}
	
	.cols {
		display:grid;
		grid-template-columns:repeat(3,1fr);
		gap:12px;
		margin-bottom:70px;
	}
	
	@media (max-width:980px){ 
		.cols {
			grid-template-columns:1fr
		}
	}
	
	.item {
		border:1px solid var(--line);
		border-radius:14px;
		background:#fff;
		padding:14px
	}
	
	.kv {
		display:flex;
		gap:8px;
		justify-content: center;
		margin-top: 8px;
	}
	
	.kv span {
		font-size:12px;
		border:1px solid var(--line);
		border-radius:999px;
		padding:5px 8px;
		background:#fff;
	}

	/* FOOTER */
	.footer { 
		padding:24px 0;
	}
	
	.footer .grid {
		display:grid;
		gap:12px
	}
	
	@media (max-width:980px) { 
		.footer .grid {
			grid-template-columns:1fr
		} 
	}
	
	small {
		color:#64748b;
	}

	.footerduzen {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	.brandss {
		width:130px;
		text-align:center;
		color:#64748b;
	}

	@media (max-width:780px){ 
		.footerduzen {
			display: flex;
			flex-direction: column;
			gap: 15px;
		}

		.brandss {
			width:100px;
			margin:auto;
		}

		.mobilicon {
			display:none;
		}
	}
	/* FOOTER */

	/* ==== Takvim Popup (Flatpickr) Tema ==== */
	.flatpickr-calendar {
		border: 1px solid var(--line);
		border-radius: 14px;
		box-shadow: 0 12px 28px rgba(2,6,23,.12);
		overflow: hidden;
	}
	
	.flatpickr-months {
		padding: 8px 10px;
	}
	
	.flatpickr-current-month {
		font-weight: 700;
		letter-spacing: .4px;
		text-transform: uppercase;      /* SEPTEMBER 2025 gibi */
	}
	
	.flatpickr-monthDropdown-months,
	.numInputWrapper {
		color: var(--ink);
	}
	
	.flatpickr-weekdays {
		background: #fff;
		border-top: 1px solid var(--line);
		border-bottom: 1px solid var(--line);
	}
	
	.flatpickr-weekday {
		color: #64748b;
		font-weight: 600;
	}
	
	.flatpickr-day {
		border-radius: 10px;
		line-height: 38px;
		height: 38px;
		width: 38px;
		margin: 2px;
	}
	
	.flatpickr-day.today {
		border: 1px solid #94a3b8;
	}
	
	.flatpickr-day.selected,
	.flatpickr-day.selected:focus,
	.flatpickr-day.selected:hover {
		background: #fff;
		color: var(--ink);
		border: 2px solid #ef4444;
	}
	
	.flatpickr-day:hover {
		background: #f8fafc;
	}
	
	.flatpickr-prev-month, .flatpickr-next-month {
		color: #0f172a;
	}
	
	.flatpickr-calendar.arrowTop:before, 
	.flatpickr-calendar.arrowTop:after { 
		display:none; 
	}
	/* ==== Takvim Popup (Flatpickr) Tema ==== */


	/* ==== NASIL ÇALIŞIR ==== */
	.how {
		position: relative;
		padding: 65px 0;
	}
	
	.how .headline {
		display: flex; 
		align-items: center; 
		gap: 10px; 
		margin: 0 0 14px;
	}
	
	.how .headline h2 {
		font-size: clamp(20px,3.1vw,28px); 
		margin: 0;
	}
	
	.how .headline .sub {
		color: var(--muted); 
		font-size: 14px;
	}

	.how .grid {
		position: relative; 
		z-index: 1;
		display: grid; 
		grid-template-columns: repeat(3,1fr); 
		gap: 14px;
	}

	@media (max-width:980px){ 
		.how .grid { 
			grid-template-columns: 1fr; 
		} 
	}

	.how .card {
		border: 1px solid var(--line);
		border-radius: 16px;
		background: #fff;
		padding: 16px;
		transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
		position: relative;
		overflow: hidden;
	}
	
	.how .card:hover {
		transform: translateY(-2px);
		border-color: #bfdbfe;
		box-shadow: 0 12px 30px rgba(2,6,23,.08);
	}

	/* numara rozet */
	.how .badge {
		position: absolute; 
		top: 10px; 
		left: 16px;
		width: 36px; 
		height: 36px; 
		border-radius: 50%;
		display: grid; 
		place-items: center;
		background: #fff;
		border: 2px solid var(--brand);
		color: var(--brand-ink);
		font-weight: 700;
	}

	/* ikon kapsülü */
	.how .ico {
		width: 44px; height: 44px; border-radius: 12px;
		display: grid; place-items: center;
		background: linear-gradient(180deg, #f1f5f9, #ffffff);
		border: 1px solid var(--line);
		margin-bottom: 10px;
		margin-top: 40px;
	}
	
	.how .ico svg { 
		width: 22px; 
		height: 22px; 
	}

	.how .title { 
		font-weight: 700; 
		margin: 4px 0 6px; 
	}
	
	.how .desc { 
		color: var(--muted); 
		font-size: 14px; 
		line-height: 1.5; 
	}

	/* küçük rozetler */
	.how .pills { 
		display:flex; 
		flex-wrap:wrap; 
		gap:6px; 
		margin-top:10px; 
	}
	
	.how .pill {
		font-size:12px; 
		padding:6px 8px; 
		border:1px solid var(--line);
		border-radius: 999px; 
		background:#fff; 
		color:#334155;
	}

	/* check satırları (opsiyonel) */
	.how .checks { 
		margin-top: 8px; 
	}
	
	.how .check {
		display:flex; 
		align-items:flex-start; 
		gap:8px; 
		font-size:14px; 
		color:#334155;
	}
	
	.how .check svg { 
		width:18px; 
		height:18px; 
		flex:0 0 auto; 
		color:#16a34a; 
	}
	/* ==== NASIL ÇALIŞIR ==== */


	/* ==== ORTA TANITIM ==== */
	.info {
		margin-bottom:50px;
	}

	.info-bg {
		width: 100%;
		padding: 50px 0;
		background: linear-gradient(135deg, #010510 0%, #0a3595 100%);
		color: #fff;
	}

	.info-bg h3 {
		max-width: 85%;
		margin: 0 auto 16px auto;
		font-size: 20px;
		line-height: 1.6;
		color: #f0f9ff; /* açık beyaz */
		text-align: justify;
	}

	.info-bg p {
		max-width: 85%;
		margin: 0 auto 16px auto;
		font-size: 16px;
		line-height: 1.6;
		color: #f0f9ff; /* açık beyaz */
		text-align: justify;
	}
	/* ==== ORTA TANITIM ==== */


	/* ==== Sağ altta sabit WhatsApp butonu ==== */
	.wa-fab{
		position: fixed;
		right: 16px;
		bottom: 16px;
		z-index: 120; /* üstte kalsın */
		width: 56px;
		height: 56px;
		border-radius: 999px;
		display: grid;
		place-items: center;
		background: #22c55e; /* WhatsApp yeşili */
		color: #fff;
		border: none;
		box-shadow: 0 10px 24px rgba(0,0,0,.15);
		cursor: pointer;
	}
	
	.wa-fab:hover { 
		background:#16a34a; 
	}
	
	@media (max-width:600px){
		.wa-fab { 
			right:12px; 
			bottom:12px; 
			width:52px; 
			height:52px; 
		}
	}

	.highlight-wa {
		background: #f7eeee !important;
		color: #022a5b !important;
		border: 1px solid #ff2626;
		border-radius: 8px;
		padding: 6px 10px;
		transition: background .2s ease, color .2s ease;
	}
/* ==== Sağ altta sabit WhatsApp butonu ==== */