
button {
	font: inherit;
	color: inherit;
	background: 0 0;
	border: 0;
	cursor: pointer
}

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 20px
}

.icon-btn {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 50%;
	transition: transform var(--transition);
	background: 0 0
}

.icon-btn:hover {
	transform: translateY(-3px)
}

.back-btn {
	background: 0 0;
	border: 0;
	font-size: 1.05rem;
	cursor: pointer;
	padding: 6px
}

.hero {
	position: relative;
	min-height: 90vh;
	overflow: hidden;
	font-family: Inter, sans-serif;
	background: #f3ede4
}

.hero-slideshow {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%
}

.hero-slideshow img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: fadeSlideshow 12s infinite
}

.hero-slideshow img:nth-child(1) {
	animation-delay: 0s
}

.hero-slideshow img:nth-child(2) {
	animation-delay: 3s
}

.hero-slideshow img:nth-child(3) {
	animation-delay: 6s
}

.hero-slideshow img:nth-child(4) {
	animation-delay: 9s
}

@keyframes fadeSlideshow {
	0% {
		opacity: 0
	}

	8% {
		opacity: 1
	}

	25% {
		opacity: 1
	}

	33% {
		opacity: 0
	}

	100% {
		opacity: 0
	}
}

.hero-overlay {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	min-height: 90vh;
	padding: clamp(40px, 6vw, 100px);
	color: #111
}

.hero-overlay h1 {
	font-size: clamp(1.8rem, 4vw + 1rem, 4rem);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem
}

.hero-overlay p {
	font-size: clamp(.9rem, 1vw + .6rem, 1.3rem);
	margin-bottom: 1.5rem;
	max-width: 600px
}

.btn {
	display: inline-block;
	background: #111;
	color: #fff;
	padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 32px);
	border-radius: 30px;
	font-weight: 500;
	font-size: clamp(.9rem, 1vw + .4rem, 1.1rem);
	transition: background .3s, transform .2s
}

.btn:hover {
	background: #333;
	transform: translateY(-2px)
}

@media (max-width:900px) {
	.hero-overlay {
		align-items: center;
		text-align: center;
		padding: 50px 6%
	}

	.hero-overlay p {
		max-width: 90%
	}
}

@media (max-width:480px) {
	.hero {
		min-height: 75vh
	}

	.hero-overlay {
		padding: 40px 5%
	}

	.btn {
		width: 100%;
		text-align: center
	}
}

.btn {
	grid-column: span 2;
	padding: 14px;
	background: #b89a5c;
	border: none;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: transform .3s ease, box-shadow .3s ease
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, .15)
}

.contact {
	padding: 80px 20px;
	background: linear-gradient(135deg, #f9f6f1, #fff)
}

.container7 {
	max-width: 900px;
	margin: auto;
	text-align: center;
	padding: 0 20px
}

@media (max-width:480px) {
	.container7 {
		padding: 0 16px
	}
}

.section-title {
	font-size: clamp(1.8rem, 2.4vw, 2.6rem);
	font-weight: 700;
	color: var(--dark);
	margin-bottom: 10px;
	position: relative;
	line-height: 1.3
}

.section-title::after {
	content: "";
	width: 80px;
	height: 3px;
	background: var(--gold);
	display: block;
	margin: 12px auto 0;
	border-radius: 3px
}

.section-sub {
	font-size: clamp(.9rem, 1.1vw, 1.1rem);
	color: var(--gray);
	margin-bottom: 40px;
	line-height: 1.6
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px
}

.contact-form .form-group {
	position: relative
}

.contact-form .form-group.full {
	grid-column: span 2
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 14px;
	border: none;
	border-bottom: 2px solid #ccc;
	background: 0 0;
	font-size: 1rem;
	outline: 0;
	transition: border-color .3s
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: var(--gold)
}

.contact-form label {
	position: absolute;
	top: 14px;
	left: 0;
	font-size: 1rem;
	color: #888;
	pointer-events: none;
	transition: .3s
}

.contact-form input:focus+label,
.contact-form input:valid+label,
.contact-form textarea:focus+label,
.contact-form textarea:valid+label {
	top: -10px;
	font-size: .8rem;
	color: var(--gold)
}

textarea {
	min-height: 120px;
	resize: vertical
}

.btn {
	grid-column: span 2;
	padding: 14px;
	background: #b89a5c;
	border: none;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: transform .3s ease, box-shadow .3s ease
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, .15)
}

.popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px
}

.popup {
	background: #fff;
	padding: 30px;
	border-radius: 10px;
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
	animation: popIn .4s ease
}

.popup h3 {
	font-size: 1.4rem;
	margin-bottom: 10px;
	color: var(--dark)
}

.popup p {
	color: var(--gray);
	margin-bottom: 20px
}

.popup button {
	padding: 10px 20px;
	border: none;
	background: linear-gradient(90deg, var(--gold), var(--gold-light));
	color: #fff;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: transform .3s
}

.popup button:hover {
	transform: scale(1.05)
}

@keyframes popIn {
	from {
		transform: scale(.8);
		opacity: 0
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

@media (max-width:1024px) {
	.contact {
		padding: 60px 15px
	}
}

@media (max-width:768px) {
	.contact-form {
		grid-template-columns: 1fr
	}

	.contact-form .form-group.full {
		grid-column: span 1
	}

	.btn {
		grid-column: span 1
	}
}

@media (max-width:480px) {
	.section-title {
		font-size: 1.6rem
	}

	.section-sub {
		font-size: .9rem
	}

	.contact-form input,
	.contact-form textarea {
		font-size: .95rem;
		padding: 12px
	}

	.btn {
		font-size: .9rem;
		padding: 12px
	}
}

.contact-info {
	padding: 60px 20px;
	background: linear-gradient(135deg, #fff, #f8f5f0)
}

.info-container {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap
}

.info-box {
	display: flex;
	align-items: center;
	gap: 15px;
	background: rgba(255, 255, 255, .7);
	padding: 18px 24px;
	border-radius: 12px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
	backdrop-filter: blur(8px);
	transition: transform .3s ease, box-shadow .3s ease;
	min-width: 260px;
	position: relative
}

.info-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 10px 28px rgba(0, 0, 0, .15)
}

.icon-circle {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #c6a76f, #e4cda1);
	color: #fff;
	flex-shrink: 0
}

.info-title {
	font-size: .9rem;
	font-weight: 600;
	color: #c6a76f;
	margin-bottom: 2px
}

.info-text {
	font-size: 1rem;
	color: #2a2a2a;
	font-weight: 500;
	position: relative
}

.info-text::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0%;
	height: 2px;
	background: #c6a76f;
	transition: width .3s ease
}

.info-box:hover .info-text::after {
	width: 100%
}

@media (max-width:768px) {
	.info-container {
		flex-direction: column;
		gap: 24px
	}

	.info-box {
		justify-content: flex-start;
		min-width: unset
	}
}