@charset "utf-8";

/* CSS Document */
/* =========================================================
ROOT
========================================================= */
:root {
	--pink: #e845b9;
	--pink2: #cf42d3;
	--dark: #151534;
	--text: #57576d;
	--border: #f3dcec;
	--shadow: 0 20px 60px rgba(0, 0, 0, .06);
	--radius: 34px;
}

/* =========================================================
RESET
========================================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: linear-gradient(180deg, #fff, #fff8fd);
	color: var(--dark);
	overflow-x: hidden;
}

img {
	display: block;
	max-width: 100%;
}

a {
	text-decoration: none;
}

.container {
	width: min(1500px, 92%);
	margin: auto;
}

.about {
	padding: 160px 0 90px;
}

.about-wrapper {
	display: grid;
	grid-template-columns: 620px 1fr;
	gap: 60px;
}

/* =========================================================
LEFT IMAGE
========================================================= */
.about-image {
	position: relative;
}

.image-card {
	position: relative;
	overflow: hidden;
	border-radius: 50px;
}

.image-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-card::before {
	content: '';
	position: absolute;
	width: 900px;
	height: 900px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(232, 69, 185, .15), transparent 70%);
	left: -250px;
	top: -150px;
}

/* QUOTE */
.quote-box {
	position: absolute;
	left: 40px;
	bottom: 40px;
	width: 340px;
	background: #fff;
	padding: 35px;
	border-radius: 28px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
	display: flex;
	gap: 20px;
}

.quote-box i {
	color: var(--pink);
	font-size: 2rem;
}

.quote-box p {
	line-height: 1.8;
	color: var(--text);
}

.about-image {
	position: relative;
	overflow: hidden;
	border-radius: 48px;
}

.about-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 48px;
}

.about-image {
	isolation: isolate;
}

/* Value */

.values-card {
	background: #fff;
	border: 1px solid #f1ebef;
	border-radius: 32px;
	padding: 50px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .04);
	height: 100%;
	margin-top: 50px;
}

.values-tag {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #d92e86;
	margin-bottom: 16px;
}

.values-card h3 {
	font-size: 32px;
	line-height: 1.2;
	font-weight: 700;
	color: #232833;
	margin-bottom: 30px;
}

.values-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 18px;
}

.values-list li {
	display: flex;
	align-items: center;
	font-size: 17px;
	color: #4b5563;
	font-weight: 500;
}

.values-list li::before {
	content:"\2713";
	width: 28px;
	height: 28px;
	margin-right: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #ffe8f5;
	color: #d92e86;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}

.values-card {
	transition: .35s ease;
}

.values-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 25px 60px rgba(217, 46, 134, .10);
}


/* =========================================================
RIGHT CONTENT
========================================================= */
.section-tag {
	color: var(--pink);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
	margin-bottom: 20px;
}

.section-tag::before {
	content: '';
	width: 70px;
	height: 3px;
	background: var(--pink);
	display: inline-block;
	margin-right: 18px;
	margin-bottom: 5px;
	border-radius: 20px;
}

.about-content h1 {
	font-size: 5rem;
	line-height: 1.05;
	margin-bottom: 24px;
}

.about-content h1 span {
	color: var(--pink);
}

.about-content h2 {
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 24px;
}

.about-content p {
	color: var(--text);
	line-height: 2;
	font-size: 1.08rem;
}

/* =========================================================
SERVICE GRID
========================================================= */
.service-grid {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

/* CARD */
.service-card {
	background: #fff;
	border-radius: 28px;
	padding: 35px;
	border: 1px solid #f4e7f0;
	box-shadow: 0 10px 35px rgba(0, 0, 0, .04);
	transition: .35s;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

/* ICON */
.service-icon {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, #fff, #fff4fc);
	box-shadow: 0 15px 35px rgba(232, 69, 185, .15);
	margin-bottom: 28px;
}

.service-icon i {
	font-size: 1.8rem;
	color: var(--pink);
}

/* CARD TEXT */
.service-card h3 {
	font-size: 1.45rem;
	margin-bottom: 18px;
}

.line {
	width: 50px;
	height: 4px;
	border-radius: 20px;
	background: var(--pink);
	margin-bottom: 18px;
}

/* =========================================================
SIGNATURE PANEL
========================================================= */
.signature-panel {
	margin-top: 35px;
	background: linear-gradient(135deg, #fff, #fff7fc);
	border-radius: 34px;
	padding: 45px;
	border: 1px solid #f4e7f0;
}

.signature-panel h4 {
	color: var(--pink);
	font-size: 2rem;
	margin-bottom: 20px;
	font-family: 'Sacramento', cursive;
}

.signature-panel p {
	margin-bottom: 28px;
}

.signature {
	font-size: 3rem;
	font-family: 'Allura', cursive;
}

.signature small {
	display: block;
	margin-top: 10px;
	font-size: 1rem;
	color: var(--text);
	font-family: 'Poppins';
}

/* =========================================================
CTA
========================================================= */
.cta {
	margin-top: 45px;
	text-align: center;
}

.cta a {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 22px 55px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f15bcf, #cf42d3);
	color: #fff;
	font-weight: 600;
	font-size: 1.1rem;
	box-shadow: 0 20px 40px rgba(232, 69, 185, .28);
}

/* =========================================================
RESPONSIVE
========================================================= */
@media(max-width:1200px) {
	.about-wrapper {
		grid-template-columns: 1fr;
	}

	.service-grid {
		grid-template-columns: 1fr;
	}
}

@media(max-width:980px) {
	.contact-btn {
		display: none;
	}
}

@media(max-width:768px) {
	.about-content h1 {
		font-size: 3.3rem;
	}

	.about-content h2 {
		font-size: 1.4rem;
	}

	.quote-box {
		position: relative;
		width: 100%;
		left: auto;
		bottom: auto;
		margin-top: 25px;
	}

	.values-card {
		padding: 35px 28px;
	}

	.values-card h3 {
		font-size: 26px;
	}

	.values-list li {
		font-size: 15px;
	}

}