/* Genel sıfırlamalar */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* Temel yazı tipi ve zemin */
body {
	font-family: 'Poppins', Arial, sans-serif;
	color: #1e2838;
	background-color: #f4f6f8;
}

html {
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: none;
}

.cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
	font-family: inherit;
	color: #ffffff;
	background: linear-gradient(135deg, #1f2a44, #2b6cb0);
	border: none;
	box-shadow: 0 14px 36px rgba(31, 42, 68, 0.25);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
	padding-right: 16px;
}

.cta.secondary {
	margin-top: 18px;
	color: #1f2a44;
	border: 1px solid rgba(31, 42, 68, 0.18);
	box-shadow: 0 10px 26px rgba(31, 42, 68, 0.12);
}

.cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(31, 42, 68, 0.28);
	filter: brightness(1.04);
}

.cta:focus-visible {
	outline: 3px solid #f3b33d;
	outline-offset: 3px;
}

.cta.cta--whatsapp {
	background: linear-gradient(135deg, #25d366, #128c7e);
	box-shadow: 0 14px 36px rgba(18, 140, 126, 0.28);
}

.cta.cta--whatsapp:hover {
	box-shadow: 0 18px 44px rgba(18, 140, 126, 0.34);
	filter: brightness(1.03);
}

.cta.cta--bank {
	background: linear-gradient(135deg, #1f2a44, #405d86);
	box-shadow: 0 14px 36px rgba(31, 42, 68, 0.28);
}

[data-reveal] {
	opacity: 0;
	transform: translateY(32px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

.booking[data-reveal],
.booking [data-reveal] {
	transition: opacity 0.38s ease, transform 0.38s ease;
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}

	.hero::before,
	.topbar,
	.nav-links li,
	.hero-content,
	.hero .cta {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
}

/* Açılış kahraman bölümü */
.hero {
	position: relative;
	/* Kahraman bölümündeki görseli değiştirmek için URL'yi güncelleyin. */
	background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&q=80&w=1470') center/cover no-repeat;
	color: #ffffff;
	min-height: 72vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 34px 8vw 120px;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, rgba(19, 39, 61, 0.82), rgba(43, 108, 176, 0.55));
	backdrop-filter: blur(2px);
	opacity: 0;
	transform: scale(1.04);
	animation: heroOverlay 1.1s ease forwards;
	animation-fill-mode: forwards;
}

.hero > * {
	position: relative;
	z-index: 1;
}

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	opacity: 0;
	transform: translateY(-18px);
	animation: heroFadeDown 0.8s ease forwards;
	animation-delay: 0.1s;
	animation-fill-mode: forwards;
}

.brand {
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-links {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-links li {
	opacity: 0;
	transform: translateY(-12px);
	animation: heroNavItem 0.6s ease forwards;
	animation-delay: 0.32s;
	animation-fill-mode: forwards;
}

.nav-links li:nth-child(2) {
	animation-delay: 0.4s;
}

.nav-links li:nth-child(3) {
	animation-delay: 0.48s;
}

.nav-links li:nth-child(4) {
	animation-delay: 0.56s;
}

.nav-links a {
	font-weight: 500;
	font-size: 0.95rem;
	position: relative;
	padding-bottom: 4px;
}

.nav-links a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 100%;
	background: rgba(255, 255, 255, 0.65);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
	transform: scaleX(1);
}

.hero-content {
	max-width: 540px;
	display: grid;
	gap: 18px;
	opacity: 0;
	transform: translateY(30px);
	animation: heroFadeUp 0.95s ease forwards;
	animation-delay: 0.45s;
	animation-fill-mode: forwards;
}

.hero-content h1 {
	font-size: 2.8rem;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.88);
}

.hero .cta {
	align-self: start;
	padding: 16px 36px;
	font-size: 1rem;
}

@keyframes heroOverlay {
	from {
		opacity: 0;
		transform: scale(1.08);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes heroFadeDown {
	from {
		opacity: 0;
		transform: translateY(-24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroFadeUp {
	from {
		opacity: 0;
		transform: translateY(32px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes heroNavItem {
	from {
		opacity: 0;
		transform: translateY(-16px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Bölüm genel düzenleri */
.section {
	padding: 80px 8vw;
}

.section h2 {
	font-size: 2.2rem;
	margin-bottom: 24px;
	color: #1f2a44;
}

.content {
	max-width: 1100px;
	margin: 0 auto;
}

.about p {
	margin-bottom: 32px;
	font-size: 1.05rem;
}

.highlights {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight {
	background: #ffffff;
	border-radius: 18px;
	padding: 24px;
	box-shadow: 0 12px 32px rgba(31, 42, 68, 0.08);
}

.highlight h3 {
	margin-bottom: 12px;
	color: #2b6cb0;
}

.rooms {
	background: #ffffff;
}

/* Oda kartları ızgarası */
.room-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

.room-card {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 16px 40px rgba(31, 42, 68, 0.08);
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: stretch;
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.room-card:focus-visible,
.room-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 52px rgba(31, 42, 68, 0.18);
	outline: none;
}

.room-card:focus-visible {
	box-shadow: 0 0 0 3px #f3b33d;
}

.room-card-media {
	position: relative;
	min-height: 260px;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}

.room-card-media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.35s ease;
}

.room-card-media-nav {
	position: absolute;
	bottom: 18px;
	right: 18px;
	display: flex;
	gap: 10px;
	background: rgba(31, 42, 68, 0.72);
	padding: 6px 16px;
	border-radius: 999px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 1px;
	z-index: 1;
}

.media-nav-btn {
	background: transparent;
	border: none;
	color: inherit;
	font-size: 1.2rem;
	padding: 4px 6px;
	cursor: pointer;
}

.media-nav-btn:focus-visible {
	outline: 2px solid #f3b33d;
	border-radius: 4px;
}

.room-card-body {
	padding: 28px 28px 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.room-card-headline {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
}

.room-card-title {
	font-size: 1.4rem;
	color: #1f2a44;
}

.room-card-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.room-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.82rem;
	background: #eef2f6;
	color: #1f2a44;
}

.room-card-badge.plan {
	background: #1f2a44;
	color: #ffffff;
}

.room-card-summary {
	color: #344458;
	font-size: 0.95rem;
}

.room-card-amenities {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	color: #4c5f70;
	font-size: 0.85rem;
}

.room-card-amenities li::before {
	content: "•";
	margin-right: 6px;
	color: #f3b33d;
}

.room-card-footer {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
}

.room-card-footer .cta {
	min-width: 180px;
}

.room-card-link {
	font-size: 0.85rem;
	color: #2b6cb0;
	text-decoration: underline;
	cursor: pointer;
	align-self: flex-start;
}

.room-card-link:focus-visible {
	outline: 2px solid #f3b33d;
	outline-offset: 2px;
}

.services {
	background: #101d33;
	color: #ffffff;
}
.services h2 {
	color: #ffffff;
}

/* Oda detay paneli */
.room-panel {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

.room-panel.is-open {
	display: flex;
}

.room-panel-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 28, 32, 0.68);
	backdrop-filter: blur(4px);
}

.room-panel-content {
	position: relative;
	max-width: 960px;
	width: 90vw;
	max-height: 90vh;
	overflow-y: auto;
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(16, 29, 51, 0.4);
	padding: 28px;
	padding-bottom: 42px;
}

.room-panel-close {
	position: absolute;
	top: 18px;
	right: 18px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #1f2a44;
	color: #ffffff;
	border: none;
	font-size: 1.4rem;
	cursor: pointer;
}

.room-panel-body {
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(260px, 1fr) minmax(320px, 1fr);
}

.room-panel-media {
	display: grid;
	gap: 16px;
}

.room-panel-main {
	position: relative;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(31, 42, 68, 0.18);
	background: #eef2f6;
	aspect-ratio: 4 / 3;
}

.room-panel-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.room-panel-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	background: rgba(31, 42, 68, 0.85);
	color: #ffffff;
	font-size: 1.4rem;
	cursor: pointer;
}

.room-panel-nav.prev {
	left: 14px;
}

.room-panel-nav.next {
	right: 14px;
}

.room-panel-thumbs {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.room-panel-thumbs button {
	flex: 1 1 110px;
	border: none;
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	position: relative;
	background: transparent;
	display: block;
	height: 80px;
}

.room-panel-thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.room-panel-thumbs button.is-active::after {
	content: "";
	position: absolute;
	inset: 0;
	border: 3px solid #f3b33d;
	border-radius: 14px;
	pointer-events: none;
}

.room-panel-info {
	display: grid;
	gap: 18px;
	align-content: start;
}

.room-panel-top {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
}

.room-panel-top h3 {
	font-size: 2rem;
	color: #1f2a44;
}

.room-panel-info p {
	color: #344458;
	line-height: 1.7;
}

.room-panel-services {
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 10px;
}

.room-panel-services li {
	background: #eef2f6;
	padding: 10px 14px;
	border-radius: 12px;
	color: #1f2a44;
	font-size: 0.85rem;
	display: flex;
	gap: 10px;
	align-items: flex-start;
}

.room-panel-services li::before {
	content: "✔";
	color: #1f2a44;
	font-weight: 600;
	margin-top: 2px;
}

.room-panel-extras {
	font-size: 0.82rem;
	color: #5f737c;
	display: grid;
	gap: 4px;
}

.room-panel-actions {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 16px;
	margin-top: 8px;
}

.room-panel-actions .cta {
	min-width: 200px;
}

body.modal-open {
	overflow: hidden;
}

.service-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	align-items: stretch;
}

.service-card {
	position: relative;
	padding: 28px 24px;
	border-radius: 20px;
	background: linear-gradient(160deg, rgba(19, 39, 61, 0.9), rgba(43, 108, 176, 0.65));
	box-shadow: 0 14px 32px rgba(16, 29, 51, 0.4);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
	opacity: 0;
	transform: translateY(18px);
}

.service-card.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.service-card h3 {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.service-card p {
	font-size: 0.95rem;
	line-height: 1.5;
	color: rgba(229, 238, 247, 0.92);
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 12px;
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 46px rgba(16, 29, 51, 0.48);
}

.service-card:hover::before {
	opacity: 1;
}

.service-card::after {
	content: "";
	position: absolute;
	top: -80px;
	right: -80px;
	width: 160px;
	height: 160px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 60%);
	opacity: 0.6;
	transition: transform 0.3s ease;
}

.service-card:hover::after {
	transform: translate(-20px, 20px);
}

/* Rezervasyon arka planı */
.booking {
	background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
}

/* Rezervasyon sütunları */
.booking-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	gap: 36px;
	align-items: start;
}

.booking .content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.booking .content > h2 {
	margin-bottom: 0;
	text-align: center;
}

.booking .content > p {
	max-width: 720px;
	margin: 0 auto;
	color: #2c3d52;
	font-size: 1.02rem;
	line-height: 1.5;
	text-align: center;
}

.booking .content > .booking-layout {
	align-self: stretch;
}

/* Takvim ve form alanı */
.booking-main {
	display: grid;
	grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
	gap: 32px;
	align-items: start;
}

/* Takvim kutusu */
.calendar-panel {
	background: #ffffff;
	padding: 32px;
	border-radius: 20px;
	box-shadow: 0 18px 40px rgba(31, 42, 68, 0.12);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.calendar-header button {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: none;
	background: #1f2a44;
	color: #ffffff;
	font-size: 1rem;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.calendar-header button:hover {
	opacity: 0.8;
}

.calendar-title {
	font-weight: 600;
	color: #1f2a44;
}

.calendar-weekdays,
.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
	text-align: center;
}

.calendar-weekdays span {
	font-size: 0.8rem;
	font-weight: 600;
	color: #4c5f70;
	text-transform: uppercase;
}

.calendar-grid {
	margin-top: 12px;
}

/* Tarih butonları */
.calendar-day {
	padding: 14px 4px;
	border-radius: 12px;
	background: #eef2f6;
	color: #1f2a44;
	font-weight: 500;
	cursor: pointer;
	border: none;
	transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.calendar-day:hover {
	background: #2b6cb0;
	color: #ffffff;
	box-shadow: 0 6px 18px rgba(43, 108, 176, 0.35);
}

.calendar-day.other-month {
	background: transparent;
	color: #a1b2c4;
}

.calendar-day.disabled {
	background: #e0e6ec;
	color: #96a4b5;
	cursor: not-allowed;
	box-shadow: none;
}

.calendar-day.disabled:hover {
	background: #e0e6ec;
	color: #96a4b5;
}

.calendar-day.booked {
	background: #f3d4d4;
	color: #a35252;
	font-weight: 600;
}

.calendar-day.today {
	border: 2px solid #f3b33d;
	background: #fff4d6;
}

.calendar-day.selected-start,
.calendar-day.selected-end {
	background: #1f2a44;
	color: #ffffff;
}

.calendar-day.in-range {
	background: #d6e3f3;
	color: #1f2a44;
}

/* Rezervasyon form ızgarası */
.booking-form {
	background: transparent;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	align-items: stretch;
}

fieldset {
	border: none;
	display: grid;
	gap: 16px;
}

legend {
	font-weight: 600;
	color: #1f2a44;
	margin-bottom: 4px;
}

/* Form kartlarının yüzeyi */
.form-card {
	background: linear-gradient(150deg, #ffffff 0%, #f2f5f9 100%);
	border-radius: 20px;
	padding: 24px 26px 28px;
	box-shadow: 0 18px 40px rgba(31, 42, 68, 0.12);
	border: 1px solid rgba(31, 42, 68, 0.08);
	position: relative;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.form-card:hover,
.form-card:focus-within {
	transform: translateY(-6px);
	box-shadow: 0 26px 52px rgba(31, 42, 68, 0.16);
}

.form-card legend {
	font-size: 1.05rem;
	margin-bottom: 12px;
	position: relative;
	padding-bottom: 10px;
	grid-column: 1 / -1;
}

.form-card legend::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 52px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(135deg, #1f2a44, #2b6cb0);
}

.form-card label {
	font-size: 0.9rem;
	color: #344458;
	font-weight: 500;
}

.form-card input,
.form-card select {
	background-color: #ffffff;
	box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

.form-card--grid {
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	align-items: stretch;
	gap: 20px 24px;
}

.form-card--grid .form-field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 100%;
}

.form-card--grid .form-field.form-field--choice {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: start;
	gap: 12px 16px;
	padding: 18px 20px;
	border: 1px solid rgba(31, 42, 68, 0.18);
	border-radius: 16px;
	background: #ffffff;
}

.form-card--grid .form-field.form-field--choice input[type="radio"] {
	margin: 4px 0 0;
	width: 20px;
	height: 20px;
}

.form-card--grid .form-field.form-field--choice label {
	margin: 0;
	text-transform: none;
	letter-spacing: 0;
	font-weight: 600;
	color: #1f2a44;
}

.form-card--grid .form-field.form-field--choice input[type="radio"]:checked + label {
	color: #2b6cb0;
}

.field-hint {
	grid-column: 2 / -1;
	font-size: 0.8rem;
	color: #5a6d7e;
	line-height: 1.4;
}

.form-card--grid .form-field label {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
	color: #33475c;
}

.form-card--grid .form-field input,
.form-card--grid .form-field select,
.form-card--grid .form-field textarea {
	background: #ffffff;
	border: 1px solid rgba(31, 42, 68, 0.18);
	border-radius: 14px;
	padding: 14px 16px;
	box-shadow: inset 0 2px 6px rgba(31, 42, 68, 0.06);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card--grid .form-field input:focus,
.form-card--grid .form-field select:focus,
.form-card--grid .form-field textarea:focus {
	border-color: #1f2a44;
	box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.12);
	outline: 2px solid rgba(243, 179, 61, 0.6);
	outline-offset: 2px;
}

.booking-form .cta {
	grid-column: 1 / -1;
	justify-self: center;
	margin-top: 12px;
	min-width: 240px;
}

.booking-form .form-note {
	grid-column: 1 / -1;
	margin: 0;
	text-align: center;
}

label {
	font-size: 0.9rem;
	color: #344458;
}

input,
select,
textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid #c7d3e0;
	font-size: 0.95rem;
	background-color: #f5f7fa;
}

input:focus,
select:focus,
textarea:focus {
	outline: 2px solid #f3b33d;
	border-color: transparent;
}

.form-note {
	font-size: 0.85rem;
	color: #536476;
	text-align: center;
}

.booking-summary {
	background: #101d33;
	color: #ffffff;
	padding: 28px;
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(16, 29, 51, 0.45);
}

.booking-summary h3 {
	margin-bottom: 16px;
	font-size: 1.4rem;
}

/* Ücret özeti alanı */
.summary-rate {
	background: rgba(255, 255, 255, 0.08);
	border-radius: 18px;
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 20px;
}

.summary-rate span {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.summary-rate strong {
	font-size: 1.6rem;
	font-weight: 600;
}

/* Özet satırları */
.summary-details {
	display: grid;
	gap: 14px;
	margin: 0 0 20px;
}

.summary-details div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
}

.summary-details dt {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.72);
}

.summary-details dd {
	margin: 0;
	font-weight: 600;
	font-size: 1rem;
	text-align: right;
}

/* Etiket kümesi */
.summary-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.summary-tags span {
	background: rgba(255, 255, 255, 0.16);
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}

.summary-tags span.is-low {
	background: rgba(243, 179, 61, 0.32);
	color: #fff5e0;
}

.summary-tags span.is-full {
	background: rgba(226, 99, 82, 0.32);
	color: #ffe7e3;
}

.summary-room {
	margin-bottom: 20px;
	color: rgba(236, 242, 249, 0.9);
	font-size: 0.92rem;
	line-height: 1.5;
}

.included {
	background: rgba(255, 255, 255, 0.14);
	padding: 18px;
	border-radius: 14px;
	font-size: 0.9rem;
}

.bank-transfer-info {
	margin-top: 22px;
	display: grid;
	gap: 16px;
	background: rgba(16, 29, 51, 0.28);
	border-radius: 16px;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.bank-transfer-info[hidden] {
	display: none;
}

.bank-transfer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 12px;
}

.bank-transfer-card {
	background: rgba(8, 18, 34, 0.26);
	border-radius: 12px;
	padding: 12px 14px;
	display: grid;
	gap: 6px;
}

.bank-transfer-card--wide {
	grid-column: 1 / -1;
}

.bank-transfer-label {
	font-size: 0.74rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(224, 236, 247, 0.75);
}

.bank-transfer-value {
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
}

.bank-transfer-note {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 10px;
	margin-top: 6px;
	padding: 18px 20px;
	border-radius: 18px;
	background: rgba(10, 22, 40, 0.4);
	border: 1px solid rgba(243, 179, 61, 0.6);
	box-shadow: 0 14px 28px rgba(10, 20, 36, 0.35);
	font-size: 0.88rem;
	line-height: 1.55;
	color: #ffffff;
}

.bank-transfer-note-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 20px;
	border-radius: 999px;
	background: linear-gradient(135deg, #f3b33d, #d98c1f);
	color: #1f2a44;
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 10px 18px rgba(217, 152, 31, 0.3);
}

.bank-transfer-note-text {
	font-weight: 600;
	max-width: 100%;
}

#copyIbanBtn {
	justify-self: flex-start;
	padding: 11px 22px;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}

@media (max-width: 520px) {
	.bank-transfer-grid {
		grid-template-columns: 1fr;
	}

	#copyIbanBtn {
		width: 100%;
		justify-content: center;
	}
}

/* İletişim bölümü ızgarası */
.contact-grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	align-items: start;
}

.contact-form {
	background: #ffffff;
	padding: 28px;
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(15, 46, 52, 0.08);
	display: grid;
	gap: 16px;
}

.contact-form .cta.secondary {
	color: #ffffff;
	border-color: rgba(16, 29, 51, 0.25);
}

textarea {
	resize: vertical;
}

.footer {
	background: #101d33;
	color: #d7e2f0;
	text-align: center;
	padding: 24px 8vw;
	font-size: 0.85rem;
}

@media (max-width: 900px) {
	.hero {
		min-height: 60vh;
		padding: 28px 6vw 90px;
	}

	.hero h1 {
		font-size: 2.3rem;
	}

	.booking-layout {
		grid-template-columns: 1fr;
	}

	.booking-main {
		grid-template-columns: 1fr;
	}

	.booking-form {
		grid-template-columns: 1fr;
	}

	.booking-form .cta {
		justify-self: center;
		width: 100%;
	}

	.booking-summary {
		position: sticky;
		top: 20px;
	}

	.room-card {
		grid-template-columns: 1fr;
	}

	.room-card-media {
		min-height: 220px;
	}

	.room-panel-content {
		padding: 28px;
	}

	.room-panel-body {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.topbar {
		flex-direction: column;
		gap: 16px;
	}

	.nav-links {
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero-content {
		text-align: center;
		padding: 0 6vw 6vh;
	}

	.hero {
		padding: 24px 6vw 70px;
	}

	.form-card--grid {
		grid-template-columns: 1fr;
	}

	.booking-form .cta {
		justify-self: stretch;
	}

	.hero p {
		margin: 0 auto 24px;
	}

	.room-card-body {
		padding: 24px 22px 28px;
	}

	.room-panel-content {
		padding: 24px;
		width: 92vw;
	}

	.room-panel-main {
		aspect-ratio: 4 / 3;
	}

	.room-panel-main img {
		height: 100%;
	}

	.room-panel-thumbs {
		gap: 10px;
	}

	.room-panel-thumbs button {
		flex: 1 1 70px;
	}

	.room-card-footer {
		justify-content: center;
	}

	.room-card-footer .cta {
		width: 100%;
		min-width: 0;
	}

	.room-panel-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.room-panel-actions .cta {
		width: 100%;
		min-width: 0;
	}

	.summary-details div {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}

	.summary-details dd {
		text-align: left;
	}
}
