

.body-section {
	margin-top: 30px;
}

:root {
	--modern-green: #4CAF50; 
	--card-bg: #2c3e2f;
	--card-border: #3e5e42;
	--hover-green: #3b4d3d; 
	--text-light: #f5f5f5;
}

.main-title-block{
	margin: 0;
	margin-top:150px;
}

.main-title {
	margin: auto;
	font-size: 45px;
	font-weight: 600;
	text-shadow: 0 0 2px #ffffff1a, 0 0 4px #ffffff4d, 0 0 8px #fff6, 0 0 136px #76b72f47;
	letter-spacing: -2px;
	color: #fff;
	background: linear-gradient(135deg, #fff, #76b72fcc, #436f14cc, #83e517cc, #cdedab, #fff);
	background-size: 200% 200%;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: gradientShift 4s ease-in-out infinite;
}

	.main-title::before {
		content: "";
		width: auto;
		height: 0px;
		box-shadow: -2px 14px 20px 1px #ffffff4d;
		display: flex;
	}

.aboutSubtitle {
	padding: 30px 10% 20px 10%;
	color: #a39f9f;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	margin-top: -20px;
}

.aboutSubtitle p {
	margin: 0 auto;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	font-weight: 600;
	text-align: center;
	max-width: 720px;
}


.section-contact {
    display: flex;
    gap: 2rem;
    width: 70%;
    justify-content: center;
    margin: -1rem auto;
}

.section-contact .contact-form {
     flex: 1;
     background: #1e1e1e;
     padding: 1rem;
     border-radius: 12px;
 }

.section-contact .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
 }

.section-contact .contact-form input,
.section-contact .contact-form textarea {
	padding: 18px;
	box-sizing: border-box;
	border: none;
	background-color: #2c2c2c;
	color: #ffffff;
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	width: 100%;
	margin-top: 17px;
}

.section-contact .contact-form input::placeholder,
.section-contact .contact-form textarea::placeholder {
     font-weight: 600;
     color: #aaa;
}

.validation {
	font-size: 13px;
	font-weight: 600;
	color: red;
	margin-top: 5px;
	
}


.section-contact .contact-form .submit-btn {
	align-self: flex-start;
	padding: 15px 20px;
	margin-top: 1rem;
	background: #fff;
	color: #1c1d1b;
	border: none;
	border-radius: 20px;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
	opacity: 0.9;
	transition: background 0.2s, color 0.2s;
}

.section-contact .contact-form .submit-btn:hover {
     background: #9bbe2c;
     color: #fff;
}

.text-success,
.text-danger {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.text-success {
    background: #1f3f2f;
    color: #6aff6a;
    border: 1px solid #6aff6a;
}

.text-danger {
    background: #3f1f1f;
    color: #ff6a6a;
    border: 1px solid #ff6a6a;
}

.section-contact .contact-map {
	flex: 1;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #f5f5f5;
}

.section-contact .contact-map .map {
     width: 100%;
     height: 100%;
     min-height: 400px;
     border: 0;
     filter: grayscale(80%) contrast(1.2);
 }

.section-contact .map-overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(30, 30, 30, 0.85);
    padding: 1.2rem;
    border-radius: 8px;
    max-width: 400px;
	font-size: 8px;
    color: #fff;
}

.section-contact .map-overlay .contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     grid-template-rows: auto auto;
     gap: 0.75rem;
     align-items: center;
 }

.section-contact .map-overlay .info-item {
      font-size: 0.8rem;
      line-height: 1.3;
}

.section-contact .map-overlay .info-item a {
      color: #ccc;
      text-decoration: none;
 }

.section-contact .map-overlay .info-item a:hover {
	color: #fff;
}

.section-contact .map-overlay .social-icons {
       grid-column: 2;
       grid-row: 2;
       display: flex;
       justify-content: center;
       gap: 0.75rem;
}

.section-contact .map-overlay .social-icons a {
       font-size: 1.1rem;
       color: #ccc;
       transition: color 0.2s;
}

.section-contact .map-overlay .social-icons a:hover {
        color: #fff;
 }


.clearfix input:focus,
.clearfix textarea:focus {
	border-color: white;
	background-color: #333;
	outline: none;
	box-shadow: 0 0 2px 0.5px white;
}

.container{
	margin-bottom: 100px;
}

/*Responsivity*/


@media only screen and (max-width: 992px) {
	.section-contact .contact-map .map {
		width: 100%;
		height: 100%;
		min-height: 300px;
	}


	.section-contact .map-overlay {
		max-width: 350px;
	}

}


@media only screen and (max-width: 950px) {
	.section-contact {
		display: block;
		width: 60%;
	}

	.section-contact .contact-form form {
		display: flex;
		flex-direction: column;
		gap: 1.2rem;
	}

	.section-contact .contact-map {
		margin-top: 40px;
	}
}

	@media only screen and (max-width: 840px) {
		.main-title {
			font-size: 35px;
		}

		.aboutSubtitle p {
			font-size: 1.3rem;
			max-width: 500px;
		}
	}

	@media only screen and (max-width: 740px) {
		.section-contact .map-overlay {
			max-width: 300px;
			font-size: 7px;
		}

		.section-contact .map-overlay .info-item {
			font-size: 0.6rem;
		}


		.section-contact .map-overlay .social-icons {
			gap: 0.55rem;
		}

		.section-contact .map-overlay .social-icons a {
			font-size: 1rem;
		}
	}

	@media only screen and (max-width: 660px) {
		.section-contact .map-overlay {
			max-width: 270px;
			font-size: 6px;
		}

		.section-contact .map-overlay .info-item {
			font-size: 0.5rem;
		}


		.section-contact .map-overlay .social-icons {
			gap: 0.45rem;
		}

		.section-contact .map-overlay .social-icons a {
			font-size: 0.8rem;
		}
	}


	@media only screen and (max-width: 612px) {
		.aboutSubtitle p {
			font-size: 1.2rem;
			max-width: 400px;
		}
	}

	@media only screen and (max-width: 576px) {
		.section-contact .map-overlay {
			max-width: 240px;
			font-size: 5px;
		}

		.section-contact .map-overlay .info-item {
			font-size: 0.4rem;
		}


		.section-contact .map-overlay .social-icons {
			gap: 0.35rem;
		}

		.section-contact .map-overlay .social-icons a {
			font-size: 0.7rem;
		}
	}

	@media only screen and (max-width: 500px) {
		.aboutSubtitle p {
			font-size: 1rem;
			max-width: 300px;
		}
	}

	@media only screen and (max-width: 420px) {

		.section-contact .contact-form .submit-btn {
			padding: 12px 17px;
			margin-top: 1rem;
			font-size: 10px;
		}

		.section-contact .contact-map .map {
			width: 100%;
			height: 100%;
			min-height: 200px;
		}

		.section-contact .map-overlay {
			max-width: 170px;
			font-size: 4px;
		}

		.section-contact .map-overlay .info-item {
			font-size: 0.4rem;
		}


		.section-contact .map-overlay .social-icons {
			gap: 0.25rem;
		}

		.section-contact .map-overlay .social-icons a {
			font-size: 0.7rem;
		}

		.section-contact .map-overlay {
			padding: 1rem;
		}


		.section-contact {
			width: 70%;
		}

		.section-contact .contact-form input,
		.section-contact .contact-form textarea {
			width: 100%;
			margin-top: 13px;
			font-size: 0.8rem;
		}
	}

	@media only screen and (max-width: 375px) {
		.aboutSubtitle p {
			font-size: 0.8rem;
			max-width: 250px;
			margin-top:-20px;
		}

		.aboutTitle {
			margin-top: 10px;
		}

		.main-title {
			font-size: 23px;
		}

		.section-contact .contact-form input,
		.section-contact .contact-form textarea {
			font-size: 0.7rem;
		}
	}
