/* conatct us section */

.contact-us-sec-success {
  background: #ede7e7;
  padding: 3rem 1rem;
  margin-top: calc(90px + 86px);
}

/* WRAPPER */
.contact-us-wrapper-success {
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.contact-us-sec-success .contact-us-card-success {
	background: #ffffff;
	border-radius: 28px;
	min-height: 520px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
}

/* Success Content Container */
.contact-us-sec-success .success-content {
	text-align: center;
	max-width: 600px;
	width: 100%;
}

/* Success Icon Container */
.contact-us-sec-success .success-icon-container {
	width: 120px;
	height: 120px;
	margin: 0 auto 2rem;
	position: relative;
	animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-us-sec-success .success-icon-circle {
	width: 120px;
	height: 120px;
	background: linear-gradient(135deg, #0f7a7a 0%, #0d6868 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 15px 35px rgba(15, 122, 122, 0.3);
	position: relative;
}

.contact-us-sec-success .success-icon-circle::before {
	content: '';
	position: absolute;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(15, 122, 122, 0.1);
	animation: pulse 2s ease-out infinite;
}

/* Checkmark SVG */
.contact-us-sec-success .checkmark-svg {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: block;
	stroke-width: 3;
	stroke: #ffffff;
	stroke-miterlimit: 10;
	position: relative;
	z-index: 1;
}

.contact-us-sec-success .checkmark-circle {
	stroke-dasharray: 166;
	stroke-dashoffset: 166;
	stroke-width: 3;
	stroke-miterlimit: 10;
	stroke: #ffffff;
	fill: none;
	animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) 0.2s forwards;
}

.contact-us-sec-success .checkmark-check {
	transform-origin: 50% 50%;
	stroke-dasharray: 48;
	stroke-dashoffset: 48;
	animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

/* Success Title */
.contact-us-sec-success .success-title {
	font-size: 2.75rem;
	color: #2d3748;
	margin-bottom: 1rem;
	font-weight: 700;
	animation: fadeInUp 0.6s ease-out 0.4s both;
	line-height: 1.2;
}

/* Success Subtitle */
.contact-us-sec-success .success-subtitle {
	font-size: 1.25rem;
	color: #0f7a7a;
	margin-bottom: 1.5rem;
	font-weight: 600;
	animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Success Message */
.contact-us-sec-success .success-message {
	font-size: 1.125rem;
	color: #4a5568;
	line-height: 1.7;
	margin-bottom: 2rem;
	animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* Action Buttons */
.contact-us-sec-success .success-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	animation: fadeInUp 0.6s ease-out 1.2s both;
}

.contact-us-sec-success .success-btn {
	padding: 1rem 2.5rem;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: inherit;
}

.contact-us-sec-success .success-btn-primary {
	background: linear-gradient(135deg, #0f7a7a 0%, #0d6868 100%);
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(15, 122, 122, 0.35);
}

.contact-us-sec-success .success-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(15, 122, 122, 0.45);
	background: linear-gradient(135deg, #0d6868 0%, #0a5757 100%);
}

.contact-us-sec-success .success-btn-secondary {
	background: #ffffff;
	color: #0f7a7a;
	border: 2px solid #0f7a7a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-us-sec-success .success-btn-secondary:hover {
	background: #f0fafa;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon inside button */
.contact-us-sec-success .btn-icon {
	width: 18px;
	height: 18px;
	display: inline-block;
}

/* Animations */
@keyframes scaleIn {
	0% {
		transform: scale(0) rotate(-180deg);
		opacity: 0;
	}
	100% {
		transform: scale(1) rotate(0deg);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes strokeCircle {
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes strokeCheck {
	100% {
		stroke-dashoffset: 0;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.3;
	}
	50% {
		transform: scale(1.1);
		opacity: 0.1;
	}
	100% {
		transform: scale(1.2);
		opacity: 0;
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-us-sec-success {
		padding: 2rem 1rem;
		margin-top: 100px;
	}

	.contact-us-sec-success .contact-us-card-success {
		padding: 3rem 1.5rem;
		min-height: auto;
		border-radius: 20px;
	}

	.contact-us-sec-success .success-title {
		font-size: 2rem;
	}

	.contact-us-sec-success .success-subtitle {
		font-size: 1.1rem;
	}

	.contact-us-sec-success .success-message {
		font-size: 1rem;
	}

	.contact-us-sec-success .success-icon-container {
		width: 100px;
		height: 100px;
	}

	.contact-us-sec-success .success-icon-circle {
		width: 100px;
		height: 100px;
	}

	.contact-us-sec-success .success-icon-circle::before {
		width: 120px;
		height: 120px;
	}

	.contact-us-sec-success .checkmark-svg {
		width: 50px;
		height: 50px;
	}

	.contact-us-sec-success .success-info {
		gap: 0.875rem;
		margin-bottom: 2rem;
	}

	.contact-us-sec-success .success-info-item {
		font-size: 0.9375rem;
		padding: 0.5rem;
	}

	.contact-us-sec-success .info-icon {
		width: 22px;
		height: 22px;
	}

	.contact-us-sec-success .success-actions {
		flex-direction: column;
		width: 100%;
	}

	.contact-us-sec-success .success-btn {
		width: 100%;
		justify-content: center;
		padding: 0.875rem 2rem;
	}
}

@media (max-width: 480px) {
	.contact-us-sec-success .contact-us-card-success {
		padding: 2.5rem 1.25rem;
		border-radius: 16px;
	}

	.contact-us-sec-success .success-title {
		font-size: 1.75rem;
	}

	.contact-us-sec-success .success-subtitle {
		font-size: 1rem;
	}

	.contact-us-sec-success .success-message {
		font-size: 0.9375rem;
	}

	.contact-us-sec-success .success-icon-container {
		width: 90px;
		height: 90px;
		margin-bottom: 1.5rem;
	}

	.contact-us-sec-success .success-icon-circle {
		width: 90px;
		height: 90px;
	}

	.contact-us-sec-success .success-icon-circle::before {
		width: 110px;
		height: 110px;
	}

	.contact-us-sec-success .checkmark-svg {
		width: 45px;
		height: 45px;
	}

	.contact-us-sec-success .success-info {
		gap: 0.75rem;
		margin-bottom: 1.75rem;
	}

	.contact-us-sec-success .success-info-item {
		font-size: 0.875rem;
		padding: 0.375rem;
	}

	.contact-us-sec-success .info-icon {
		width: 20px;
		height: 20px;
	}
}

/* Fade in animation for the wrapper */
.contact-us-sec-success .fade-in-animation {
	animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}



@media (max-width: 850px) {
  .contact-us-sec-success {
    margin-top: calc(90px);
  }
}

@media (max-width: 576px) {
  .contact-us-sec-success {
    margin-top: calc(90px);
  }
}