/* ==========================================================================
   Nejat CTA Promo Widget
   ========================================================================== */

/* Root section */
.nejat-cta-promo {
	padding-top: var(--nejat-section-pad-v);
	padding-bottom: var(--nejat-section-pad-v);
}

/* Inner container */
.nejat-cta-promo__inner {
	max-width: var(--nejat-max-width);
	margin: 0 auto;
	padding-left: var(--nejat-gutter);
	padding-right: var(--nejat-gutter);
}

/* Card — teal rounded container */
.nejat-cta-promo__card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	background-color: #31bcc8;
	padding: 60px var(--nejat-gutter);
	text-align: center;
}

/* Content block — centred column */
.nejat-cta-promo__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--nejat-gap-sm);
	max-width: 760px;
	margin: 0 auto;
}

/* Headline */
.nejat-cta-promo__headline {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
}

/* Description */
.nejat-cta-promo__description {
	margin: 0;
	font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
	font-weight: 400;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.6;
}

/* Button wrapper */
.nejat-cta-promo__btn-wrap {
	margin-top: var(--nejat-gap-sm);
}

/* Button */
.nejat-cta-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 36px;
	background-color: #ffffff;
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	border-radius: var(--nejat-radius);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.nejat-cta-promo__btn:hover,
.nejat-cta-promo__btn:focus {
	background-color: #f0f0f0;
	color: #1a1a1a;
	text-decoration: none;
}

/* -------------------------------------------------------------------------- */
/* Decorative blob shapes                                                       */
/* -------------------------------------------------------------------------- */

.nejat-cta-promo__deco {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.15);
	pointer-events: none;
}

/* Large blob — top-left */
.nejat-cta-promo__deco--1 {
	width: 150px;
	height: 120px;
	top: -15px;
	left: 50px;
	border-radius: 55% 45% 70% 30% / 40% 65% 35% 60%;
}

/* Medium blob — left edge */
.nejat-cta-promo__deco--2 {
	width: 90px;
	height: 110px;
	top: 15px;
	left: 10px;
	border-radius: 40% 60% 45% 55% / 60% 35% 65% 40%;
}

/* Fluid blob — bottom-left */
.nejat-cta-promo__deco--3 {
	width: 130px;
	height: 85px;
	bottom: -10px;
	left: 130px;
	border-radius: 70% 30% 55% 45% / 45% 55% 45% 55%;
}

/* Small pill — bottom-left dash */
.nejat-cta-promo__deco--4 {
	width: 34px;
	height: 10px;
	bottom: 28%;
	left: 8%;
	border-radius: 5px;
	transform: rotate(-35deg);
}

/* Large blob — top-right */
.nejat-cta-promo__deco--5 {
	width: 110px;
	height: 140px;
	top: -10px;
	right: 60px;
	border-radius: 30% 70% 40% 60% / 55% 40% 60% 45%;
}

/* Fluid blob — bottom-right */
.nejat-cta-promo__deco--6 {
	width: 170px;
	height: 100px;
	bottom: -20px;
	right: 20px;
	border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
}

/* Small pill — right dash */
.nejat-cta-promo__deco--7 {
	width: 26px;
	height: 8px;
	top: 30%;
	right: 12%;
	border-radius: 4px;
	transform: rotate(20deg);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                   */
/* -------------------------------------------------------------------------- */

@media (max-width: 768px) {
	.nejat-cta-promo__card {
		padding: 48px var(--nejat-gutter);
	}
}

@media (max-width: 480px) {
	.nejat-cta-promo__card {
		padding: 36px var(--nejat-gutter);
	}

	/* hide side blobs on small screens to avoid clutter */
	.nejat-cta-promo__deco--5,
	.nejat-cta-promo__deco--6 {
		display: none;
	}
}
