:root {
	--primary: #007880;
	--accent: #FDC57B;
	--text: #333333;
	--light-bg: #f8f8f8;
	--white: #ffffff;
	--light: #f8fbfc;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	color: var(--text);
	line-height: 1.6;
	background-color: gainsboro;
	margin: 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 80px 0;
}

h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 60px;
	color: var(--primary);
	text-align: center;
}

h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--primary);
}


/* ===== HEADER ===== */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	transition: var(--transition);
}

header.scrolled {
	padding: 10px 0;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	transition: var(--transition);
}

.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
}

.logo span {
	color: var(--accent);
}

.logo svg {
	width: 40px;
	height: 40px;
	margin-right: 10px;
}



/* Section 1 Styles */
.cards-container {
	display: flex;
	gap: 70px;
	justify-content: center;
	flex-wrap: wrap;
}

.card {
	background: var(--light-bg);
	border-radius: 12px;
	padding: 40px;
	width: 100%;
	max-width: 400px;
	transition: transform 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
}

.card-icon {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 20px;
}

.card h3 {
	margin-bottom: 15px;
}

.card p {
	margin-bottom: 25px;
}

.btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: var(--primary);
	color: white;
	text-decoration: none;
	border-radius: 6px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn:hover {
	background-color: #006066;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline {
	background-color: transparent;
	border: 2px solid var(--primary);
	color: var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: white;
}

/* Section 2 Styles */
.steps-container {
	max-width: 800px;
	margin: 0 auto;
}

.step {
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #e0e0e0;
}

.step:last-child {
	border-bottom: none;
}

.option-group {
	margin-bottom: 20px;
}

.option {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	padding: 15px;
	border-radius: 8px;
	background-color: var(--light-bg);
	cursor: pointer;
	transition: all 0.2s ease;
}

.option:hover {
	background-color: #e9e9e9;
}

.option input[type="radio"] {
	margin-right: 15px;
	accent-color: var(--primary);
}

.option-label {
	flex-grow: 1;
}

.option-price {
	color: var(--primary);
	font-weight: 600;
}

.text-input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	margin-top: 10px;
}

.text-input:focus {
	outline: none;
	border-color: var(--primary);
}

.form-placeholder {
	background-color: var(--light-bg);
	padding: 30px;
	border-radius: 8px;
	text-align: center;
margin-top: -30px;
}

.total {
	font-size: 1.2rem;
	font-weight: 600;
	text-align: right;
	margin: 20px 0;
}

.total-amount {
	color: var(--primary);
	font-size: 1.5rem;
}

/* Section 3 Styles */
.benefits-list {
	max-width: 600px;
	margin: 0 auto;
}

.benefits-list li {
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
	list-style-type: none;
}

.benefits-list li:before {
	content: "✓";
	color: var(--accent);
	font-weight: bold;
	position: absolute;
	left: 0;
}

.disclaimer {
	font-size: 0.9rem;
	color: #666;
	margin-top: 30px;
	font-style: italic;
}

/* Modal for external links */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	justify-content: center;
	align-items: center;
}

.modal-content {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	max-width: 500px;
	text-align: center;
}

.modal-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

#available-times button.selected {
	background-color: #007880;
	color: white;
	border-color: #007880;
}

/* Background particles */
#tsparticles {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* Forms */
.form-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 30px;
	background-color: #f8f8f8;
	border-radius: 12px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-row {
	display: flex;
	flex-direction: column;
}

label1 {
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 8px;
	color: #007880;
}

input {
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

input:focus {
	outline: none;
	border-color: #007880;
	box-shadow: 0 0 0 2px rgba(0, 120, 128, 0.2);
}

input::placeholder {
	color: #aaa;
}

@media (max-width: 600px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
}