@charset "utf-8";

.contact-section {
	width: 100%;
	position: relative;
	padding: 100px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at top right, rgba(255, 0, 180, .08), transparent 30%),
		linear-gradient(to bottom, #faf9fc, #f6f2f8);
}

.contact-section h2 {
	font-size: 58px;
}

/* DOTS */
.contact-section::before {
	content: "";
	position: absolute;
	top: 40px;
	left: 40px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(#f1b4dd 2px, transparent 2px);
	background-size: 18px 18px;
	opacity: .45;
}

.contact-section::after {
	content: "";
	position: absolute;
	top: 160px;
	right: 50px;
	width: 120px;
	height: 120px;
	background-image: radial-gradient(#f1b4dd 2px, transparent 2px);
	background-size: 18px 18px;
	opacity: .45;
}

/* TOP */
.top {
	text-align: center;
	margin-bottom: 70px;
}

.small-title {
	color: #e541b6;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 700;
	margin-bottom: 20px;
	display: inline-block;
	position: relative;
}

.small-title::after {
	content: "";
	width: 55px;
	height: 4px;
	border-radius: 10px;
	background: linear-gradient(90deg, #ff49c6, #b74bff);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -12px;
}

.top h1 {
	font-size: 72px;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 28px;
}

.top h1 span {
	background: linear-gradient(90deg, #ff49c6, #b74bff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.top p {
	font-size: 24px;
	line-height: 1.8;
	color: #555;
}

/* MAIN GRID */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr !important;
	gap: 35px;
	padding-bottom: 100px;
}

/* CARDS */
.card {
	background: rgba(255, 255, 255, .75);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 105, 200, .15);
	border-radius: 30px;
	padding: 40px;
	box-shadow:
		0 10px 35px rgba(170, 130, 180, .12);
}

/* LEFT */
.profile-card {
	position: relative;
}

.profile-content {
	display: flex;
	gap: 35px;
}

.profile-image img {
	width: 260px;
	border-radius: 26px;
	display: block;
}

.profile-info h2 {
	font-size: 58px;
	letter-spacing: 4px;
	color: #d843b5;
	margin-bottom: 5px;
}

.profile-info h3 {
	font-size: 28px;
	letter-spacing: 1px;
	margin-bottom: 25px;
}

.profile-line {
	width: 60px;
	height: 4px;
	border-radius: 20px;
	background: linear-gradient(90deg, #ff49c6, #b74bff);
	margin-bottom: 25px;
}

.profile-info p {
	font-size: 21px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 30px;
}

/* CONTACT BUTTONS */
.contact-box {
	display: flex;
	align-items: center;
	gap: 18px;
	background: #fff;
	padding: 18px;
	border-radius: 20px;
	margin-bottom: 18px;
	box-shadow: 0 8px 20px rgba(180, 150, 190, .12);
}

.contact-icon {
	width: 62px;
	height: 62px;
	min-width: 62px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #ff49c6, #b74bff);
	color: #fff;
	font-size: 24px;
}

.contact-text small {
	display: block;
	color: #555;
	margin-bottom: 4px;
}

.contact-text a {
	color: #d92e86;
}

.contact-text strong {
	color: #e53ab6;
	font-size: 17px;
}

/* SOCIAL */
.socials {
	border-top: 1px solid rgba(0, 0, 0, .08);
	margin-top: 35px;
	padding-top: 35px;
}

.socials h4 {
	text-align: center;
	margin-bottom: 25px;
	color: #b16c9f;
	letter-spacing: 3px;
	padding-top: 15px;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 18px;
}

.social-icons a {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(180deg, #ff49c6, #b74bff);
	color: #fff;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	transition: .3s;
}

.social-icons a:hover {
	transform: translateY(-5px);
}

/* RIGHT */
.tools-header {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 35px;
}

.tools-icon {
	width: 68px;
	height: 68px;
	min-width: 68px;
	border-radius: 50%;
	background: linear-gradient(180deg, #ff49c6, #b74bff);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	box-shadow: 0 10px 25px rgba(220, 120, 220, .25);
}

.tools-header h2 {
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 18px;
}

.tools-header p {
	color: #555;
	line-height: 1.9;
	font-size: 18px;
}

.tool-line {
	width: 55px;
	height: 4px;
	border-radius: 20px;
	background: linear-gradient(90deg, #ff49c6, #b74bff);
	margin-bottom: 20px;
}

/* TOOLS GRID */
.tools-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 30px;
}

.tool-box {
	background: #fff;
	border-radius: 20px;
	padding: 28px;
	box-shadow: 0 8px 20px rgba(180, 150, 190, .10);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 150px;
}

.tool-box i {
	font-size: 52px;
	margin-bottom: 15px;
}

.tool-box h4 {
	font-size: 18px;
	margin-bottom: 6px;
}

.tool-box span {
	color: #666;
	font-size: 14px;
}

.script {
	margin-top: 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #e052bc;
	font-size: 38px;
	font-family: 'Caveat', cursive;
}

/* STATS */
.stats {
	width: 1500px;
	max-width: 100%;
	margin: 0 auto;
	margin-top: 35px;
	background: linear-gradient(90deg, #ff4ba5, #8b4dff);
	border-radius: 28px;
	padding: 40px;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 25px;
	color: #fff;
	box-shadow: 0 15px 40px rgba(180, 120, 220, .22);
}

.stat {
	display: flex;
	align-items: center;
	gap: 18px;
}

.stat i {
	font-size: 42px;
}

.stat h3 {
	font-size: 42px;
	line-height: 1;
	margin-bottom: 8px;
}

.stat p {
	opacity: .95;
}

/* =========================
ICON BUTTON HOVER
========================= */
.social-icons a,
.contact-icon,
.tools-icon,
.tool-box {
	transition: all .35s ease;
}

.social-icons a:hover {
	transform: translateY(-8px) scale(1.08);
	box-shadow: 0 15px 25px rgba(233, 65, 182, .35);
}

.contact-box:hover .contact-icon {
	transform: scale(1.08) rotate(-6deg);
	box-shadow: 0 12px 25px rgba(233, 65, 182, .35);
}

.tools-icon:hover {
	transform: rotate(12deg) scale(1.08);
}

.tool-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 35px rgba(180, 120, 220, .18);
}

.tool-box:hover i {
	transform: scale(1.12);
	color: #d94bc0;
}

.tool-box i {
	transition: .35s ease;
}

/* =========================
STATS HOVER
========================= */
.stat {
	position: relative;
	transition: .35s ease;
}

.stat::after {
	content: "";
	position: absolute;
	inset: -12px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .08);
	opacity: 0;
	transition: .35s ease;
}

.stat:hover {
	transform: translateY(-6px);
}

.stat:hover::after {
	opacity: 1;
}

.stat i {
	transition: .35s ease;
}

.stat:hover i {
	transform: scale(1.15) rotate(-8deg);
}

/* =========================
COUNTER ANIMATION
========================= */
.counter {
	display: inline-block;
	animation: counterPop 1s ease;
}

@keyframes counterPop {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(.8);
	}

	60% {
		transform: translateY(-6px) scale(1.08);
	}

	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

/* =========================
FLOATING CARD EFFECT
========================= */
.card {
	transition:
		transform .45s ease,
		box-shadow .45s ease;
}

.card:hover {
	transform: translateY(-10px);
	box-shadow:
		0 20px 45px rgba(180, 120, 220, .18);
}

/* =========================
GRADIENT GLOW
========================= */
.card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 30px;
	background:
		radial-gradient(circle at top left,
			rgba(255, 90, 220, .12),
			transparent 35%);
	opacity: 0;
	transition: .45s ease;
	pointer-events: none;
}

.card:hover::before {
	opacity: 1;
}

/* RESPONSIVE */
@media(max-width:1200px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.stats {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width:850px) {
	.top h1 {
		font-size: 52px;
	}

	.top p {
		font-size: 18px;
	}

	.profile-content {
		flex-direction: column;
	}

	.profile-image img {
		width: 100%;
	}

	.tools-grid,
	.contact-grid,
	.stats  {
		grid-template-columns: 1fr !important;
	} 
}

@media(max-width:600px) {
	.contact-section {
		padding: 70px 20px;
	}

	.top h1 {
		font-size: 40px;
	}

	.profile-info h2 {
		font-size: 42px;
	}

	.profile-info h3 {
		font-size: 22px;
	}

	.script {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}