/**
 * Hire a Photographer Page Styles
 */

/* 6.1 HERO */
.hire-hero {
	padding: 8rem 2rem 4rem;
	border-bottom: 1px solid var(--accent-line);
}

.hero-split {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: end;
}

.hire-title {
	font-family: var(--heading-font);
	font-size: clamp(4rem, 8vw, 7rem);
	line-height: 0.9;
	text-transform: uppercase;
	font-weight: 800;
	color: var(--text-color);
}

.hero-desc {
	font-family: var(--primary-font);
	color: var(--gray-400);
	line-height: 1.6;
}

.process-steps {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	font-family: var(--heading-font);
	font-size: 0.8rem;
	color: var(--white);
	text-transform: uppercase;
}

.process-steps .line {
	flex: 1;
	height: 1px;
	background: var(--accent-line);
}

/* WIZARD CONTAINER */
.wizard-container {
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 100px; /* Space for floating bar */
}

/* WIZARD STEP (Accordion) */
.wizard-step {
	border-bottom: 1px solid var(--accent-line);
	overflow: hidden;
	transition: background 0.3s;
}

.step-header {
	padding: 2rem;
	display: flex;
	align-items: center;
	cursor: default;
	background: var(--bg-color);
	position: relative;
	z-index: 2;
}

.step-num {
	font-family: var(--heading-font);
	color: var(--gray-600);
	font-size: 1.2rem;
	margin-right: 2rem;
	font-weight: 700;
}

.step-title {
	font-family: var(--heading-font);
	font-size: 1.5rem;
	margin-right: auto;
	color: var(--gray-500); /* Dim by default */
	transition: color 0.3s;
}

.step-selection {
	font-family: var(--primary-font);
	color: var(--primary-color);
	margin-right: 2rem;
	font-size: 0.9rem;
}

.edit-btn {
	background: transparent;
	border: 1px solid var(--accent-line);
	color: var(--gray-400);
	padding: 0.5rem 1rem;
	font-family: var(--primary-font);
	font-size: 0.75rem;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transition: all 0.3s;
}

/* ACTIVE STATE */
.wizard-step.active .step-title { 
	color: var(--white); 
}
.wizard-step.active .step-header { 
	border-bottom: 1px dashed var(--accent-line); 
}

/* COMPLETED STATE */
.wizard-step.completed .edit-btn { 
	opacity: 1; 
	pointer-events: auto; 
}
.wizard-step.completed .step-title { 
	color: var(--gray-400); 
}

.step-content {
	height: 0; /* Hidden by default */
	opacity: 0;
	padding: 0 2rem;
	transition: all 0.3s ease;
	overflow-y: visible;
}

.wizard-step.active .step-content {
	height: auto;
	opacity: 1;
	padding: 2rem;
	overflow-y: visible;
}

/* 6.2 SERVICE GRID */
.service-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 1rem;
}

.svc-card {
	background: var(--gray-700);
	border: 1px solid var(--accent-line);
	padding: 2rem 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	transition: all 0.2s;
}

.svc-card:hover {
	background: var(--white);
	border-color: var(--white);
}
.svc-card:hover .svc-name, 
.svc-card:hover .svc-icon { 
	color: var(--black); 
}

.svc-icon { 
	font-size: 2rem; 
	color: var(--gray-300); 
}
.svc-name { 
	font-family: var(--heading-font); 
	color: var(--white); 
	font-weight: 600; 
}
.svc-card.outline { 
	background: transparent; 
	border-style: dashed; 
}

/* 6.3 PACKAGE OPTIONS */
.pkg-scroll-container {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: visible;
	padding-top: 15px;
	padding-bottom: 1rem;
	scrollbar-width: thin;
	scrollbar-color: var(--gray-600) transparent;
}

.pkg-scroll-container::-webkit-scrollbar {
	height: 8px;
}

.pkg-scroll-container::-webkit-scrollbar-track {
	background: transparent;
}

.pkg-scroll-container::-webkit-scrollbar-thumb {
	background: var(--gray-600);
	border-radius: 4px;
}

.pkg-option {
	min-width: 250px;
	flex: 1;
	background: var(--gray-700);
	border: 1px solid var(--accent-line);
	padding: 2rem;
	cursor: pointer;
	position: relative;
	transition: transform 0.3s, border-color 0.3s;
}

.pkg-option:hover {
	border-color: var(--primary-color);
	transform: translateY(-5px);
}

.pkg-option.active {
	border-color: var(--primary-color);
	background: rgba(var(--primary-color-rgb), 0.05);
	box-shadow: 0 0 20px rgba(var(--primary-color-rgb), 0.2);
}

.rec-badge {
	position: absolute;
	top: -12px; 
	left: 50%; 
	transform: translateX(-50%);
	background: var(--primary-color);
	color: var(--black);
	padding: 4px 12px;
	font-size: 0.7rem;
	font-weight: 700;
	font-family: var(--primary-font);
	border-radius: 2px;
	white-space: nowrap;
	z-index: 10;
}

.pkg-top h3 { 
	font-family: var(--primary-font); 
	color: var(--gray-400); 
	letter-spacing: 1px; 
	font-size: 0.9rem; 
	text-transform: uppercase;
}
.pkg-price { 
	font-family: var(--heading-font); 
	font-size: 2.5rem; 
	font-weight: 700; 
	margin: 0.5rem 0; 
	color: var(--white); 
}
.pkg-meta { 
	font-family: var(--primary-font); 
	color: var(--gray-200); 
	margin-bottom: 1rem; 
}
.klarna-mini { 
	font-size: 0.75rem; 
	color: var(--gray-500); 
	background: rgba(0,0,0,0.2); 
	padding: 5px; 
	border-radius: 4px; 
}

/* 6.4 TALENT CARDS */
.talent-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
}

.talent-card {
	cursor: pointer;
	transition: transform 0.3s;
}
.talent-card:hover { 
	transform: translateY(-5px); 
}

.talent-card.active {
	transform: translateY(-5px);
}

.talent-card.active .talent-visual {
	border-color: var(--primary-color);
}

.talent-visual {
	height: 300px;
	background: var(--gray-700);
	overflow: hidden;
	margin-bottom: 1rem;
	border: 1px solid var(--accent-line);
	transition: border-color 0.3s;
}

.talent-visual img {
	width: 100%; 
	height: 100% !important; 
	object-fit: cover;
	filter: grayscale(100%);
	transition: filter 0.3s;
}
.talent-card:hover img { 
	filter: grayscale(0%); 
}

.pattern-bg {
	background-image: repeating-linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111), repeating-linear-gradient(45deg, #111 25%, #050505 25%, #050505 75%, #111 75%, #111);
	background-position: 0 0, 10px 10px;
	background-size: 20px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.auto-text { 
	font-family: var(--heading-font); 
	font-weight: 800; 
	font-size: 1.5rem; 
	color: var(--gray-500); 
	letter-spacing: -1px; 
}

.talent-info h3 { 
	font-family: var(--heading-font); 
	font-size: 1.2rem; 
	margin-bottom: 0.2rem; 
	color: var(--text-color);
}
.talent-spec { 
	font-family: var(--primary-font); 
	color: var(--gray-400); 
	font-size: 0.85rem; 
	text-transform: uppercase; 
}

/* 6.6 STUDIO TOGGLE */
.studio-toggle-box {
	background: var(--gray-700);
	padding: 2rem;
	border: 1px solid var(--accent-line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.toggle-text h3 { 
	font-family: var(--heading-font); 
	font-size: 1.2rem; 
	color: var(--text-color);
	margin-bottom: 0.5rem;
}
.toggle-text p { 
	font-family: var(--primary-font); 
	color: var(--gray-400); 
	font-size: 0.9rem; 
}
.studio-price { 
	font-family: var(--heading-font); 
	font-size: 1.5rem; 
	font-weight: 700; 
	color: var(--white); 
}

/* Switch Style */
.switch { 
	position: relative; 
	display: inline-block; 
	width: 60px; 
	height: 34px; 
}
.switch input { 
	opacity: 0; 
	width: 0; 
	height: 0; 
}
.slider { 
	position: absolute; 
	cursor: pointer; 
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	background-color: #333; 
	transition: .4s; 
	border-radius: 34px;
}
.slider:before { 
	position: absolute; 
	content: ""; 
	height: 26px; 
	width: 26px; 
	left: 4px; 
	bottom: 4px; 
	background-color: white; 
	transition: .4s; 
	border-radius: 50%;
}
input:checked + .slider { 
	background-color: var(--white); 
}
input:checked + .slider:before { 
	transform: translateX(26px); 
	background-color: var(--black); 
}

/* ADDONS */
.mini-head { 
	font-family: var(--primary-font); 
	text-transform: uppercase; 
	color: var(--gray-500); 
	margin-bottom: 1rem; 
	font-size: 0.8rem; 
}
.addons-grid { 
	display: flex; 
	flex-wrap: wrap; 
	gap: 1rem; 
	margin-bottom: 2rem; 
}
.addon-chip { 
	border: 1px solid var(--accent-line); 
	padding: 0.8rem 1.5rem; 
	cursor: pointer; 
	font-family: var(--primary-font); 
	transition: all 0.2s; 
	display: flex;
	align-items: center;
	gap: 10px;
	background: transparent;
}
.addon-chip:hover { 
	border-color: var(--white); 
}
.addon-chip input:checked + span { 
	color: var(--white); 
	font-weight: 600; 
}
.addon-chip input:checked ~ span {
	border-color: var(--primary-color);
}

.continue-btn {
	width: 100%; 
	padding: 1.2rem;
	background: var(--white); 
	color: var(--black);
	font-family: var(--heading-font); 
	font-weight: 700;
	border: none; 
	cursor: pointer;
	margin-top: 1rem;
	transition: transform 0.2s;
}

.continue-btn:hover {
	transform: translateY(-2px);
}

/* 6.7 FINAL SUMMARY */
.final-summary-card { 
	background: var(--gray-700); 
	padding: 2rem; 
	border: 1px solid var(--accent-line);
}
.sum-row { 
	display: flex; 
	justify-content: space-between; 
	font-family: var(--primary-font); 
	margin-bottom: 1rem; 
	color: var(--gray-200); 
}
.sum-row.total { 
	border-top: 1px dashed var(--gray-500); 
	padding-top: 1rem; 
	font-size: 1.2rem; 
	color: var(--white); 
	font-weight: 700; 
	margin-bottom: 2rem; 
}
.pay-btn-large { 
	width: 100%; 
	padding: 1.5rem; 
	background: var(--white); 
	color: var(--black); 
	font-family: var(--heading-font); 
	font-weight: 800; 
	border: none; 
	cursor: pointer; 
	margin-top: 1.5rem; 
	transition: transform 0.2s;
}
.pay-btn-large:hover {
	transform: translateY(-2px);
}

.pay-btn-large:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

/* FLOATING BAR */
.floating-bar {
	position: fixed;
	bottom: 0; 
	left: 0; 
	width: 100%;
	background: var(--bg-color);
	border-top: 1px solid var(--accent-line);
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100;
	backdrop-filter: blur(10px);
}
.bar-label { 
	font-family: var(--primary-font); 
	font-size: 0.7rem; 
	color: var(--gray-500); 
	margin-right: 10px; 
}
.bar-price { 
	font-family: var(--heading-font); 
	font-size: 1.5rem; 
	font-weight: 700; 
	color: var(--text-color);
}
.bar-steps { 
	display: flex; 
	gap: 8px; 
}
.step-dot { 
	width: 8px; 
	height: 8px; 
	background: var(--gray-600); 
	border-radius: 50%; 
	transition: background 0.3s; 
}
.step-dot.active { 
	background: var(--white); 
}

/* Payment Form Styles (reused from rental) */
.payment-form {
	margin-top: 2rem;
}

.payment-title {
	font-family: var(--heading-font);
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: var(--text-color);
}

.input-group {
	margin-bottom: 1.5rem;
}

.input-group label {
	display: block;
	font-family: var(--primary-font);
	font-size: 0.9rem;
	color: var(--gray-400);
	margin-bottom: 0.5rem;
}

.input-group input {
	width: 100%;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--accent-line);
	color: var(--text-color);
	font-family: var(--primary-font);
	font-size: 1rem;
	transition: border-color 0.3s;
}

.input-group input:focus {
	outline: none;
	border-color: var(--primary-color);
}

.input-group input[type="datetime-local"] {
	width: 100%;
	padding: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--accent-line);
	color: var(--text-color);
	font-family: var(--primary-font);
	font-size: 1rem;
	transition: border-color 0.3s;
}

.input-group input[type="datetime-local"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
	cursor: pointer;
	opacity: 0.8;
}

.input-group input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
	opacity: 1;
}

.field-note {
	font-family: var(--primary-font);
	font-size: 0.85rem;
	color: var(--gray-500);
	margin-top: 0.5rem;
	margin-bottom: 0;
	font-style: italic;
}

.payment-methods {
	display: flex;
	gap: 1rem;
	margin: 1.5rem 0;
	flex-wrap: wrap;
}

.method-btn {
	flex: 1;
	min-width: 120px;
	padding: 0.75rem 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--accent-line);
	color: var(--text-color);
	font-family: var(--primary-font);
	font-size: 0.9rem;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.method-btn:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--primary-color);
}

.method-btn svg {
	width: 50px;
	height: 50px;
	fill: currentColor;
}

.klarna-btn {
	background: rgba(255, 255, 255, 0.1);
	font-weight: 600;
}

.terms-text {
	font-family: var(--primary-font);
	font-size: 0.85rem;
	color: var(--gray-400);
	text-align: center;
	margin-top: 1rem;
}

.terms-text a {
	color: var(--primary-color);
	text-decoration: none;
}

.terms-text a:hover {
	text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.hero-split { 
		grid-template-columns: 1fr; 
	}
	.step-header { 
		padding: 1.5rem 1rem; 
		flex-wrap: wrap;
	}
	.step-num { 
		margin-right: 1rem; 
	}
	.step-selection { 
		display: none; /* Hide selection text on mobile to save space */
		width: 100%;
		margin-top: 0.5rem;
		margin-right: 0;
	}
	.edit-btn { 
		margin-left: auto; 
	}
	.pkg-scroll-container {
		overflow-x: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.talent-grid {
		grid-template-columns: 1fr;
	}
	.studio-toggle-box {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
	.studio-price {
		align-self: flex-end;
	}
	.floating-bar {
		padding: 1rem;
		flex-direction: column;
		gap: 1rem;
	}
	.bar-info {
		width: 100%;
		text-align: center;
	}
	.bar-steps {
		width: 100%;
		justify-content: center;
	}
}

