:root {
	--landscape-primary: #ffffff;
	--landscape-primary-text: #000000;
	--landscape-success: #22c55e;
	--landscape-bg-black: #000000;
	--landscape-card-bg: #000000;
	--landscape-input-bg: #1a1a1a;
	--landscape-border: #4B4B4B;
	--landscape-text: #f8f9fa;
	--landscape-text-muted: #bbbbbb;
}


.landscape-form-wrapper {
	max-width: 680px;
	margin: 0 auto;
	background: var(--landscape-card-bg);
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--landscape-border);
}

.landscape-logo-header {
	padding: 1.5rem 2rem 1rem;
	background: #000000;
	text-align: center;
}

.landscape-logo-img {
	max-width: 200px;
	width: 100%;
	height: auto;
	display: inline-block;
}

.landscape-logo-divider {
	height: 1px;
	background: var(--landscape-border);
	margin: 0 2rem;
}

/* Stepper */
.landscape-stepper {
	display: flex;
	justify-content: space-between;
	padding: 1.25rem 2rem;
	background: #000000;
	border-bottom: 1px solid var(--landscape-border);
}

.landscape-step-item {
	text-align: center;
	flex: 1;
	position: relative;
}



.landscape-step-circle {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #222222;
	color: #cccccc;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 0.5rem;
	position: relative;
	z-index: 1;
	transition: all 0.3s ease;
}

.landscape-step-item.active .landscape-step-circle,
.landscape-step-item.done .landscape-step-circle {
	background: var(--landscape-primary);
	color: var(--landscape-primary-text);
}

.landscape-step-item.done .landscape-step-circle {
	background: var(--landscape-success);
	color: white;
}

.landscape-step-title {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--landscape-text-muted);
}

.landscape-step-item.active .landscape-step-title,
.landscape-step-item.done .landscape-step-title {
	color: var(--landscape-text);
	font-weight: 600;
}

/* Form content */
.landscape-step-content {
	padding: 2rem 2.5rem;
	display: none;
}

.landscape-step-content.active {
	display: block;
}

.landscape-form-label {
	font-weight: 500;
	color: var(--landscape-text);
	margin-bottom: 0.5rem;
	display: block;
}

.landscape-required {
	color: #ff6b6b;
}

.landscape-optional {
	color: #888;
	font-weight: normal;
	font-size: 0.9em;
}

.landscape-services-hint {
	color: var(--landscape-text-muted);
	font-size: 0.95rem;
}

.landscape-step2-error {
	color: #ff6b6b;
	font-size: 0.9rem;
	margin-top: -0.5rem;
	margin-bottom: 1rem;
	padding: 0;
}

.landscape-form-control {
	width: 100%;
	background-color: var(--landscape-input-bg);
	color: var(--landscape-text);
	border: 1px solid var(--landscape-border);
	border-radius: 10px !important;
	padding: 0.75rem 1rem;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.landscape-form-control::placeholder {
	color: #777777;
}

.landscape-form-control.is-invalid {
	border-color: #ff6b6b !important;
	background-color: var(--landscape-input-bg) !important;
}

.landscape-form-control.is-invalid:focus {
	border-color: #ff6b6b !important;
	box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25) !important;
}

.landscape-invalid-feedback {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.landscape-form-control.is-invalid + .landscape-invalid-feedback {
	display: block !important;
}

.landscape-terms-error {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.landscape-terms-error.show {
	display: block !important;
}

/* Phone input */
.landscape-phone-wrapper {
	display: flex;
	align-items: center;
}

.landscape-phone-prefix {
	background: var(--landscape-input-bg);
	border: 1px solid var(--landscape-border);
	border-right: none;
	border-radius: 10px 0 0 10px;
	padding: 0.5rem 1rem;
	color: var(--landscape-text);
	font-weight: 500;
	user-select: none;
}

.landscape-phone-input {
	border-radius: 0 10px 10px 0 !important;
	flex: 1;
}

/* Service Sections */
.landscape-service-section {
	border: 1px solid var(--landscape-border);
	border-radius: 10px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
	background: #0a0a0a;
}

.landscape-service-title {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--landscape-text);
}

/* Bottom row: disclaimer (left, flex) + price (right, only needed width) */
.landscape-service-bottom {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-top: 1rem;
}

.landscape-service-disclaimer {
	flex: 1;
	min-width: 0;
	font-size: 0.8125rem;
	color: var(--landscape-text-muted);
	line-height: 1.45;
}

.landscape-disclaimer-text {
	position: relative;
}

.landscape-disclaimer-short {
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.landscape-disclaimer-full {
	display: none;
	margin: 0;
}

.landscape-service-disclaimer.is-expanded .landscape-disclaimer-short {
	display: none;
}

.landscape-service-disclaimer.is-expanded .landscape-disclaimer-full {
	display: block;
}

.landscape-read-more {
	background: none;
	border: none;
	padding: 0;
	margin: 0.25rem 0 0;
	font-size: 0.8125rem;
	color: var(--landscape-primary);
	cursor: pointer;
	text-decoration: underline;
	appearance: none;
}

.landscape-read-more:hover {
	opacity: 0.9;
}

.landscape-service-price-wrap {
	flex-shrink: 0;
	flex-grow: 0;
	min-width: fit-content;
}

.landscape-service-price {
	font-size: 1.25rem;
	color: #ffffff;
	text-align: right;
	font-weight: 600;
	white-space: nowrap;
}

.landscape-service-input.is-invalid {
	border-color: #ff6b6b !important;
	background-color: var(--landscape-input-bg) !important;
}

.landscape-service-error {
	color: #ff6b6b;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.landscape-service-input.is-invalid + .landscape-service-error {
	display: block !important;
}

/* Buttons */
.landscape-btn {
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.25s;
	font-size: 1rem;
}

.landscape-btn-primary {
	background: var(--landscape-primary);
	color: var(--landscape-primary-text);
}


.landscape-btn-outline-secondary {
	border: 1px solid #444444;
	color: var(--landscape-text);
	background: transparent;
}


.landscape-btn-lg {
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
}

.landscape-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.landscape-table {
    border-bottom: 1px solid darkgray;
}
/* Utility classes */
.landscape-mb-4 { margin-bottom: 1.5rem; color: #ffffff; }
.landscape-mb-3 { margin-bottom: 1rem; color: #ffffff; }
.landscape-text-center { text-align: center; }
.landscape-text-end { text-align: right; }
.landscape-text-muted { color: #fff; }
.landscape-fw-bold { font-weight: 700; }
.landscape-d-grid { display: grid; }
.landscape-d-flex { display: flex; }
.landscape-gap-3 { gap: 1rem; }
.landscape-flex-grow-1 { flex: 1; }
.landscape-row { display: flex; flex-wrap: wrap; }
.landscape-g-3 { gap: 1rem; }
.landscape-col-6 { flex: 0 0 calc(50% - 0.5rem); max-width: calc(50% - 0.5rem); }

/* Invoice Table */
.landscape-table-wrapper {
	overflow-x: auto;
	margin-bottom: 1.5rem;
}

.landscape-table {
	width: 100%;
	border-collapse: collapse;
}

.landscape-invoice-table th,
.landscape-invoice-table td {
	padding: 0.75rem;
	border-bottom: 1px solid var(--landscape-border);
	color: var(--landscape-text);
	text-align: left;
}

.landscape-invoice-table th {
	font-weight: 600;
	background: #0a0a0a;
}

.landscape-invoice-table tfoot td {
	border-bottom: none;
	padding-top: 1rem;
}

.landscape-invoice-total {
	font-size: 1.5rem;
	font-weight: 700;
}

.landscape-disclaimer {
	font-size: 0.875rem;
	margin-top: 0.75rem;
}

/* Checkbox */
.landscape-checkbox-label {
	display: flex;
	align-items: flex-start;
	cursor: pointer;
	color: var(--landscape-text);
}

.landscape-checkbox-label input[type='checkbox'] {
	margin-right: 0.5rem;
	margin-top: 0.25rem;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

/* Success Screen */
.landscape-success-screen {
	text-align: center;
	padding: 4rem 2rem;
}

.landscape-success-icon {
	font-size: 5rem;
	color: #ffffff;
	margin-bottom: 1.5rem;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: var(--landscape-success);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
}

/* Popup Styles */
.landscape-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	z-index: 999999;
	overflow-y: auto;
	padding: 2rem 1rem;
}

.landscape-popup-content {
	position: relative;
	max-width: 700px;
	margin: 2rem auto;
}
.landscape-form-control:focus {
	outline: none;
	border-color: var(--landscape-primary);
	background-color: var(--landscape-input-bg);
	color: var(--landscape-text);
}
button.landscape-popup-close svg {
    height: 100%;
}
.landscape-popup-close {
	position: absolute;
    top: -50px;
    right: 0;
    background: #fff;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.landscape-popup-close:hover svg {
    fill: #fff;
}

body.landscape-popup-open {
	overflow: hidden;
}
@media (max-width: 776px) {
.landscape-logo-img {
	max-width: 140px;
}
}
/* Mobile Responsiveness */
@media (max-width: 576px) {
	.landscape-form-wrapper { border-radius: 12px; }
	.landscape-stepper { padding: 1rem 1.25rem; }
	.landscape-step-content { padding: 1.75rem 1.5rem; }
	.landscape-d-flex.landscape-gap-3 {
		flex-direction: column;
	}
	.landscape-d-flex.landscape-gap-3 > * {
		width: 100%;
	}
	.landscape-col-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.landscape-service-bottom {
		flex-direction: column;
		gap: 0.5rem;
	}
	.landscape-service-price-wrap {
		align-self: flex-end;
	}
	.landscape-popup-content {
		margin: 1rem auto;
	}
	.landscape-popup-close {
		top: -35px;
		font-size: 2rem;
	}
}

@media (max-width: 400px) {
	.landscape-step-title { font-size: 0.75rem; }
	.landscape-step-circle { width: 34px; height: 34px; font-size: 0.9rem; }
}
