/* =========================================================
   DALLOL ACADEMY 3
   COMPLETE FRONTEND CSS
   3-COLOR PROFESSIONAL PALETTE
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
	/* PRIMARY — SAPPHIRE */
	--da-sapphire-1: #1677d2;
	--da-sapphire-2: #0d63bd;
	--da-sapphire-3: #084f9f;

	/* SECONDARY — CORAL */
	--da-coral: #ff7a6b;
	--da-coral-soft: rgba(255, 122, 107, 0.18);
	--da-coral-border: rgba(255, 122, 107, 0.42);

	/* WHITE */
	--da-white: #ffffff;
	--da-white-soft: rgba(255, 255, 255, 0.88);
	--da-white-muted: rgba(255, 255, 255, 0.70);

	/* GLASS */
	--da-card: rgba(255, 255, 255, 0.105);
	--da-card-strong: rgba(255, 255, 255, 0.15);
	--da-card-border: rgba(255, 255, 255, 0.22);

	/* TEXT */
	--da-dark-text: #084f9f;

	/* SHADOWS */
	--da-shadow:
		0 18px 50px rgba(0, 34, 80, 0.20);

	--da-shadow-soft:
		0 10px 30px rgba(0, 34, 80, 0.14);

	--da-radius: 22px;
	--da-radius-small: 14px;

	--da-container: 1240px;
}


/* =========================================================
   02. WORDPRESS FULL-WIDTH RESET
   ========================================================= */

html body.da-academy-page {
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
	max-width: none !important;
	overflow-x: hidden !important;
}

html body.da-academy-page .wp-site-blocks,
html body.da-academy-page main,
html body.da-academy-page .wp-block-post-content,
html body.da-academy-page .entry-content {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

html body.da-academy-page .entry-content,
html body.da-academy-page .wp-block-post-content {
	padding-left: 0 !important;
	padding-right: 0 !important;

	--wp--style--root--padding-top: 0px !important;
	--wp--style--root--padding-right: 0px !important;
	--wp--style--root--padding-bottom: 0px !important;
	--wp--style--root--padding-left: 0px !important;

	--wp--preset--spacing--50: 0px !important;
	--wp--preset--spacing--30: 0px !important;
}

html body.da-academy-page .is-layout-constrained,
html body.da-academy-page .has-global-padding {
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

html body.da-academy-page .wp-site-blocks > *,
html body.da-academy-page .wp-block-post-content > * {
	max-width: none !important;
}

html body.da-academy-page .wp-block-post-content > #dallol-academy-app {
	margin-left: 0 !important;
	margin-right: 0 !important;
}


/* =========================================================
   03. HIDE THEME ELEMENTS
   ========================================================= */

html body.da-academy-page > header,
html body.da-academy-page .wp-site-blocks > header,
html body.da-academy-page .wp-site-blocks > .wp-block-template-part:has(nav.wp-block-navigation),
html body.da-academy-page .wp-site-blocks > .wp-block-template-part:has(.wp-block-site-logo),
html body.da-academy-page .wp-block-template-part:has(.wp-block-site-title),
html body.da-academy-page > footer,
html body.da-academy-page .wp-site-blocks > footer,
html body.da-academy-page .wp-site-blocks > .wp-block-template-part:has(footer) {
	display: none !important;
}

html body.da-academy-page h1.wp-block-post-title,
html body.da-academy-page .wp-block-spacer,
html body.da-academy-page .wp-block-site-logo,
html body.da-academy-page .wp-block-site-title {
	display: none !important;
}


/* =========================================================
   04. ACADEMY APP
   ========================================================= */

#dallol-academy-app.da-app {
	display: block;
	position: relative;

	width: 100%;
	max-width: none;

	min-height: 100vh;

	margin: 0;
	padding: 0;

	box-sizing: border-box;

	color: var(--da-white);

	background:
		radial-gradient(
			circle at 10% 0%,
			rgba(255, 122, 107, 0.14),
			transparent 30%
		),
		radial-gradient(
			circle at 90% 15%,
			rgba(255, 255, 255, 0.10),
			transparent 30%
		),
		linear-gradient(
			145deg,
			var(--da-sapphire-1) 0%,
			var(--da-sapphire-2) 48%,
			var(--da-sapphire-3) 100%
		);

	font-family:
		Inter,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		Helvetica,
		Arial,
		sans-serif;

	line-height: 1.6;

	overflow: hidden;
}


/* =========================================================
   05. GLOBAL BOX SIZING
   ========================================================= */

#dallol-academy-app *,
#dallol-academy-app *::before,
#dallol-academy-app *::after {
	box-sizing: border-box;
}


/* =========================================================
   06. GLOBAL TYPOGRAPHY
   ========================================================= */

#dallol-academy-app h1,
#dallol-academy-app h2,
#dallol-academy-app h3,
#dallol-academy-app h4,
#dallol-academy-app p {
	margin-top: 0;
}

#dallol-academy-app h1,
#dallol-academy-app h2,
#dallol-academy-app h3,
#dallol-academy-app h4,
#dallol-academy-app strong,
#dallol-academy-app label,
#dallol-academy-app button {
	color: var(--da-white);
}

#dallol-academy-app p {
	color: var(--da-white-soft);
}

#dallol-academy-app a {
	color: inherit;
	text-decoration: none;
}

#dallol-academy-app button,
#dallol-academy-app input,
#dallol-academy-app select,
#dallol-academy-app textarea {
	font: inherit;
}


/* =========================================================
   07. HIDDEN STATE
   ========================================================= */

#dallol-academy-app [hidden] {
	display: none !important;
}


/* =========================================================
   08. MAIN
   ========================================================= */

.da-main {
	width: 100%;
	margin: 0;
	padding: 0;
}


/* =========================================================
   09. PAGE SYSTEM
   ========================================================= */

.da-page {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
}

.da-page.is-active {
	display: block;
}


/* =========================================================
   10. CONTENT CONTAINERS
   ========================================================= */

.da-home-container,
.da-registration-container,
.da-course-details-container,
.da-student-course-container {
	width: min(
		calc(100% - 48px),
		var(--da-container)
	);

	margin-left: auto;
	margin-right: auto;
}


/* =========================================================
   11. HEADER
   ========================================================= */

.da-header {
	position: relative;
	z-index: 100;

	width: 100%;

	background:
		linear-gradient(
			180deg,
			rgba(8, 79, 159, 0.34),
			rgba(8, 79, 159, 0.10)
		);

	border-bottom: 1px solid rgba(255, 255, 255, 0.14);

	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.da-header-inner {
	width: min(
		calc(100% - 48px),
		var(--da-container)
	);

	min-height: 82px;

	margin: 0 auto;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;
}


/* =========================================================
   12. BRAND
   ========================================================= */

.da-brand {
	display: inline-flex;
	align-items: center;
	gap: 13px;

	min-width: 0;
}

.da-brand-mark {
	width: 48px;
	height: 48px;

	flex: 0 0 48px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 14px;

	background: rgba(255, 255, 255, 0.14);

	border: 1px solid rgba(255, 255, 255, 0.24);

	box-shadow: 0 8px 24px rgba(0, 30, 70, 0.20);

	overflow: hidden;
}

.da-brand-mark img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

.da-brand-copy {
	display: flex;
	flex-direction: column;

	min-width: 0;
}

.da-brand-copy strong {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.15;

	letter-spacing: -0.02em;

	white-space: nowrap;
}

.da-brand-copy small {
	margin-top: 4px;

	color: rgba(255, 255, 255, 0.68);

	font-size: 10px;
	font-weight: 600;

	letter-spacing: 0.08em;
	text-transform: uppercase;

	white-space: nowrap;
}


/* =========================================================
   13. NAVIGATION
   ========================================================= */

.da-nav {
	display: flex;
	align-items: center;
	gap: 6px;
}

.da-nav-link {
	position: relative;

	display: inline-flex;
	align-items: center;

	padding: 10px 14px;

	color: rgba(255, 255, 255, 0.76) !important;

	font-size: 14px;
	font-weight: 650;

	border-radius: 10px;

	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.da-nav-link:hover {
	color: #ffffff !important;

	background: rgba(255, 255, 255, 0.10);

	transform: translateY(-1px);
}

.da-nav-link.is-active {
	color: #ffffff !important;

	background: rgba(255, 255, 255, 0.14);
}

.da-nav-link.is-active::after {
	content: "";

	position: absolute;

	left: 14px;
	right: 14px;
	bottom: 5px;

	height: 2px;

	border-radius: 999px;

	background: var(--da-coral);
}


/* =========================================================
   14. MOBILE MENU
   ========================================================= */

.da-mobile-menu-toggle {
	display: none;

	width: 44px;
	height: 44px;

	padding: 0;

	align-items: center;
	justify-content: center;
	flex-direction: column;

	gap: 5px;

	border: 1px solid rgba(255, 255, 255, 0.20);
	border-radius: 12px;

	background: rgba(255, 255, 255, 0.10);

	cursor: pointer;
}

.da-mobile-menu-toggle span {
	display: block;

	width: 19px;
	height: 2px;

	border-radius: 999px;

	background: #ffffff;

	transition: transform 0.2s ease;
}


/* =========================================================
   15. HERO
   ========================================================= */

.da-hero {
	position: relative;

	min-height: 560px;

	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);

	align-items: center;

	gap: 50px;

	padding: 80px 0 70px;
}

.da-hero-content {
	position: relative;
	z-index: 2;

	max-width: 680px;
}

.da-eyebrow {
	display: inline-flex;
	align-items: center;

	margin-bottom: 14px;

	color: rgba(255, 255, 255, 0.76);

	font-size: 11px;
	font-weight: 800;

	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.da-eyebrow::before {
	content: "";

	width: 24px;
	height: 2px;

	margin-right: 9px;

	border-radius: 999px;

	background: var(--da-coral);
}

.da-hero h1 {
	max-width: 720px;

	margin: 0 0 20px;

	color: #ffffff;

	font-size: clamp(48px, 6vw, 78px);

	font-weight: 900;

	line-height: 0.98;

	letter-spacing: -0.055em;
}

.da-hero p {
	max-width: 580px;

	margin: 0 0 30px;

	color: rgba(255, 255, 255, 0.84);

	font-size: 18px;

	line-height: 1.65;
}

.da-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}


/* =========================================================
   16. HERO VISUAL
   ========================================================= */

.da-hero-visual {
	position: relative;

	min-height: 390px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.da-hero-frame {
	position: relative;
	z-index: 3;

	width: min(330px, 75%);
	height: 330px;

	padding: 38px;

	display: flex;
	flex-direction: column;
	justify-content: center;

	border: 1px solid rgba(255, 255, 255, 0.30);

	border-radius: 30px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.14),
			rgba(255, 255, 255, 0.045)
		);

	box-shadow:
		0 30px 80px rgba(0, 30, 75, 0.24),
		inset 0 1px 0 rgba(255, 255, 255, 0.20);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	transform: rotate(4deg);
}

.da-hero-frame-label {
	display: block;

	color: rgba(255, 255, 255, 0.92);

	font-size: 24px;
	font-weight: 850;

	letter-spacing: 0.08em;
}

.da-hero-frame-line {
	display: block;

	width: 100%;
	height: 1px;

	margin: 19px 0;

	background: rgba(255, 255, 255, 0.20);
}

.da-hero-orb {
	position: absolute;

	border-radius: 50%;

	filter: blur(1px);
}

.da-hero-orb-one {
	width: 190px;
	height: 190px;

	top: 5%;
	right: 5%;

	background: rgba(255, 122, 107, 0.22);
}

.da-hero-orb-two {
	width: 120px;
	height: 120px;

	bottom: 10%;
	left: 5%;

	background: rgba(255, 255, 255, 0.12);
}

.da-hero-orb-three {
	width: 80px;
	height: 80px;

	top: 42%;
	left: 10%;

	background: rgba(255, 122, 107, 0.16);
}


/* =========================================================
   17. BUTTONS
   ========================================================= */

.da-button {
	position: relative;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 46px;

	padding: 11px 20px;

	border-radius: 12px;

	border: 1px solid transparent;

	font-size: 13px;
	font-weight: 800;

	line-height: 1.2;

	text-align: center;

	cursor: pointer;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease,
		border-color 0.2s ease,
		opacity 0.2s ease;
}

.da-button:hover {
	transform: translateY(-2px);
}

.da-button:active {
	transform: translateY(0);
}

.da-button-primary {
	color: var(--da-dark-text) !important;

	background: #ffffff;

	border-color: #ffffff;

	box-shadow: 0 10px 25px rgba(0, 30, 75, 0.18);
}

.da-button-primary:hover {
	background: #ffffff;

	box-shadow: 0 14px 30px rgba(0, 30, 75, 0.25);
}

.da-button-glass {
	color: #ffffff !important;

	background: rgba(255, 255, 255, 0.10);

	border-color: rgba(255, 255, 255, 0.25);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.da-button-glass:hover {
	background: rgba(255, 122, 107, 0.16);

	border-color: var(--da-coral-border);
}


/* =========================================================
   18. GENERAL SECTIONS
   ========================================================= */

.da-section {
	width: 100%;

	margin: 0;
	padding: 80px 0;
}

.da-section-heading {
	max-width: 760px;

	margin: 0 0 34px;
}

.da-section-heading h1,
.da-section-heading h2 {
	margin: 0 0 12px;

	color: #ffffff;

	font-weight: 850;

	letter-spacing: -0.035em;
}

.da-section-heading h1 {
	font-size: clamp(38px, 5vw, 58px);
	line-height: 1.04;
}

.da-section-heading h2 {
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.08;
}

.da-section-heading p {
	margin: 0;

	color: rgba(255, 255, 255, 0.72);

	font-size: 16px;
}


/* =========================================================
   19. COURSE GRID
   ========================================================= */

.da-course-grid {
	display: grid;

	grid-template-columns: repeat(3, minmax(0, 1fr));

	gap: 18px;
}


/* =========================================================
   20. COURSE CARDS
   ========================================================= */

.da-course-card {
	position: relative;

	min-width: 0;

	padding: 26px;

	display: flex;
	flex-direction: column;

	border-radius: var(--da-radius);

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.16),
			rgba(255, 255, 255, 0.075)
		);

	border: 1px solid rgba(255, 255, 255, 0.25);

	box-shadow: var(--da-shadow);

	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);

	overflow: hidden;

	transition:
		transform 0.25s ease,
		border-color 0.25s ease,
		background 0.25s ease;
}

.da-course-card::before {
	content: "";

	position: absolute;

	top: 0;
	left: 0;

	width: 100%;
	height: 3px;

	background: var(--da-coral);
}

.da-course-card:hover {
	transform: translateY(-5px);

	border-color: var(--da-coral-border);

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.19),
			rgba(255, 255, 255, 0.09)
		);
}

.da-course-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 15px;

	margin-bottom: 22px;
}

.da-course-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	border-radius: 10px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 12px;
	font-weight: 850;
}

.da-course-duration {
	color: rgba(255, 255, 255, 0.78);

	font-size: 11px;
	font-weight: 750;

	text-align: right;
}

.da-course-card h3 {
	margin: 0 0 12px;

	color: #ffffff;

	font-size: 26px;
	font-weight: 850;

	line-height: 1.1;

	letter-spacing: -0.03em;
}

.da-course-description {
	min-height: 78px;

	margin: 0 0 22px;

	color: rgba(255, 255, 255, 0.76);

	font-size: 14px;

	line-height: 1.6;
}


/* =========================================================
   21. COURSE CONTENT LIST
   ========================================================= */

.da-course-list {
	list-style: none;

	margin: 0;
	padding: 0;

	display: flex;
	flex-direction: column;

	gap: 7px;
}

.da-course-list li {
	display: flex;
	align-items: flex-start;

	gap: 9px;

	padding: 9px 10px;

	border: 1px solid rgba(255, 255, 255, 0.13);

	border-radius: 9px;

	background: rgba(255, 255, 255, 0.065);

	color: rgba(255, 255, 255, 0.82);

	font-size: 12px;

	line-height: 1.45;
}

.da-check {
	flex: 0 0 auto;

	color: var(--da-coral);

	font-weight: 900;
}


/* =========================================================
   22. COURSE CARD BOTTOM
   ========================================================= */

.da-course-card-bottom {
	margin-top: auto;
	padding-top: 26px;

	display: flex;
	align-items: flex-end;
	justify-content: space-between;

	gap: 20px;

	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.da-price {
	min-width: 100px;
}

.da-price-label {
	display: block;

	margin-bottom: 4px;

	color: rgba(255, 255, 255, 0.58);

	font-size: 10px;
	font-weight: 800;

	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.da-price strong {
	display: block;

	color: var(--da-coral);

	font-size: 24px;
	font-weight: 900;

	letter-spacing: -0.03em;
}

.da-course-actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;

	gap: 8px;

	min-width: 145px;
}

.da-course-actions .da-button {
	width: 100%;
}

.da-course-details-link {
	display: block;

	padding: 4px 0;

	color: rgba(255, 255, 255, 0.72) !important;

	font-size: 11px;
	font-weight: 750;

	text-align: center;

	transition: color 0.2s ease;
}

.da-course-details-link:hover {
	color: var(--da-coral) !important;
}


/* =========================================================
   23. FAQ
   ========================================================= */

.da-faq-section {
	padding-top: 50px;
	padding-bottom: 100px;
}

.da-faq {
	width: 100%;

	display: flex;
	flex-direction: column;

	gap: 10px;
}

.da-faq-item {
	border: 1px solid rgba(255, 255, 255, 0.20);

	border-radius: 15px;

	background: rgba(255, 255, 255, 0.085);

	overflow: hidden;

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);

	transition:
		background 0.2s ease,
		border-color 0.2s ease;
}

.da-faq-item[open] {
	background: rgba(255, 255, 255, 0.13);

	border-color: var(--da-coral-border);
}

.da-faq-question {
	min-height: 62px;

	padding: 18px 20px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;

	color: #ffffff;

	font-size: 14px;
	font-weight: 800;

	cursor: pointer;

	list-style: none;
}

.da-faq-question::-webkit-details-marker {
	display: none;
}

.da-faq-question::marker {
	display: none;
}

.da-faq-icon {
	width: 28px;
	height: 28px;

	flex: 0 0 28px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 19px;
	font-weight: 400;

	transition: transform 0.2s ease;
}

.da-faq-item[open] .da-faq-icon {
	transform: rotate(45deg);
}

.da-faq-answer {
	padding: 0 20px 20px;

	color: rgba(255, 255, 255, 0.75);

	font-size: 14px;

	line-height: 1.7;
}

.da-faq-answer p {
	margin: 0;
}

.da-faq-price-list,
.da-faq-location-list {
	display: flex;
	flex-direction: column;

	gap: 8px;
}

.da-faq-price-list > div,
.da-faq-location-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;

	padding: 11px 13px;

	border-radius: 10px;

	background: rgba(255, 255, 255, 0.07);

	border: 1px solid rgba(255, 255, 255, 0.11);
}

.da-faq-price-list span,
.da-faq-location-list span {
	color: rgba(255, 255, 255, 0.70);
}

.da-faq-price-list strong,
.da-faq-location-list strong {
	color: var(--da-coral);
}

.da-faq-location-list > div {
	align-items: flex-start;
	flex-direction: column;
	gap: 2px;
}

.da-faq-contact {
	display: flex;
	flex-wrap: wrap;

	gap: 8px;

	margin-top: 15px;
}

.da-phone-link {
	display: inline-flex;
	align-items: center;

	padding: 9px 13px;

	border-radius: 9px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff !important;

	font-size: 12px;
	font-weight: 750;
}


/* =========================================================
   24. REGISTRATION PAGE
   ========================================================= */

.da-page-registration {
	padding: 60px 0 100px;
}

.da-registration-header {
	max-width: 800px;

	margin: 0 auto 28px;
}

.da-registration-header h1 {
	margin: 0 0 12px;

	color: #ffffff;

	font-size: clamp(38px, 5vw, 60px);

	font-weight: 900;

	line-height: 1;

	letter-spacing: -0.05em;
}

.da-registration-header p {
	margin: 0;

	color: rgba(255, 255, 255, 0.76);

	font-size: 16px;
}

.da-back-link {
	display: inline-flex;
	align-items: center;

	margin-bottom: 25px;

	padding: 0;

	border: 0;

	background: transparent;

	color: rgba(255, 255, 255, 0.74) !important;

	font-size: 13px;
	font-weight: 750;

	cursor: pointer;
}

.da-back-link:hover {
	color: var(--da-coral) !important;
}

.da-registration-course-card {
	max-width: 800px;

	margin: 0 auto 18px;

	padding: 20px 22px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 20px;

	border-radius: 16px;

	background: rgba(255, 255, 255, 0.14);

	border: 1px solid var(--da-coral-border);

	box-shadow: var(--da-shadow-soft);
}

.da-registration-course-label {
	color: rgba(255, 255, 255, 0.58);

	font-size: 10px;
	font-weight: 850;

	letter-spacing: 0.14em;
}

.da-registration-course-card strong {
	color: var(--da-coral);

	font-size: 18px;
	font-weight: 850;
}


/* =========================================================
   25. REGISTRATION FORM WRAPPER
   ========================================================= */

.da-registration-form-wrapper {
	max-width: 800px;

	margin: 0 auto;
}

.da-registration-form {
	width: 100%;

	padding: 0;
}


/* =========================================================
   26. REGISTRATION MESSAGE
   ========================================================= */

.da-registration-message {
	margin-bottom: 18px;

	padding: 15px 17px;

	border-radius: 12px;

	font-size: 13px;
	font-weight: 700;
}

.da-registration-message-error,
.da-registration-message-success,
.da-registration-message-info {
	background: rgba(255, 255, 255, 0.10);

	border: 1px solid rgba(255, 255, 255, 0.20);

	color: #ffffff;
}

.da-registration-message-success {
	border-color: var(--da-coral-border);
	background: var(--da-coral-soft);
}


/* =========================================================
   27. REGISTRATION SECTIONS
   ========================================================= */

.da-registration-section,
.da-registration-dynamic-panel {
	margin-bottom: 18px;

	padding: 28px;

	border-radius: var(--da-radius);

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.15),
			rgba(255, 255, 255, 0.075)
		);

	border: 1px solid rgba(255, 255, 255, 0.22);

	box-shadow: var(--da-shadow-soft);

	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.da-registration-section-heading {
	display: flex;
	align-items: flex-start;

	gap: 14px;

	margin-bottom: 24px;
}

.da-registration-section-heading .da-eyebrow {
	flex: 0 0 auto;

	margin-top: 4px;
	margin-bottom: 0;

	color: rgba(255, 255, 255, 0.56);
}

.da-registration-section-heading h2 {
	margin: 0 0 5px;

	color: #ffffff;

	font-size: 23px;
	font-weight: 850;

	letter-spacing: -0.025em;
}

.da-registration-section-heading p {
	margin: 0;

	color: rgba(255, 255, 255, 0.64);

	font-size: 13px;
}


/* =========================================================
   28. COURSE OPTIONS
   ========================================================= */

.da-registration-course-options {
	display: grid;

	grid-template-columns: repeat(3, minmax(0, 1fr));

	gap: 10px;
}

.da-registration-course-option {
	position: relative;

	display: block;

	cursor: pointer;
}

.da-registration-course-option input {
	position: absolute;

	width: 1px;
	height: 1px;

	opacity: 0;

	pointer-events: none;
}

.da-registration-course-option-inner {
	min-height: 100px;

	padding: 16px;

	display: flex;
	flex-direction: column;
	justify-content: space-between;

	gap: 12px;

	border-radius: 13px;

	background: rgba(255, 255, 255, 0.065);

	border: 1px solid rgba(255, 255, 255, 0.14);

	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.da-registration-course-option:hover .da-registration-course-option-inner {
	background: rgba(255, 122, 107, 0.10);

	border-color: var(--da-coral-border);
}

.da-registration-course-option.is-selected .da-registration-course-option-inner {
	background: var(--da-coral-soft);

	border-color: var(--da-coral);

	box-shadow: 0 10px 25px rgba(0, 30, 75, 0.15);
}

.da-registration-course-option-title {
	display: flex;
	flex-direction: column;

	gap: 3px;
}

.da-registration-course-option-title strong {
	color: #ffffff;

	font-size: 14px;
}

.da-registration-course-option-title small {
	color: rgba(255, 255, 255, 0.60);

	font-size: 10px;
}

.da-registration-course-option-price {
	color: var(--da-coral);

	font-size: 18px;
	font-weight: 900;
}


/* =========================================================
   29. FORM FIELDS
   ========================================================= */

.da-registration-fields {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 17px;
}

.da-form-field {
	min-width: 0;
}

.da-form-field label {
	display: block;

	margin-bottom: 8px;

	color: #ffffff;

	font-size: 12px;
	font-weight: 800;
}

.da-form-field input,
.da-form-field select,
.da-form-field textarea {
	width: 100%;

	min-height: 48px;

	padding: 12px 14px;

	border-radius: 11px;

	border: 1px solid rgba(255, 255, 255, 0.20);

	outline: none;

	background: rgba(255, 255, 255, 0.09);

	color: #ffffff;

	font-size: 13px;

	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.da-form-field input::placeholder,
.da-form-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.43);
}

.da-form-field input:focus,
.da-form-field select:focus,
.da-form-field textarea:focus {
	border-color: var(--da-coral);

	background: rgba(255, 255, 255, 0.13);

	box-shadow: 0 0 0 3px var(--da-coral-soft);
}

.da-form-field select option {
	color: var(--da-dark-text);
	background: #ffffff;
}

.da-form-help {
	display: block;

	margin-top: 7px;

	color: rgba(255, 255, 255, 0.53);

	font-size: 10px;

	line-height: 1.5;
}


/* =========================================================
   30. SELECT
   ========================================================= */

.da-select-wrapper {
	position: relative;
}

.da-select-wrapper select {
	appearance: none;
	-webkit-appearance: none;

	padding-right: 40px;
}

.da-select-wrapper::after {
	content: "⌄";

	position: absolute;

	top: 50%;
	right: 14px;

	transform: translateY(-55%);

	color: var(--da-coral);

	pointer-events: none;
}


/* =========================================================
   31. TRAINING FORMAT
   ========================================================= */

.da-registration-format-options {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 12px;
}

.da-registration-format-option {
	position: relative;

	cursor: pointer;
}

.da-registration-format-option input {
	position: absolute;

	width: 1px;
	height: 1px;

	opacity: 0;

	pointer-events: none;
}

.da-registration-format-inner {
	min-height: 86px;

	padding: 16px;

	display: flex;
	align-items: center;

	gap: 13px;

	border-radius: 13px;

	background: rgba(255, 255, 255, 0.065);

	border: 1px solid rgba(255, 255, 255, 0.14);

	transition:
		background 0.2s ease,
		border-color 0.2s ease;
}

.da-registration-format-option:hover .da-registration-format-inner {
	background: rgba(255, 122, 107, 0.10);

	border-color: var(--da-coral-border);
}

.da-registration-format-option.is-selected .da-registration-format-inner {
	background: var(--da-coral-soft);

	border-color: var(--da-coral);
}

.da-registration-format-icon {
	width: 38px;
	height: 38px;

	flex: 0 0 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 10px;
	font-weight: 850;
}

.da-registration-format-inner strong {
	display: block;

	margin-bottom: 3px;

	color: #ffffff;

	font-size: 14px;
}

.da-registration-format-inner small {
	display: block;

	color: rgba(255, 255, 255, 0.58);

	font-size: 11px;
}


/* =========================================================
   32. DYNAMIC PANELS
   ========================================================= */

.da-registration-dynamic-panel.is-visible {
	display: block;
}

.da-registration-dynamic-panel {
	animation: daPanelIn 0.25s ease;
}

@keyframes daPanelIn {
	from {
		opacity: 0;
		transform: translateY(7px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/* =========================================================
   33. LOCATION CARD
   ========================================================= */

.da-registration-location-card {
	margin-top: 18px;

	padding: 16px 18px;

	border-radius: 12px;

	background: rgba(255, 122, 107, 0.09);

	border: 1px solid var(--da-coral-border);
}

.da-registration-location-label {
	display: block;

	margin-bottom: 5px;

	color: rgba(255, 255, 255, 0.52);

	font-size: 9px;
	font-weight: 850;

	letter-spacing: 0.13em;
}

.da-registration-location-card strong {
	color: var(--da-coral);

	font-size: 14px;
}


/* =========================================================
   34. ONLINE INFO
   ========================================================= */

.da-online-registration-info {
	display: flex;
	align-items: center;

	gap: 13px;

	margin-bottom: 20px;

	padding: 14px 16px;

	border-radius: 12px;

	background: rgba(255, 122, 107, 0.09);

	border: 1px solid var(--da-coral-border);
}

.da-online-info-icon {
	width: 38px;
	height: 38px;

	flex: 0 0 38px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 10px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 10px;
	font-weight: 850;
}

.da-online-registration-info strong {
	display: block;

	margin-bottom: 2px;

	color: #ffffff;

	font-size: 13px;
}

.da-online-registration-info span {
	color: rgba(255, 255, 255, 0.60);

	font-size: 11px;
}

.da-registration-online-note {
	margin-top: 18px;

	padding: 13px 15px;

	border-left: 2px solid var(--da-coral);

	color: rgba(255, 255, 255, 0.60);

	font-size: 11px;

	line-height: 1.6;
}


/* =========================================================
   35. REGISTRATION SUMMARY
   ========================================================= */

.da-registration-submit-section {
	margin-bottom: 0;
}

.da-registration-summary {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 9px;

	margin-bottom: 20px;
}

.da-registration-summary-item {
	padding: 13px 14px;

	border-radius: 10px;

	background: rgba(255, 255, 255, 0.065);

	border: 1px solid rgba(255, 255, 255, 0.12);
}

.da-registration-summary-item span {
	display: block;

	margin-bottom: 4px;

	color: rgba(255, 255, 255, 0.48);

	font-size: 9px;
	font-weight: 850;

	letter-spacing: 0.13em;
}

.da-registration-summary-item strong {
	color: var(--da-coral);

	font-size: 13px;
}

.da-registration-submit {
	width: 100%;

	min-height: 54px;

	font-size: 14px;
}

.da-registration-submit.is-loading {
	opacity: 0.75;

	cursor: wait;
}

.da-button-spinner {
	width: 15px;
	height: 15px;

	margin-right: 8px;

	border: 2px solid rgba(255, 122, 107, 0.25);
	border-top-color: var(--da-coral);

	border-radius: 50%;

	animation: daSpin 0.7s linear infinite;
}

@keyframes daSpin {
	to {
		transform: rotate(360deg);
	}
}

.da-registration-security-note {
	margin: 13px 0 0;

	color: rgba(255, 255, 255, 0.47) !important;

	font-size: 10px;

	text-align: center;
}


/* =========================================================
   36. COURSE DETAILS HERO
   ========================================================= */

.da-page-course-details {
	padding: 55px 0 100px;
}

.da-course-details-hero {
	margin-bottom: 18px;

	padding: 38px;

	border-radius: 25px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.17),
			rgba(255, 255, 255, 0.075)
		);

	border: 1px solid rgba(255, 255, 255, 0.23);

	box-shadow: var(--da-shadow);

	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
}

.da-course-details-hero h1 {
	margin: 0 0 14px;

	color: #ffffff;

	font-size: clamp(40px, 5vw, 65px);

	font-weight: 900;

	line-height: 1;

	letter-spacing: -0.05em;
}

.da-course-details-hero > p {
	max-width: 760px;

	margin: 0 0 30px;

	color: rgba(255, 255, 255, 0.75);

	font-size: 16px;

	line-height: 1.65;
}

.da-course-meta-grid {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 220px));

	gap: 10px;
}

.da-meta-card {
	padding: 16px 18px;

	border-radius: 13px;

	background: rgba(255, 255, 255, 0.09);

	border: 1px solid rgba(255, 255, 255, 0.15);
}

.da-meta-card span {
	display: block;

	margin-bottom: 4px;

	color: rgba(255, 255, 255, 0.52);

	font-size: 9px;
	font-weight: 850;

	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.da-meta-card strong {
	color: var(--da-coral);

	font-size: 19px;
	font-weight: 900;
}


/* =========================================================
   37. COURSE DETAIL SECTIONS
   ========================================================= */

.da-course-details-container > .da-section {
	padding: 45px 0;
}


/* =========================================================
   38. CURRICULUM
   ========================================================= */

.da-curriculum-grid {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 10px;
}

.da-curriculum-card {
	min-height: 65px;

	padding: 14px 15px;

	display: flex;
	align-items: center;

	gap: 13px;

	border-radius: 12px;

	background: rgba(255, 255, 255, 0.085);

	border: 1px solid rgba(255, 255, 255, 0.16);

	color: rgba(255, 255, 255, 0.82);

	font-size: 13px;

	line-height: 1.5;

	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.da-curriculum-card:hover {
	background: rgba(255, 122, 107, 0.09);

	border-color: var(--da-coral-border);

	transform: translateY(-2px);
}

.da-curriculum-number {
	width: 34px;
	height: 34px;

	flex: 0 0 34px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 9px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 10px;
	font-weight: 850;
}


/* =========================================================
   39. TRAINING OPTIONS
   ========================================================= */

.da-training-options-grid {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 14px;
}

.da-training-option {
	padding: 25px;

	border-radius: 17px;

	background: rgba(255, 255, 255, 0.09);

	border: 1px solid rgba(255, 255, 255, 0.17);
}

.da-option-icon {
	width: 42px;
	height: 42px;

	margin-bottom: 17px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 11px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 10px;
	font-weight: 850;
}

.da-training-option h3 {
	margin: 0 0 8px;

	color: #ffffff;

	font-size: 20px;
	font-weight: 850;
}

.da-training-option p {
	margin: 0;

	color: rgba(255, 255, 255, 0.66);

	font-size: 13px;

	line-height: 1.6;
}


/* =========================================================
   40. SCHEDULES
   ========================================================= */

.da-schedule-grid {
	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 14px;
}

.da-schedule-card {
	padding: 24px;

	border-radius: 17px;

	background: rgba(255, 255, 255, 0.09);

	border: 1px solid rgba(255, 255, 255, 0.17);
}

.da-location-label {
	display: inline-flex;

	margin-bottom: 8px;

	padding: 5px 9px;

	border-radius: 7px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 9px;
	font-weight: 850;

	letter-spacing: 0.10em;
	text-transform: uppercase;
}

.da-schedule-card h3 {
	margin: 0 0 18px;

	color: #ffffff;

	font-size: 20px;
	font-weight: 850;

	line-height: 1.25;
}

.da-schedule-list {
	display: flex;
	flex-direction: column;

	gap: 9px;
}

.da-schedule-item {
	display: flex;
	align-items: flex-start;

	gap: 9px;

	color: rgba(255, 255, 255, 0.68);

	font-size: 12px;

	line-height: 1.5;
}

.da-schedule-dot {
	width: 6px;
	height: 6px;

	flex: 0 0 6px;

	margin-top: 7px;

	border-radius: 50%;

	background: var(--da-coral);
}


/* =========================================================
   41. ONLINE DETAILS
   ========================================================= */

.da-online-details-card {
	padding: 28px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;

	border-radius: 20px;

	background:
		linear-gradient(
			135deg,
			rgba(255, 122, 107, 0.11),
			rgba(255, 255, 255, 0.075)
		);

	border: 1px solid var(--da-coral-border);
}

.da-online-details-card h2 {
	margin: 0 0 8px;

	color: #ffffff;

	font-size: 28px;
	font-weight: 850;

	letter-spacing: -0.03em;
}

.da-online-details-card p {
	max-width: 700px;

	margin: 0;

	color: rgba(255, 255, 255, 0.68);

	font-size: 13px;
}

.da-online-days {
	flex: 0 0 auto;

	padding: 13px 16px;

	border-radius: 12px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);
}

.da-online-days span {
	color: #ffffff;

	font-size: 12px;
	font-weight: 850;

	white-space: nowrap;
}


/* =========================================================
   42. CONSULTATION CARD
   ========================================================= */

.da-consultation-card {
	padding: 42px;

	text-align: center;

	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 122, 107, 0.14),
			rgba(255, 255, 255, 0.08)
		);

	border: 1px solid var(--da-coral-border);

	box-shadow: var(--da-shadow);
}

.da-consultation-card h2 {
	margin: 0 0 10px;

	color: #ffffff;

	font-size: clamp(30px, 4vw, 44px);

	font-weight: 900;

	letter-spacing: -0.04em;
}

.da-consultation-card p {
	margin: 0 auto 22px;

	max-width: 550px;

	color: rgba(255, 255, 255, 0.70);
}

.da-details-final-cta {
	display: flex;
	justify-content: center;

	padding-top: 10px;
}


//* =========================================================
   43. MY COURSE
   ========================================================= */

.da-page-my-course,
.da-page-my-account,
.da-page-about,
.da-page-contact,
.da-page-terms {
	padding: 65px 0 100px;
}

.da-student-course-hero {
	margin-bottom: 25px;
}

.da-student-course-hero h1 {
	margin: 0 0 10px;

	color: #ffffff;

	font-size: clamp(40px, 5vw, 60px);

	font-weight: 900;

	letter-spacing: -0.05em;
}

.da-student-course-hero p {
	margin: 0;

	color: rgba(255, 255, 255, 0.68);
}

.da-student-course-content {
	width: 100%;
}


/* =========================================================
   44. DYNAMIC STUDENT COURSE — GLASS UI
   ========================================================= */

.da-student-course-header {
	display: grid;

	grid-template-columns:
		minmax(210px, 300px)
		minmax(0, 1fr);

	align-items: center;

	gap: 28px;

	margin-bottom: 20px;

	padding: 24px;

	border-radius: 22px;

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.13),
			rgba(255, 255, 255, 0.055)
		);

	border: 1px solid rgba(255, 255, 255, 0.18);

	box-shadow:
		0 18px 55px rgba(0, 0, 0, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);

	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.da-student-course-image {
	width: 100%;

	overflow: hidden;

	border-radius: 17px;

	background: rgba(255, 255, 255, 0.08);

	border: 1px solid rgba(255, 255, 255, 0.14);

	box-shadow:
		0 12px 30px rgba(0, 0, 0, 0.14);
}

.da-student-course-image img {
	display: block;

	width: 100%;
	height: auto;

	aspect-ratio: 16 / 9;

	object-fit: cover;
}

.da-student-course-header-content {
	min-width: 0;
}

.da-student-course-header-content .da-eyebrow {
	display: block;

	margin-bottom: 7px;

	color: var(--da-coral);

	font-size: 10px;
	font-weight: 850;

	letter-spacing: 0.14em;
}

.da-student-course-header-content h2 {
	margin: 0;

	color: #ffffff;

	font-size: clamp(27px, 3.2vw, 40px);

	font-weight: 900;

	line-height: 1.12;

	letter-spacing: -0.035em;
}

.da-student-course-header-content p {
	max-width: 760px;

	margin: 11px 0 0;

	color: rgba(255, 255, 255, 0.68);

	font-size: 14px;

	line-height: 1.7;
}


/* =========================================================
   COURSE PROGRESS
========================================================= */

.da-student-course-progress {
	margin-bottom: 18px;

	padding: 20px 22px;

	border-radius: 18px;

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.105),
			rgba(255, 255, 255, 0.045)
		);

	border: 1px solid rgba(255, 255, 255, 0.16);

	box-shadow:
		0 14px 40px rgba(0, 0, 0, 0.10),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.da-student-course-progress-top {
	display: flex;

	align-items: center;

	justify-content: space-between;

	gap: 15px;

	margin-bottom: 11px;
}

.da-student-course-progress-top > div {
	display: flex;

	align-items: center;

	gap: 12px;
}

.da-student-course-progress-label {
	color: rgba(255, 255, 255, 0.70);

	font-size: 12px;

	font-weight: 750;
}

.da-student-course-progress-top strong {
	color: #ffffff;

	font-size: 18px;

	font-weight: 900;
}

.da-student-course-progress-top > span {
	color: rgba(255, 255, 255, 0.50);

	font-size: 11px;

	font-weight: 650;
}

.da-progress-track {
	width: 100%;

	height: 9px;

	overflow: hidden;

	border-radius: 999px;

	background: rgba(255, 255, 255, 0.10);

	border: 1px solid rgba(255, 255, 255, 0.06);
}

.da-progress-bar {
	height: 100%;

	border-radius: inherit;

	background: var(--da-coral);

	box-shadow:
		0 0 14px rgba(255, 122, 107, 0.35);

	transition: width 0.35s ease;
}


/* =========================================================
   COURSE SUMMARY
========================================================= */

.da-student-course-summary {
	display: grid;

	grid-template-columns:
		repeat(2, minmax(0, 1fr));

	gap: 14px;

	margin-bottom: 30px;
}

.da-student-course-summary-item {
	display: flex;

	align-items: center;

	gap: 13px;

	padding: 16px 18px;

	border-radius: 16px;

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.10),
			rgba(255, 255, 255, 0.045)
		);

	border: 1px solid rgba(255, 255, 255, 0.14);

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.da-student-course-summary-item strong {
	display: flex;

	align-items: center;

	justify-content: center;

	width: 40px;
	height: 40px;

	flex: 0 0 40px;

	border-radius: 12px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 16px;

	font-weight: 900;
}

.da-student-course-summary-item span {
	color: rgba(255, 255, 255, 0.65);

	font-size: 12px;

	font-weight: 700;
}


/* =========================================================
   LESSON SECTION
========================================================= */

.da-student-lessons-section {
	margin-top: 5px;
}

.da-student-lessons-section .da-section-heading {
	margin-bottom: 17px;
}

.da-student-lessons-section .da-eyebrow {
	display: block;

	margin-bottom: 5px;

	color: var(--da-coral);

	font-size: 9px;

	font-weight: 850;

	letter-spacing: 0.14em;
}

.da-student-lessons-section .da-section-heading h2 {
	margin: 0;

	color: #ffffff;

	font-size: 27px;

	font-weight: 900;

	letter-spacing: -0.025em;
}

.da-student-lessons-list {
	display: flex;

	flex-direction: column;

	gap: 18px;
}


/* =========================================================
   LESSON CARD
========================================================= */

.da-student-lesson {
	overflow: hidden;

	border-radius: 20px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.105),
			rgba(255, 255, 255, 0.045)
		);

	border: 1px solid rgba(255, 255, 255, 0.16);

	box-shadow:
		0 18px 55px rgba(0, 0, 0, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);

	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);

	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.da-student-lesson:hover {
	transform: translateY(-2px);

	border-color: rgba(255, 255, 255, 0.22);

	box-shadow:
		0 22px 65px rgba(0, 0, 0, 0.16),
		inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.da-student-lesson-header {
	display: flex;

	align-items: center;

	gap: 14px;

	padding: 19px 21px;

	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.da-student-lesson-number {
	display: flex;

	align-items: center;

	justify-content: center;

	width: 43px;
	height: 43px;

	flex: 0 0 43px;

	border-radius: 13px;

	background: var(--da-coral-soft);

	border: 1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 14px;

	font-weight: 900;
}

.da-student-lesson-title-wrap {
	min-width: 0;
}

.da-student-lesson-title-wrap .da-eyebrow {
	display: block;

	margin-bottom: 3px;

	color: rgba(255, 255, 255, 0.42);

	font-size: 8px;

	font-weight: 850;

	letter-spacing: 0.13em;
}

.da-student-lesson-title-wrap h3 {
	margin: 0;

	color: #ffffff;

	font-size: 19px;

	font-weight: 850;

	line-height: 1.3;
}

.da-student-lesson-description {
	padding: 17px 21px 0;

	color: rgba(255, 255, 255, 0.64);

	font-size: 13px;

	line-height: 1.7;
}


/* =========================================================
   LARGE YOUTUBE VIDEO
========================================================= */

.da-student-lesson-video {
	padding: 20px 21px 22px;
}

.da-video-wrapper {
	position: relative;

	width: 100%;

	max-width: 1100px;

	margin: 0 auto;

	overflow: hidden;

	border-radius: 18px;

	background: #061017;

	border: 1px solid rgba(255, 255, 255, 0.16);

	box-shadow:
		0 20px 55px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.025);

	aspect-ratio: 16 / 9;
}

.da-video-wrapper::after {
	content: "";

	position: absolute;

	inset: 0;

	pointer-events: none;

	border-radius: inherit;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.da-video-wrapper iframe {
	position: absolute;

	inset: 0;

	display: block;

	width: 100%;
	height: 100%;

	border: 0;
}

.da-student-lesson-video-link {
	padding: 18px 21px 21px;
}


/* =========================================================
   ASSIGNMENTS — GLASS
========================================================= */

.da-student-assignment {
	margin: 0 21px 21px;

	padding: 21px;

	border-radius: 17px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.09),
			rgba(255, 255, 255, 0.035)
		);

	border: 1px solid rgba(255, 255, 255, 0.14);

	box-shadow:
		0 12px 35px rgba(0, 0, 0, 0.10),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);

	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.da-student-assignment-header {
	display: flex;

	align-items: flex-start;

	justify-content: space-between;

	gap: 15px;

	margin-bottom: 16px;
}

.da-student-assignment-heading {
	min-width: 0;
}

.da-student-assignment-heading .da-eyebrow {
	display: block;

	margin-bottom: 4px;

	color: var(--da-coral);

	font-size: 8px;

	font-weight: 850;

	letter-spacing: 0.13em;
}

.da-student-assignment-heading h4 {
	margin: 0;

	color: #ffffff;

	font-size: 18px;

	font-weight: 850;

	line-height: 1.3;
}


/* =========================================================
   ASSIGNMENT STATUS
========================================================= */

.da-assignment-status {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	min-height: 30px;

	padding: 6px 11px;

	flex: 0 0 auto;

	border-radius: 999px;

	background: rgba(255, 255, 255, 0.08);

	border: 1px solid rgba(255, 255, 255, 0.12);

	color: rgba(255, 255, 255, 0.72);

	font-size: 9px;

	font-weight: 850;

	line-height: 1;

	text-transform: uppercase;

	letter-spacing: 0.04em;
}


/* Default / not submitted */

.da-assignment-status.is-not-submitted {
	background: rgba(255, 255, 255, 0.07);

	border-color: rgba(255, 255, 255, 0.12);

	color: rgba(255, 255, 255, 0.62);
}


/* Awaiting review */

.da-assignment-status.is-submitted {
	background: rgba(245, 178, 55, 0.15);

	border-color: rgba(245, 178, 55, 0.35);

	color: #ffd477;

	box-shadow:
		0 0 18px rgba(245, 178, 55, 0.08);
}


/* Reviewed — clearly good */

.da-assignment-status.is-reviewed {
	background: rgba(42, 190, 122, 0.16);

	border-color: rgba(42, 190, 122, 0.42);

	color: #72e3ac;

	box-shadow:
		0 0 20px rgba(42, 190, 122, 0.10);
}


/* Needs revision — strong warning */

.da-assignment-status.is-needs-revision {
	background: rgba(255, 112, 83, 0.17);

	border-color: rgba(255, 112, 83, 0.48);

	color: #ff9d8c;

	box-shadow:
		0 0 20px rgba(255, 112, 83, 0.13);
}


/* =========================================================
   ANSWER FIELD
========================================================= */

.da-assignment-answer-field {
	display: flex;

	flex-direction: column;

	gap: 7px;

	margin-bottom: 13px;
}

.da-assignment-answer-field label {
	color: rgba(255, 255, 255, 0.65);

	font-size: 11px;

	font-weight: 750;
}

.da-assignment-answer-field textarea {
	display: block;

	box-sizing: border-box;

	width: 100%;

	min-height: 145px;

	padding: 14px 15px;

	resize: vertical;

	border-radius: 13px;

	border: 1px solid rgba(255, 255, 255, 0.16);

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.085),
			rgba(255, 255, 255, 0.035)
		);

	color: #ffffff;

	font-family: inherit;

	font-size: 13px;

	line-height: 1.65;

	outline: none;

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.05);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);

	transition:
		border-color 0.18s ease,
		background 0.18s ease,
		box-shadow 0.18s ease;
}

.da-assignment-answer-field textarea::placeholder {
	color: rgba(255, 255, 255, 0.36);
}

.da-assignment-answer-field textarea:hover {
	border-color: rgba(255, 255, 255, 0.23);

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.105),
			rgba(255, 255, 255, 0.045)
		);
}

.da-assignment-answer-field textarea:focus {
	border-color: var(--da-coral);

	box-shadow:
		0 0 0 3px var(--da-coral-soft),
		inset 0 1px 0 rgba(255, 255, 255, 0.07);
}


/* =========================================================
   ASSIGNMENT ACTIONS
========================================================= */

.da-assignment-form-actions {
	display: flex;

	align-items: center;

	flex-wrap: wrap;

	gap: 10px;
}

.da-assignment-form-actions .da-button {
	min-height: 42px;

	padding: 9px 17px;

	font-size: 12px;

	font-weight: 800;
}

.da-assignment-form-actions .da-button:disabled {
	cursor: wait;

	opacity: 0.60;
}

.da-assignment-submit-message {
	display: inline-block;

	font-size: 11px;

	font-weight: 700;

	line-height: 1.5;
}

.da-assignment-submit-message.is-success {
	color: #6fe0a8;
}

.da-assignment-submit-message.is-error {
	color: #ff9788;
}


/* =========================================================
   INSTRUCTOR FEEDBACK
========================================================= */

.da-assignment-feedback {
	margin-top: 19px;

	overflow: hidden;

	border-radius: 14px;

	background:
		linear-gradient(
			145deg,
			rgba(42, 190, 122, 0.10),
			rgba(255, 255, 255, 0.035)
		);

	border: 1px solid rgba(42, 190, 122, 0.25);

	box-shadow:
		0 10px 30px rgba(0, 0, 0, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}


/* Reviewed header */

.da-assignment-feedback-header {
	display: flex;

	align-items: center;

	gap: 11px;

	padding: 13px 15px;

	background: rgba(42, 190, 122, 0.09);

	border-bottom: 1px solid rgba(42, 190, 122, 0.18);
}

.da-assignment-feedback-icon {
	display: flex;

	align-items: center;

	justify-content: center;

	width: 32px;
	height: 32px;

	flex: 0 0 32px;

	border-radius: 50%;

	background: rgba(42, 190, 122, 0.18);

	border: 1px solid rgba(42, 190, 122, 0.30);

	color: #6fe0a8;

	font-size: 15px;

	font-weight: 900;

	box-shadow:
		0 0 18px rgba(42, 190, 122, 0.12);
}

.da-assignment-feedback-label {
	display: block;

	margin-bottom: 2px;

	color: #69dba4;

	font-size: 8px;

	font-weight: 850;

	letter-spacing: 0.12em;

	text-transform: uppercase;
}

.da-assignment-feedback-header strong {
	display: block;

	color: #d9ffea;

	font-size: 12px;

	font-weight: 800;
}

.da-assignment-feedback-body {
	padding: 14px 16px;
}

.da-assignment-feedback-body p {
	margin: 0;

	color: rgba(255, 255, 255, 0.70);

	font-size: 13px;

	line-height: 1.7;
}


/* =========================================================
   EMPTY STATES
========================================================= */

.da-student-course-content .da-empty-state {
	padding: 35px 20px;

	border-radius: 18px;

	background:
		linear-gradient(
			135deg,
			rgba(255, 255, 255, 0.09),
			rgba(255, 255, 255, 0.04)
		);

	border: 1px solid rgba(255, 255, 255, 0.14);

	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.10);

	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	text-align: center;
}

.da-student-course-content .da-empty-state h2,
.da-student-course-content .da-empty-state h3 {
	margin-top: 0;

	color: #ffffff;
}

.da-student-course-content .da-empty-state p {
	color: rgba(255, 255, 255, 0.62);

	font-size: 13px;

	line-height: 1.65;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 760px) {

	.da-student-course-header {
		grid-template-columns: 1fr;

		gap: 18px;

		padding: 18px;

		border-radius: 18px;
	}

	.da-student-course-image {
		max-width: 520px;

		margin: 0 auto;
	}

	.da-student-course-header-content h2 {
		font-size: 28px;
	}

	.da-student-course-progress {
		padding: 17px;
	}

	.da-student-course-progress-top {
		align-items: flex-start;

		flex-direction: column;

		gap: 6px;
	}

	.da-student-course-summary {
		gap: 10px;

		margin-bottom: 24px;
	}

	.da-student-course-summary-item {
		padding: 13px;
	}

	.da-student-lesson-header {
		padding: 16px;
	}

	.da-student-lesson-video {
		padding: 17px 16px 19px;
	}

	.da-video-wrapper {
		border-radius: 15px;
	}

	.da-student-assignment {
		margin-right: 16px;
		margin-left: 16px;

		padding: 16px;
	}

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 520px) {

	.da-student-course-summary {
		grid-template-columns: 1fr;
	}

	.da-student-course-summary-item {
		min-height: 60px;
	}

	.da-student-lesson {
		border-radius: 17px;
	}

	.da-student-lesson-header {
		gap: 11px;

		padding: 15px;
	}

	.da-student-lesson-number {
		width: 38px;
		height: 38px;

		flex-basis: 38px;

		border-radius: 11px;
	}

	.da-student-lesson-title-wrap h3 {
		font-size: 16px;
	}

	.da-student-lesson-description {
		padding: 14px 15px 0;
	}

	.da-student-lesson-video {
		padding: 15px;
	}

	.da-video-wrapper {
		border-radius: 12px;
	}

	.da-student-assignment {
		margin-right: 15px;
		margin-left: 15px;

		padding: 15px;

		border-radius: 14px;
	}

	.da-student-assignment-header {
		flex-direction: column;

		gap: 9px;
	}

	.da-assignment-status {
		align-self: flex-start;
	}

	.da-assignment-form-actions {
		align-items: stretch;

		flex-direction: column;
	}

	.da-assignment-form-actions .da-button {
		width: 100%;
	}

	.da-assignment-submit-message {
		display: block;
	}

	.da-assignment-feedback-header {
		align-items: flex-start;
	}

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

	.da-page-my-course {
		padding-top: 45px;
	}

	.da-student-course-header {
		padding: 15px;
	}

	.da-student-course-header-content h2 {
		font-size: 24px;
	}

	.da-student-assignment {
		margin-right: 12px;
		margin-left: 12px;
	}

}

/* =========================================================
   46. ACCOUNT
   ========================================================= */

.da-narrow-section {
	max-width: 800px;

	margin-left: auto;
	margin-right: auto;
}

.da-page-intro-card {
	padding: 34px;

	border-radius: 22px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.15),
			rgba(255, 255, 255, 0.075)
		);

	border: 1px solid rgba(255, 255, 255, 0.21);

	box-shadow: var(--da-shadow-soft);
}

.da-page-intro-card h1 {
	margin: 0 0 16px;

	color: #ffffff;

	font-size: clamp(38px, 5vw, 56px);

	font-weight: 900;

	line-height: 1;

	letter-spacing: -0.05em;
}

.da-page-intro-card p {
	margin: 0 0 15px;

	color: rgba(255, 255, 255, 0.70);

	font-size: 14px;

	line-height: 1.75;
}

.da-page-intro-card p:last-child {
	margin-bottom: 0;
}

.da-account-content {
	width: 100%;
}

.da-account-card {
	padding: 25px;

	display: flex;
	align-items: center;

	gap: 18px;

	border-radius: 18px;

	background: rgba(255, 255, 255, 0.09);

	border: 1px solid rgba(255, 255, 255, 0.17);
}

.da-account-avatar {
	width: 70px;
	height: 70px;

	flex: 0 0 70px;

	overflow: hidden;

	border-radius: 50%;

	border: 2px solid var(--da-coral-border);
}

.da-account-avatar img {
	display: block;

	width: 100%;
	height: 100%;

	object-fit: cover;
}

.da-account-details {
	display: flex;
	flex-direction: column;

	gap: 4px;
}

.da-account-details strong {
	color: #ffffff;

	font-size: 17px;
}

.da-account-details span {
	color: rgba(255, 255, 255, 0.58);

	font-size: 12px;
}


/* =========================================================
   47. CONTACT
   ========================================================= */

.da-contact-card {
	margin-top: 25px;

	display: grid;

	grid-template-columns: repeat(2, minmax(0, 1fr));

	gap: 10px;
}

.da-contact-item {
	min-height: 90px;

	padding: 17px;

	display: flex;
	flex-direction: column;
	justify-content: center;

	gap: 4px;

	border-radius: 13px;

	background: rgba(255, 255, 255, 0.075);

	border: 1px solid rgba(255, 255, 255, 0.15);

	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

a.da-contact-item:hover {
	background: var(--da-coral-soft);

	border-color: var(--da-coral-border);

	transform: translateY(-2px);
}

.da-contact-item span {
	color: rgba(255, 255, 255, 0.52);

	font-size: 10px;
	font-weight: 750;

	text-transform: uppercase;

	letter-spacing: 0.10em;
}

.da-contact-item strong {
	color: #ffffff;

	font-size: 14px;
}


/* =========================================================
   48. LOADING
   ========================================================= */

.da-loading {
	min-height: 150px;

	display: flex;
	align-items: center;
	justify-content: center;

	gap: 10px;

	color: rgba(255, 255, 255, 0.68);

	font-size: 13px;
}

.da-spinner {
	width: 20px;
	height: 20px;

	flex: 0 0 20px;

	border: 2px solid rgba(255, 255, 255, 0.20);
	border-top-color: var(--da-coral);

	border-radius: 50%;

	animation: daSpin 0.75s linear infinite;
}

.da-retry-button {
	margin-top: 12px;
}


/* =========================================================
   49. ERROR
   ========================================================= */

.da-error-card {
	width: min(
		calc(100% - 48px),
		650px
	);

	margin: 100px auto;

	padding: 40px;

	text-align: center;

	border-radius: 22px;

	background: rgba(255, 255, 255, 0.10);

	border: 1px solid rgba(255, 255, 255, 0.20);

	box-shadow: var(--da-shadow);
}

.da-error-card h1 {
	margin: 0 0 12px;

	color: #ffffff;

	font-size: 40px;
	font-weight: 900;
}

.da-error-card p {
	margin: 0 0 24px;

	color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   50. FOOTER — PREMIUM GLASS UI
   ========================================================= */

.da-footer {
	position: relative;

	width: 100%;

	margin-top: 55px;

	border-top: 1px solid rgba(255, 255, 255, 0.12);

	background:
		linear-gradient(
			180deg,
			rgba(8, 79, 159, 0.24),
			rgba(6, 45, 91, 0.30)
		);

	box-shadow:
		0 -18px 50px rgba(0, 0, 0, 0.08);

	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.da-footer::before {
	content: "";

	position: absolute;

	top: 0;
	left: 50%;

	width: min(700px, 80%);

	height: 1px;

	transform: translateX(-50%);

	background:
		linear-gradient(
			90deg,
			transparent,
			rgba(255, 255, 255, 0.22),
			transparent
		);

	pointer-events: none;
}

.da-footer-inner {
	width: min(
		calc(100% - 48px),
		var(--da-container)
	);

	min-height: 105px;

	margin: 0 auto;

	padding: 28px 0;

	display: grid;

	grid-template-columns:
		minmax(180px, 1fr)
		auto
		minmax(180px, 1fr);

	align-items: center;

	gap: 35px;
}


/* =========================================================
   FOOTER BRAND
========================================================= */

.da-footer-brand {
	min-width: 0;
}

.da-footer-brand-link {
	display: inline-flex;

	align-items: center;

	gap: 12px;

	text-decoration: none;
}

.da-footer-brand .da-brand-mark {
	width: 44px;
	height: 44px;

	flex: 0 0 44px;

	border-radius: 13px;

	box-shadow:
		0 8px 22px rgba(0, 0, 0, 0.12);
}

.da-footer-brand-link > span:last-child {
	display: flex;

	flex-direction: column;

	gap: 3px;
}

.da-footer-brand-link strong {
	color: #ffffff;

	font-size: 14px;

	font-weight: 850;

	letter-spacing: -0.01em;
}

.da-footer-brand-link > span:last-child > span {
	color: rgba(255, 255, 255, 0.48);

	font-size: 10px;

	line-height: 1.4;
}


/* =========================================================
   FOOTER NAVIGATION
========================================================= */

.da-footer-links {
	display: flex;

	align-items: center;

	justify-content: center;

	flex-wrap: wrap;

	gap: 5px;

	padding: 5px;

	border-radius: 14px;

	background: rgba(255, 255, 255, 0.035);

	border: 1px solid rgba(255, 255, 255, 0.07);

	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.04);

	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.da-footer-links a {
	display: inline-flex;

	align-items: center;

	justify-content: center;

	min-height: 32px;

	padding: 6px 10px;

	color: rgba(255, 255, 255, 0.60) !important;

	font-size: 10px;

	font-weight: 700;

	line-height: 1;

	border-radius: 9px;

	text-decoration: none;

	transition:
		background 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

.da-footer-links a:hover {
	color: var(--da-coral) !important;

	background: var(--da-coral-soft);

	transform: translateY(-1px);
}


/* =========================================================
   FOOTER COPYRIGHT
========================================================= */

.da-footer-copy {
	color: rgba(255, 255, 255, 0.40);

	font-size: 10px;

	line-height: 1.6;

	text-align: right;
}


/* =========================================================
   51. REGISTRATION COMPLETE
   ========================================================= */

#dallol-academy-app.is-registration-complete
.da-registration-form-wrapper {
	animation:
		daRegistrationComplete
		0.4s
		ease;
}

@keyframes daRegistrationComplete {

	from {
		opacity: 0;

		transform:
			translateY(10px);
	}

	to {
		opacity: 1;

		transform:
			translateY(0);
	}

}


/* =========================================================
   52. TABLET
   ========================================================= */

@media (max-width: 1000px) {

	.da-hero {
		grid-template-columns: 1fr;

		min-height: auto;

		padding: 65px 0 50px;
	}

	.da-hero-content {
		max-width: 760px;
	}

	.da-hero-visual {
		min-height: 300px;
	}

	.da-course-grid {
		grid-template-columns:
			repeat(
				2,
				minmax(0, 1fr)
			);
	}

	.da-course-card:last-child {
		grid-column: 1 / -1;

		max-width:
			calc(50% - 9px);

		width: 100%;

		margin: 0 auto;
	}


	/* Footer becomes a clean stacked layout */

	.da-footer-inner {
		grid-template-columns: 1fr;

		gap: 18px;

		padding: 30px 0 28px;

		text-align: center;
	}

	.da-footer-brand,
	.da-footer-links {
		justify-content: center;
	}

	.da-footer-brand-link {
		justify-content: center;
	}

	.da-footer-copy {
		text-align: center;
	}

}


/* =========================================================
   53. FOOTER MOBILE
   ========================================================= */

@media (max-width: 600px) {

	.da-footer {
		margin-top: 40px;
	}

	.da-footer-inner {
		width:
			calc(100% - 32px);

		padding: 25px 0 24px;

		gap: 16px;
	}

	.da-footer-brand .da-brand-mark {
		width: 40px;
		height: 40px;

		flex-basis: 40px;

		border-radius: 11px;
	}

	.da-footer-links {
		width: 100%;

		padding: 5px;

		gap: 3px;
	}

	.da-footer-links a {
		padding: 7px 8px;

		font-size: 9px;
	}

	.da-footer-copy {
		font-size: 9px;
	}

}


/* =========================================================
   54. VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

	.da-footer-inner {
		width:
			calc(100% - 26px);
	}

	.da-footer-links {
		display: grid;

		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		width: 100%;
	}

	.da-footer-links a {
		width: 100%;
	}

}

/* =========================================================
   53. MOBILE
   ========================================================= */

@media (max-width: 700px) {

	.da-home-container,
	.da-registration-container,
	.da-course-details-container,
	.da-student-course-container,
	.da-header-inner,
	.da-footer-inner {
		width: min(
			calc(100% - 28px),
			var(--da-container)
		);
	}


	/* Header */

	.da-header-inner {
		min-height: 70px;

		gap: 12px;
	}

	.da-brand-mark {
		width: 42px;
		height: 42px;

		flex-basis: 42px;

		border-radius: 11px;
	}

	.da-brand-copy strong {
		font-size: 15px;
	}

	.da-brand-copy small {
		display: none;
	}

	.da-mobile-menu-toggle {
		display: flex;
	}

	.da-nav {
		position: absolute;

		top: calc(100% + 8px);
		left: 14px;
		right: 14px;

		display: none;

		padding: 8px;

		flex-direction: column;
		align-items: stretch;

		border-radius: 16px;

		background:
			linear-gradient(
				145deg,
				rgba(13, 99, 189, 0.98),
				rgba(8, 79, 159, 0.98)
			);

		border: 1px solid rgba(255, 255, 255, 0.20);

		box-shadow: 0 20px 45px rgba(0, 25, 65, 0.30);

		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
	}

	.da-nav.is-open {
		display: flex;
	}

	.da-nav-link {
		width: 100%;

		padding: 13px 14px;
	}

	.da-nav-link.is-active::after {
		left: 14px;
		right: auto;
		bottom: 8px;

		width: 22px;
	}


	/* Hero */

	.da-hero {
		padding: 52px 0 35px;

		gap: 25px;
	}

	.da-hero h1 {
		font-size: clamp(42px, 12vw, 60px);
	}

	.da-hero p {
		font-size: 15px;
	}

	.da-hero-visual {
		min-height: 250px;
	}

	.da-hero-frame {
		width: 260px;
		height: 260px;

		padding: 28px;

		border-radius: 23px;
	}

	.da-hero-frame-label {
		font-size: 19px;
	}

	.da-hero-frame-line {
		margin: 14px 0;
	}


	/* Sections */

	.da-section {
		padding: 55px 0;
	}

	.da-section-heading {
		margin-bottom: 24px;
	}

	.da-section-heading h2 {
		font-size: 31px;
	}


	/* Course cards */

	.da-course-grid {
		grid-template-columns: 1fr;

		gap: 12px;
	}

	.da-course-card:last-child {
		grid-column: auto;

		max-width: none;

		margin: 0;
	}

	.da-course-card {
		padding: 21px;
	}

	.da-course-card h3 {
		font-size: 23px;
	}

	.da-course-description {
		min-height: auto;
	}

	.da-course-card-bottom {
		align-items: stretch;

		flex-direction: column;
	}

	.da-course-actions {
		width: 100%;
	}

	.da-course-actions .da-button {
		width: 100%;
	}

	.da-price strong {
		font-size: 22px;
	}


	/* FAQ */

	.da-faq-question {
		padding: 16px;

		font-size: 13px;
	}

	.da-faq-answer {
		padding: 0 16px 17px;

		font-size: 13px;
	}

	.da-faq-price-list > div {
		align-items: flex-start;

		flex-direction: column;

		gap: 3px;
	}


	/* Registration */

	.da-page-registration {
		padding: 40px 0 70px;
	}

	.da-registration-header h1 {
		font-size: 43px;
	}

	.da-registration-section,
	.da-registration-dynamic-panel {
		padding: 20px;

		border-radius: 17px;
	}

	.da-registration-course-options,
	.da-registration-fields,
	.da-registration-format-options,
	.da-registration-summary {
		grid-template-columns: 1fr;
	}

	.da-registration-course-card {
		align-items: flex-start;

		flex-direction: column;
	}

	.da-registration-section-heading {
		gap: 10px;
	}

	.da-registration-section-heading h2 {
		font-size: 20px;
	}


	/* Course details */

	.da-page-course-details {
		padding: 40px 0 70px;
	}

	.da-course-details-hero {
		padding: 24px;

		border-radius: 18px;
	}

	.da-course-details-hero h1 {
		font-size: 43px;
	}

	.da-course-meta-grid {
		grid-template-columns: 1fr;
	}

	.da-course-details-container > .da-section {
		padding: 32px 0;
	}

	.da-curriculum-grid,
	.da-training-options-grid,
	.da-schedule-grid {
		grid-template-columns: 1fr;
	}

	.da-curriculum-card {
		font-size: 12px;
	}

	.da-online-details-card {
		align-items: flex-start;

		flex-direction: column;

		padding: 22px;
	}

	.da-online-days {
		width: 100%;

		text-align: center;
	}

	.da-online-days span {
		white-space: normal;
	}

	.da-consultation-card {
		padding: 30px 20px;
	}


	/* Other pages */

	.da-page-my-course,
	.da-page-my-account,
	.da-page-about,
	.da-page-contact,
	.da-page-terms {
		padding: 45px 0 70px;
	}

	.da-page-intro-card {
		padding: 25px;

		border-radius: 18px;
	}

	.da-page-intro-card h1 {
		font-size: 42px;
	}

	.da-contact-card {
		grid-template-columns: 1fr;
	}


	/* Footer */

	.da-footer-inner {
		padding: 30px 0;

		gap: 22px;
	}

	.da-footer-links {
		gap: 2px;
	}

	.da-footer-links a {
		padding: 7px;
	}
}


/* =========================================================
   54. SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

	.da-home-container,
	.da-registration-container,
	.da-course-details-container,
	.da-student-course-container,
	.da-header-inner,
	.da-footer-inner {
		width: calc(100% - 22px);
	}

	.da-hero h1 {
		font-size: 42px;
	}

	.da-hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.da-hero-actions .da-button {
		width: 100%;
	}

	.da-course-card {
		padding: 18px;
	}

	.da-registration-section,
	.da-registration-dynamic-panel {
		padding: 17px;
	}

	.da-registration-course-option-inner {
		min-height: 88px;
	}

	.da-course-details-hero {
		padding: 20px;
	}

	.da-course-details-hero h1 {
		font-size: 39px;
	}

	.da-consultation-card h2 {
		font-size: 31px;
	}
}


/* =========================================================
   55. ACCESSIBILITY
   ========================================================= */

#dallol-academy-app a:focus-visible,
#dallol-academy-app button:focus-visible,
#dallol-academy-app input:focus-visible,
#dallol-academy-app select:focus-visible,
#dallol-academy-app textarea:focus-visible,
#dallol-academy-app summary:focus-visible {
	outline: 2px solid var(--da-coral);
	outline-offset: 3px;
}


/* =========================================================
   56. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

	#dallol-academy-app *,
	#dallol-academy-app *::before,
	#dallol-academy-app *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}
 /* =========================================================
    DALLOL ACADEMY
    REGISTRATION SUCCESS SCREEN
========================================================= */

.da-registration-success-app {

	width: 100%;
	min-height: 100vh;

	margin: 0;
	padding: 0;

}


/* =========================================================
   SUCCESS SCREEN
========================================================= */

.da-registration-success-screen {

	position: relative;

	width: 100%;
	min-height: 100vh;

	display: flex;

	flex-direction: column;

	align-items: center;

	justify-content: center;

	padding:
		48px 20px 32px;

	box-sizing: border-box;

	overflow: hidden;

	background:
		#f6f8fc;

}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.da-registration-success-screen::before {

	content: "";

	position: absolute;

	width: 520px;
	height: 520px;

	border-radius: 50%;

	top: -280px;
	right: -180px;

	background:
		rgba(30, 136, 229, 0.055);

	pointer-events: none;

}


.da-registration-success-screen::after {

	content: "";

	position: absolute;

	width: 420px;
	height: 420px;

	border-radius: 50%;

	bottom: -250px;
	left: -190px;

	background:
		rgba(30, 136, 229, 0.04);

	pointer-events: none;

}


/* =========================================================
   CONTENT
========================================================= */

.da-registration-success-content {

	position: relative;

	z-index: 2;

	width: 100%;

	max-width: 500px;

	display: flex;

	flex-direction: column;

	align-items: center;

	text-align: center;

}


/* =========================================================
   SUCCESS ICON
========================================================= */

.da-registration-success-icon-wrap {

	width: 94px;
	height: 94px;

	display: flex;

	align-items: center;
	justify-content: center;

	margin-bottom: 25px;

	animation:
		da-success-icon-enter
		0.65s
		cubic-bezier(.22,1,.36,1)
		both;

}


.da-registration-success-icon-circle {

	width: 78px;
	height: 78px;

	border-radius: 50%;

	display: flex;

	align-items: center;
	justify-content: center;

	background:
		#ffffff;

	box-shadow:
		0 14px 38px rgba(25, 45, 75, 0.11);

	position: relative;

}


/*
 * Soft outer ring.
 */

.da-registration-success-icon-circle::before {

	content: "";

	position: absolute;

	inset: -8px;

	border-radius: 50%;

	border:
		1px solid rgba(22, 132, 74, 0.13);

}


/* =========================================================
   SUCCESS CHECK
========================================================= */

.da-registration-success-check {

	width: 42px;
	height: 42px;

	color:
		#16844a;

	stroke-dasharray:
		60;

	stroke-dashoffset:
		60;

	animation:
		da-success-check
		0.65s
		0.25s
		ease
		forwards;

}


/* =========================================================
   HEADING
========================================================= */

.da-registration-success-heading {

	animation:
		da-success-content-enter
		0.6s
		0.12s
		cubic-bezier(.22,1,.36,1)
		both;

}


.da-registration-success-eyebrow {

	margin-bottom:
		9px;

	font-size:
		12px;

	font-weight:
		750;

	letter-spacing:
		0.12em;

	line-height:
		1.4;

	text-transform:
		uppercase;

	color:
		#16844a;

}


.da-registration-success-heading h1 {

	margin:
		0;

	padding:
		0;

	font-size:
		clamp(30px, 7vw, 42px);

	line-height:
		1.08;

	font-weight:
		800;

	letter-spacing:
		-0.035em;

	color:
		#152033;

}


.da-registration-success-heading p {

	max-width:
		460px;

	margin:
		13px auto 0;

	padding:
		0;

	font-size:
		16px;

	line-height:
		1.55;

	color:
		#697586;

}


/* =========================================================
   COURSE CARD
========================================================= */

.da-registration-success-course {

	width: 100%;

	margin-top:
		30px;

	padding:
		17px 18px;

	display:
		flex;

	align-items:
		center;

	gap:
		14px;

	box-sizing:
		border-box;

	text-align:
		left;

	border:
		1px solid rgba(20, 35, 55, 0.07);

	border-radius:
		18px;

	background:
		rgba(255, 255, 255, 0.96);

	box-shadow:
		0 12px 32px rgba(25, 45, 75, 0.06);

	animation:
		da-success-content-enter
		0.6s
		0.2s
		cubic-bezier(.22,1,.36,1)
		both;

}


/* =========================================================
   COURSE ICON
========================================================= */

.da-registration-success-course-icon {

	flex:
		0 0 48px;

	width:
		48px;

	height:
		48px;

	border-radius:
		14px;

	display:
		flex;

	align-items:
		center;

	justify-content:
		center;

	background:
		#eef7f2;

	color:
		#16844a;

}


.da-registration-success-course-icon svg {

	width:
		25px;

	height:
		25px;

	max-width:
		25px;

	max-height:
		25px;

	display:
		block;

}


/* =========================================================
   COURSE TEXT
========================================================= */

.da-registration-success-course-text {

	min-width:
		0;

	display:
		flex;

	flex-direction:
		column;

	gap:
		4px;

}


.da-registration-success-course-text span {

	font-size:
		12px;

	line-height:
		1.2;

	font-weight:
		600;

	color:
		#8993a4;

}


.da-registration-success-course-text strong {

	display:
		block;

	min-width:
		0;

	font-size:
		16px;

	line-height:
		1.35;

	font-weight:
		750;

	color:
		#1b2638;

	overflow:
		hidden;

	text-overflow:
		ellipsis;

	white-space:
		nowrap;

}


/* =========================================================
   NEXT MESSAGE
========================================================= */

.da-registration-success-next {

	margin-top:
		19px;

	animation:
		da-success-content-enter
		0.6s
		0.28s
		cubic-bezier(.22,1,.36,1)
		both;

}


.da-registration-success-next p {

	margin:
		0;

	font-size:
		14px;

	line-height:
		1.5;

	color:
		#737f90;

}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.da-registration-success-button {

	width:
		100%;

	min-height:
		56px;

	margin-top:
		25px;

	padding:
		0 20px;

	display:
		flex;

	align-items:
		center;

	justify-content:
		center;

	gap:
		10px;

	box-sizing:
		border-box;

	border:
		0;

	border-radius:
		16px;

	background:
		#16844a;

	color:
		#ffffff !important;

	font-family:
		inherit;

	font-size:
		16px;

	font-weight:
		750;

	line-height:
		1;

	text-decoration:
		none !important;

	cursor:
		pointer;

	box-shadow:
		0 12px 28px rgba(22, 132, 74, 0.19);

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;

	animation:
		da-success-content-enter
		0.6s
		0.34s
		cubic-bezier(.22,1,.36,1)
		both;

}


.da-registration-success-button svg {

	width:
		20px;

	height:
		20px;

	max-width:
		20px;

	max-height:
		20px;

	flex:
		0 0 auto;

	display:
		block;

	transition:
		transform 0.2s ease;

}


.da-registration-success-button:hover {

	transform:
		translateY(-2px);

	box-shadow:
		0 16px 34px rgba(22, 132, 74, 0.25);

	background:
		#11713f;

	color:
		#ffffff !important;

}


.da-registration-success-button:hover svg {

	transform:
		translateX(3px);

}


.da-registration-success-button:active {

	transform:
		translateY(0);

}


/* =========================================================
   OPTIONAL SECONDARY BUTTON
   Kept only for compatibility if present elsewhere.
   
   There is NO countdown or automatic-reload UI.
========================================================= */

.da-registration-success-stay {

	margin-top:
		12px;

	padding:
		5px 10px;

	border:
		0;

	background:
		transparent;

	color:
		#8a94a4;

	font-family:
		inherit;

	font-size:
		12px;

	font-weight:
		600;

	cursor:
		pointer;

	transition:
		color 0.2s ease;

}


.da-registration-success-stay:hover {

	color:
		#16844a;

}


/* =========================================================
   FOOTER
========================================================= */

.da-registration-success-footer {

	position:
		relative;

	z-index:
		2;

	margin-top:
		30px;

	font-size:
		11px;

	line-height:
		1.4;

	color:
		#a0a8b5;

	text-align:
		center;

}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes da-success-icon-enter {

	0% {

		opacity:
			0;

		transform:
			scale(0.65)
			translateY(12px);

	}

	100% {

		opacity:
			1;

		transform:
			scale(1)
			translateY(0);

	}

}


@keyframes da-success-check {

	0% {

		stroke-dashoffset:
			60;

	}

	100% {

		stroke-dashoffset:
			0;

	}

}


@keyframes da-success-content-enter {

	0% {

		opacity:
			0;

		transform:
			translateY(14px);

	}

	100% {

		opacity:
			1;

		transform:
			translateY(0);

	}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

	.da-registration-success-screen {

		min-height:
			100vh;

		padding:
			34px 18px 28px;

	}


	.da-registration-success-content {

		max-width:
			100%;

	}


	.da-registration-success-icon-wrap {

		width:
			82px;

		height:
			82px;

		margin-bottom:
			21px;

	}


	.da-registration-success-icon-circle {

		width:
			68px;

		height:
			68px;

	}


	.da-registration-success-check {

		width:
			36px;

		height:
			36px;

	}


	.da-registration-success-heading h1 {

		font-size:
			30px;

	}


	.da-registration-success-heading p {

		margin-top:
			11px;

		font-size:
			14px;

		line-height:
			1.6;

	}


	.da-registration-success-course {

		margin-top:
			24px;

		padding:
			15px;

		border-radius:
			16px;

	}


	.da-registration-success-course-icon {

		flex-basis:
			44px;

		width:
			44px;

		height:
			44px;

		border-radius:
			13px;

	}


	.da-registration-success-course-icon svg {

		width:
			23px;

		height:
			23px;

	}


	.da-registration-success-course-text strong {

		font-size:
			15px;

	}


	.da-registration-success-next {

		margin-top:
			16px;

	}


	.da-registration-success-next p {

		font-size:
			13px;

	}


	.da-registration-success-button {

		min-height:
			54px;

		margin-top:
			22px;

		border-radius:
			14px;

		font-size:
			15px;

	}


	.da-registration-success-footer {

		margin-top:
			24px;

	}

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

	.da-registration-success-screen {

		padding:
			28px 14px 22px;

	}


	.da-registration-success-icon-wrap {

		margin-bottom:
			18px;

	}


	.da-registration-success-heading h1 {

		font-size:
			27px;

	}


	.da-registration-success-heading p {

		font-size:
			13px;

	}


	.da-registration-success-course {

		margin-top:
			20px;

	}


	.da-registration-success-next p {

		font-size:
			12.5px;

	}


	.da-registration-success-button {

		min-height:
			52px;

		font-size:
			14px;

	}

}


/* =========================================================
   REMOVE LEGACY COUNTDOWN UI
========================================================= */

/*
 * These elements belonged to the old automatic
 * reload/countdown behavior.
 *
 * They are intentionally hidden so old markup cannot
 * reappear if it still exists in the current JS/PHP.
 */

.da-registration-success-countdown {

	display:
		none !important;

}


.da-registration-success-countdown strong {

	display:
		none !important;

}


/* =========================================================
   REMOVE LEGACY STAY ACTION
========================================================= */

.da-registration-success-stay {

	display:
		none !important;

}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 520px) {

	.da-registration-success-screen {

		padding:
			34px 18px 24px;

	}


	.da-registration-success-icon-wrap {

		margin-bottom:
			21px;

	}


	.da-registration-success-icon-circle {

		width:
			72px;

		height:
			72px;

	}


	.da-registration-success-check {

		width:
			38px;

		height:
			38px;

	}


	.da-registration-success-heading h1 {

		font-size:
			32px;

	}


	.da-registration-success-heading p {

		font-size:
			15px;

	}


	.da-registration-success-course {

		margin-top:
			26px;

		padding:
			15px;

		border-radius:
			16px;

	}


	.da-registration-success-button {

		min-height:
			54px;

		margin-top:
			22px;

	}

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 360px) {

	.da-registration-success-screen {

		padding-left:
			15px;

		padding-right:
			15px;

	}


	.da-registration-success-heading h1 {

		font-size:
			29px;

	}


	.da-registration-success-course-text strong {

		font-size:
			15px;

	}

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.da-registration-success-icon-wrap,
	.da-registration-success-check,
	.da-registration-success-heading,
	.da-registration-success-course,
	.da-registration-success-next,
	.da-registration-success-button,
	.da-registration-success-countdown {

		animation:
			none !important;

	}


	.da-registration-success-check {

		stroke-dashoffset:
			0;

	}


	.da-registration-success-button,
	.da-registration-success-button svg {

		transition:
			none;

	}

}


/* =========================================================
   SUCCESS PAGE — FULL SCREEN CLEANUP
========================================================= */

body:has(
	.da-registration-success-app
) {

	margin:
		0 !important;

	padding:
		0 !important;

}


body:has(
	.da-registration-success-app
) .entry-header,
body:has(
	.da-registration-success-app
) .entry-footer {

	display:
		none !important;

}


body:has(
	.da-registration-success-app
) .site-header,
body:has(
	.da-registration-success-app
) .site-footer {

	display:
		none !important;

}
/* =========================================================
   DALLOL ACADEMY
   FINAL UI OVERRIDES
   REGISTRATION SUCCESS + MY COURSE
   Paste at the VERY END of academy.css
   ========================================================= */


/* =========================================================
   57. REGISTRATION SUCCESS — PREMIUM OVERRIDE
   ========================================================= */

.da-registration-success-screen {
	min-height: 100vh;

	padding: 70px 20px 45px;

	background:
		radial-gradient(
			circle at 50% 0%,
			rgba(22, 119, 210, 0.10),
			transparent 38%
		),
		linear-gradient(
			180deg,
			#f8fbff 0%,
			#f4f7fb 100%
		);
}

.da-registration-success-content {
	max-width: 500px;
}


/* Success icon */

.da-registration-success-icon-wrap {
	width: 104px;
	height: 104px;

	margin-bottom: 28px;
}

.da-registration-success-icon-circle {
	width: 84px;
	height: 84px;

	background: #ffffff;

	border: 1px solid rgba(22, 119, 210, 0.10);

	box-shadow:
		0 18px 45px rgba(15, 54, 95, 0.12),
		0 0 0 10px rgba(22, 119, 210, 0.035);
}

.da-registration-success-icon-circle::before {
	inset: -9px;

	border-color:
		rgba(22, 119, 210, 0.12);
}

.da-registration-success-check {
	width: 44px;
	height: 44px;
}


/* Heading */

.da-registration-success-heading {
	width: 100%;
}

.da-registration-success-eyebrow {
	margin-bottom: 11px;

	color: #16844a;

	font-size: 11px;
	font-weight: 800;

	letter-spacing: 0.15em;
}

.da-registration-success-heading h1 {
	font-size: clamp(34px, 7vw, 46px);
	font-weight: 850;

	line-height: 1.04;

	letter-spacing: -0.045em;

	color: #10233f;
}

.da-registration-success-heading p {
	max-width: 430px;

	margin: 15px auto 0;

	font-size: 16px;
	line-height: 1.6;

	color: #64748b;
}


/* Course confirmation */

.da-registration-success-course {
	position: relative;

	margin-top: 32px;

	padding: 18px 20px;

	border:
		1px solid rgba(22, 119, 210, 0.11);

	border-radius: 18px;

	background:
		linear-gradient(
			135deg,
			#ffffff,
			#fafdff
		);

	box-shadow:
		0 16px 40px rgba(20, 45, 75, 0.075);

	overflow: hidden;
}

.da-registration-success-course::before {
	content: "";

	position: absolute;

	top: 0;
	left: 0;

	width: 4px;
	height: 100%;

	background: #1677d2;
}

.da-registration-success-course-icon {
	flex-basis: 50px;

	width: 50px;
	height: 50px;

	border-radius: 14px;

	background:
		rgba(22, 119, 210, 0.08);

	border:
		1px solid rgba(22, 119, 210, 0.10);

	color: #1677d2;
}

.da-registration-success-course-icon svg {
	width: 24px;
	height: 24px;
}

.da-registration-success-course-text {
	gap: 5px;
}

.da-registration-success-course-text span {
	color: #8a96a8;

	font-size: 10px;
	font-weight: 750;

	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.da-registration-success-course-text strong {
	color: #18263b;

	font-size: 16px;
	font-weight: 800;
}


/* Next message */

.da-registration-success-next {
	margin-top: 21px;
}

.da-registration-success-next p {
	font-size: 13px;

	color: #718096;
}


/* Main CTA */

.da-registration-success-button {
	position: relative;

	min-height: 58px;

	margin-top: 24px;

	border:
		1px solid #1677d2;

	border-radius: 14px;

	background:
		linear-gradient(
			135deg,
			#1677d2,
			#0d63bd
		);

	color: #ffffff !important;

	font-size: 14px;
	font-weight: 800;

	box-shadow:
		0 14px 30px rgba(22, 119, 210, 0.20);
}

.da-registration-success-button:hover {
	background:
		linear-gradient(
			135deg,
			#0d63bd,
			#084f9f
		);

	box-shadow:
		0 18px 38px rgba(22, 119, 210, 0.27);

	color: #ffffff !important;
}

.da-registration-success-button svg {
	width: 19px;
	height: 19px;
}


/* Countdown */

.da-registration-success-countdown {
	margin-top: 15px;

	font-size: 11px;

	color: #8a96a8;
}

.da-registration-success-countdown strong {
	color: #1677d2;
	font-size: 12px;
}


/* Stay button */

.da-registration-success-stay {
	margin-top: 8px;

	color: #8a96a8;

	font-size: 11px;
}

.da-registration-success-stay:hover {
	color: #1677d2;
}


/* Footer */

.da-registration-success-footer {
	margin-top: 34px;

	color: #a0aabd;

	font-size: 10px;
}


/* Success responsive */

@media (max-width: 520px) {

	.da-registration-success-screen {
		padding:
			45px 17px 30px;
	}

	.da-registration-success-icon-wrap {
		width: 94px;
		height: 94px;

		margin-bottom: 23px;
	}

	.da-registration-success-icon-circle {
		width: 76px;
		height: 76px;
	}

	.da-registration-success-check {
		width: 40px;
		height: 40px;
	}

	.da-registration-success-heading h1 {
		font-size: 33px;
	}

	.da-registration-success-heading p {
		font-size: 15px;
	}

	.da-registration-success-course {
		margin-top: 27px;

		padding: 16px;
	}

	.da-registration-success-button {
		min-height: 56px;

		margin-top: 21px;
	}

}


/* =========================================================
   58. MY COURSE — PREMIUM COURSE DASHBOARD
   ========================================================= */

.da-page-my-course {
	padding:
		65px 0 110px;
}


/* Page heading */

.da-page-my-course .da-student-course-hero {
	position: relative;

	margin-bottom: 28px;

	padding:
		0 0 24px;

	border-bottom:
		1px solid rgba(255, 255, 255, 0.16);
}

.da-student-course-hero h1 {
	margin-bottom: 9px;

	font-size:
		clamp(40px, 5vw, 60px);

	font-weight: 900;

	line-height: 1;

	letter-spacing: -0.055em;
}

.da-student-course-hero p {
	max-width: 680px;

	font-size: 14px;

	line-height: 1.6;

	color:
		rgba(255, 255, 255, 0.70);
}


/* Main student course header */

.da-my-course-header {
	position: relative;

	margin-bottom: 18px;

	padding: 25px 27px;

	border-radius: 20px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.16),
			rgba(255, 255, 255, 0.075)
		);

	border:
		1px solid rgba(255, 255, 255, 0.23);

	box-shadow:
		0 18px 45px rgba(0, 30, 70, 0.14);

	overflow: hidden;
}

.da-my-course-header::before {
	content: "";

	position: absolute;

	top: 0;
	left: 0;

	width: 4px;
	height: 100%;

	background: var(--da-coral);
}

.da-my-course-header::after {
	content: "";

	position: absolute;

	width: 180px;
	height: 180px;

	right: -80px;
	top: -100px;

	border-radius: 50%;

	background:
		rgba(255, 122, 107, 0.08);

	pointer-events: none;
}


/* Progress card */

.da-progress-card {
	position: relative;

	margin-bottom: 20px;

	padding: 22px 24px;

	border-radius: 17px;

	background:
		rgba(255, 255, 255, 0.105);

	border:
		1px solid rgba(255, 255, 255, 0.19);

	box-shadow:
		0 10px 28px rgba(0, 30, 70, 0.09);
}

.da-progress-card-top {
	margin-bottom: 12px;
}

.da-progress-card-top strong {
	font-size: 14px;
	font-weight: 850;
}

.da-progress-card-top span {
	color:
		var(--da-coral);

	font-size: 14px;
	font-weight: 900;
}

.da-progress-track {
	height: 10px;

	background:
		rgba(255, 255, 255, 0.13);

	border:
		1px solid rgba(255, 255, 255, 0.08);
}

.da-progress-track > span {
	background:
		linear-gradient(
			90deg,
			var(--da-coral),
			#ff9a8e
		);

	box-shadow:
		0 0 14px rgba(255, 122, 107, 0.30);
}


/* Lesson list */

.da-lessons-list {
	gap: 13px;
}


/* Individual lesson */

.da-lesson-card {
	position: relative;

	padding: 23px 24px;

	border-radius: 17px;

	background:
		linear-gradient(
			145deg,
			rgba(255, 255, 255, 0.105),
			rgba(255, 255, 255, 0.065)
		);

	border:
		1px solid rgba(255, 255, 255, 0.17);

	box-shadow:
		0 9px 25px rgba(0, 30, 70, 0.07);

	transition:
		transform 0.2s ease,
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease;
}

.da-lesson-card:hover {
	transform: translateY(-2px);

	border-color:
		rgba(255, 122, 107, 0.34);

	background:
		rgba(255, 255, 255, 0.115);

	box-shadow:
		0 14px 32px rgba(0, 30, 70, 0.11);
}


/* Lesson number */

.da-lesson-number {
	margin-bottom: 11px;

	padding: 5px 10px;

	border-radius: 999px;

	background:
		var(--da-coral-soft);

	border:
		1px solid var(--da-coral-border);

	color: #ffffff;

	font-size: 9px;
	font-weight: 850;

	letter-spacing: 0.07em;

	text-transform: uppercase;
}


/* Lesson title */

.da-lesson-heading {
	margin-bottom: 10px;

	color: #ffffff;

	font-size: 21px;

	font-weight: 850;

	line-height: 1.25;

	letter-spacing: -0.02em;
}


/* Lesson text */

.da-lesson-text {
	color:
		rgba(255, 255, 255, 0.70);

	font-size: 13px;

	line-height: 1.75;
}


/* Video */

.da-video-wrapper {
	margin-top: 20px;

	border-radius: 15px;

	background:
		rgba(0, 20, 55, 0.25);

	border:
		1px solid rgba(255, 255, 255, 0.15);

	box-shadow:
		0 10px 25px rgba(0, 20, 55, 0.12);
}


/* =========================================================
   59. ASSIGNMENTS — COURSE DASHBOARD
   ========================================================= */

.da-assignment-card {
	margin-top: 20px;

	padding: 22px;

	border-radius: 16px;

	background:
		rgba(255, 255, 255, 0.085);

	border:
		1px solid rgba(255, 255, 255, 0.16);

	box-shadow:
		0 8px 24px rgba(0, 30, 70, 0.07);

	transition:
		border-color 0.2s ease,
		background 0.2s ease;
}

.da-assignment-card:hover {
	border-color:
		rgba(255, 122, 107, 0.30);

	background:
		rgba(255, 255, 255, 0.105);
}

.da-assignment-top {
	margin-bottom: 13px;
}

.da-assignment-status {
	padding: 6px 10px;

	border-radius: 999px;

	font-size: 9px;

	letter-spacing: 0.06em;
}

.da-assignment-instructions {
	color:
		rgba(255, 255, 255, 0.70);

	font-size: 13px;

	line-height: 1.7;
}

.da-assignment-feedback {
	margin-bottom: 16px;

	padding: 13px 14px;

	border-radius: 11px;

	background:
		rgba(255, 122, 107, 0.075);

	border:
		1px solid rgba(255, 122, 107, 0.18);

	color:
		rgba(255, 255, 255, 0.70);
}

.da-assignment-answer {
	min-height: 135px;

	padding: 14px;

	border-radius: 12px;

	background:
		rgba(255, 255, 255, 0.075);

	border:
		1px solid rgba(255, 255, 255, 0.18);

	color: #ffffff;
}

.da-assignment-answer:focus {
	background:
		rgba(255, 255, 255, 0.105);

	border-color:
		var(--da-coral);

	box-shadow:
		0 0 0 3px var(--da-coral-soft);
}

.da-assignment-submit-row {
	margin-top: 2px;
}

.da-submit-assignment {
	min-height: 44px;

	border-radius: 11px;
}


/* =========================================================
   60. MY COURSE — EMPTY / LOADING / ERROR STATES
   ========================================================= */

.da-page-my-course .da-loading {
	min-height: 210px;

	padding: 35px;

	border-radius: 18px;

	background:
		rgba(255, 255, 255, 0.07);

	border:
		1px solid rgba(255, 255, 255, 0.14);
}

.da-page-my-course .da-error-card {
	margin: 45px auto;

	max-width: 650px;

	border-radius: 19px;

	background:
		rgba(255, 255, 255, 0.085);

	border:
		1px solid rgba(255, 255, 255, 0.17);
}


/* =========================================================
   61. MY COURSE — MOBILE
   ========================================================= */

@media (max-width: 700px) {

	.da-page-my-course {
		padding:
			45px 0 75px;
	}

	.da-page-my-course .da-student-course-hero {
		margin-bottom: 21px;

		padding-bottom: 20px;
	}

	.da-student-course-hero h1 {
		font-size: 43px;
	}

	.da-student-course-hero p {
		font-size: 13px;
	}

	.da-my-course-header {
		padding:
			21px 20px;
	}

	.da-progress-card {
		padding:
			18px;
	}

	.da-progress-card-top strong,
	.da-progress-card-top span {
		font-size: 12px;
	}

	.da-progress-track {
		height: 9px;
	}

	.da-lesson-card {
		padding:
			20px 18px;

		border-radius: 15px;
	}

	.da-lesson-heading {
		font-size: 19px;
	}

	.da-lesson-text {
		font-size: 12px;

		line-height: 1.7;
	}

	.da-assignment-card {
		padding:
			18px;

		border-radius: 15px;
	}

	.da-assignment-submit-row {
		align-items: stretch;

		flex-direction: column;
	}

	.da-submit-assignment {
		width: 100%;
	}

}


/* =========================================================
   62. MY COURSE — SMALL PHONES
   ========================================================= */

@media (max-width: 420px) {

	.da-page-my-course {
		padding:
			38px 0 65px;
	}

	.da-student-course-hero h1 {
		font-size: 38px;
	}

	.da-my-course-header {
		padding:
			18px 16px;
	}

	.da-progress-card {
		padding:
			16px;
	}

	.da-lesson-card {
		padding:
			18px 16px;
	}

	.da-assignment-card {
		padding:
			16px;
	}

}


/* =========================================================
   63. FINAL FOCUS STATES
   ========================================================= */

.da-page-my-course a:focus-visible,
.da-page-my-course button:focus-visible,
.da-registration-success-screen a:focus-visible,
.da-registration-success-screen button:focus-visible {
	outline:
		2px solid var(--da-coral);

	outline-offset:
		3px;
}

/* =========================================================
   DALLOL ACADEMY — LOGIN PAGE
   BLUE BACKGROUND / WHITE LOGIN CARD
   ========================================================= */

.da-page-login {
    min-height: calc(100vh - 140px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px 70px;
    box-sizing: border-box;

    /* Blue page background */
    background: #1677d2;
}

/* White login card */

.da-login-container {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    padding: 42px;
    background: #ffffff;
    border: none;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
}

/* Header */

.da-login-header {
    text-align: center;
    margin-bottom: 32px;
}

.da-login-header h1 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;

    /* Blue text */
    color: #084f9f;
}

.da-login-header p {
    margin: 0 auto;
    max-width: 320px;
    font-size: 15px;
    line-height: 1.6;

    /* Dark readable text */
    color: #5f7083;
}

/* Form */

.da-login-form {
    width: 100%;
}

.da-login-form .da-form-field {
    margin-bottom: 20px;
}

.da-login-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;

    /* Dark blue text */
    color: #243b53;
}

.da-login-form input {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;

    border: 1px solid #d7e2ed;
    border-radius: 12px;

    background: #f8fbfe;
    color: #17324d;

    font-size: 15px;
    line-height: 1.4;

    outline: none;
    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.da-login-form input::placeholder {
    color: #94a3b3;
}

.da-login-form input:hover {
    border-color: #b7cce0;
}

.da-login-form input:focus {
    border-color: #1677d2;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(22, 119, 210, 0.12);
}

/* Login button */

.da-login-form .da-button {
    width: 100%;
    min-height: 52px;
    margin-top: 4px;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
}

/* Login message */

.da-login-message {
    min-height: 20px;
    margin: -2px 0 14px;

    font-size: 14px;
    line-height: 1.5;

    text-align: center;
}

/* Sign up area */

.da-login-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin-top: 26px;
    padding-top: 24px;

    border-top: 1px solid #e8eef4;

    font-size: 14px;
    line-height: 1.5;

    color: #687b8f;
}

.da-login-signup a {
    color: #1677d2;
    font-weight: 700;
    text-decoration: none;
}

.da-login-signup a:hover {
    text-decoration: underline;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .da-page-login {
        min-height: calc(100vh - 110px);
        padding: 30px 16px 50px;
        align-items: center;
    }

    .da-login-container {
        max-width: 100%;
        padding: 32px 22px;
        border-radius: 20px;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    }

    .da-login-header {
        margin-bottom: 26px;
    }

    .da-login-header h1 {
        font-size: 28px;
    }

    .da-login-header p {
        font-size: 14px;
    }

    .da-login-form input,
    .da-login-form .da-button {
        min-height: 50px;
    }

    .da-login-signup {
        flex-wrap: wrap;
    }
}
/* =========================================================
   FORCE LOGIN SCREEN BLUE BACKGROUND
   ========================================================= */

#dallol-academy-app .da-page[data-page="login"],
#dallol-academy-app .da-page-login {
    background: #1677d2 !important;
    background-color: #1677d2 !important;
    color: #ffffff !important;
}

/* Make sure the main app area also doesn't paint white
   behind the login screen */
#dallol-academy-app:has(.da-page[data-page="login"].is-active) {
    background: #1677d2 !important;
}

/* White login card */

#dallol-academy-app .da-page[data-page="login"] .da-login-container,
#dallol-academy-app .da-page-login .da-login-container {
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #084f9f !important;
}

/* Login heading */

#dallol-academy-app .da-page[data-page="login"] .da-login-header h1 {
    color: #084f9f !important;
}

/* Description */

#dallol-academy-app .da-page[data-page="login"] .da-login-header p {
    color: #5f7083 !important;
}

/* Labels */

#dallol-academy-app .da-page[data-page="login"] .da-login-form label {
    color: #243b53 !important;
}

/* Inputs */

#dallol-academy-app .da-page[data-page="login"] .da-login-form input {
    background: #f8fbfe !important;
    background-color: #f8fbfe !important;
    color: #17324d !important;
    border-color: #d7e2ed !important;
}

/* Sign-up text */

#dallol-academy-app .da-page[data-page="login"] .da-login-signup {
    color: #687b8f !important;
}

/* Sign-up link */

#dallol-academy-app .da-page[data-page="login"] .da-login-signup a {
    color: #1677d2 !important;
}
/* =========================================================
   DALLOL ACADEMY — REGISTRATION PAYMENT SCREEN
   CHAPA INLINE PAYMENT UI
========================================================= */


/* =========================================================
   PAYMENT SCREEN WRAPPER
========================================================= */

.da-registration-payment {

    width: 100%;
    max-width: 720px;

    margin: 0 auto;
    padding: 38px 38px 32px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e3eaf2;

    border-radius: 24px;

    box-shadow:
        0 18px 50px rgba(16, 35, 63, 0.08);

    color: #10233f;

}


/* =========================================================
   PAYMENT HEADER
========================================================= */

.da-registration-payment-header {

    margin: 0 0 28px;

    text-align: center;

}


.da-registration-payment-header
.da-eyebrow {

    display: inline-block;

    margin: 0 0 10px;

    color: #1677d2 !important;

    font-size: 11px !important;

    font-weight: 800 !important;

    letter-spacing: 0.12em;

    line-height: 1.4;

}


.da-registration-payment-header h2 {

    margin: 0 0 10px !important;

    padding: 0 !important;

    color: #10233f !important;

    font-size: 30px !important;

    font-weight: 800 !important;

    line-height: 1.2 !important;

    letter-spacing: -0.02em;

}


.da-registration-payment-header p {

    max-width: 570px;

    margin: 0 auto !important;

    padding: 0 !important;

    color: #5c6f84 !important;

    font-size: 14px !important;

    font-weight: 450 !important;

    line-height: 1.65 !important;

}


/* =========================================================
   COURSE FEE
========================================================= */

.da-registration-payment-amount {

    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin: 0 0 24px;
    padding: 18px 20px;

    box-sizing: border-box;

    background: #f5f9fd;

    border: 1px solid #dfeaf4;

    border-radius: 15px;

}


.da-registration-payment-amount span {

    color: #53667c !important;

    font-size: 13px !important;

    font-weight: 650 !important;

}


.da-registration-payment-amount strong {

    color: #10233f !important;

    font-size: 23px !important;

    font-weight: 800 !important;

    line-height: 1.2;

}


/* =========================================================
   ACADEMY PAYMENT METHODS
   Hide duplicate method list generated by Academy.
   
   Chapa provides the actual interactive payment methods
   inside #chapa-payment-methods.
========================================================= */

.da-registration-payment
.da-chapa-payment-methods {

    display: none !important;

}


/* =========================================================
   CHAPA INLINE CONTAINER
========================================================= */

.da-chapa-inline-container {

    width: 100%;

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    color: #10233f;

}


/* =========================================================
   CHAPA PHONE SECTION
========================================================= */

#dallol-academy-chapa-inline
#chapa-phone-input-container {

    width: 100%;

    margin: 0 0 14px;

    padding: 0;

    box-sizing: border-box;

}


#dallol-academy-chapa-inline
.chapa-phone-input-wrapper {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 56px;

    box-sizing: border-box;

    background: #ffffff !important;

    border: 1px solid #ccd9e6 !important;

    border-radius: 14px !important;

    overflow: hidden;

    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;

}


#dallol-academy-chapa-inline
.chapa-phone-input-wrapper:focus-within {

    border-color: #1677d2 !important;

    box-shadow:
        0 0 0 3px rgba(22, 119, 210, 0.12);

}


/* =========================================================
   ETHIOPIA PREFIX
========================================================= */

#dallol-academy-chapa-inline
.chapa-phone-prefix {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    width: 96px;
    min-width: 96px;

    height: 56px;

    padding: 0 12px;

    box-sizing: border-box;

    background: #f5f8fc;

    border-right: 1px solid #dce5ee;

}


#dallol-academy-chapa-inline
.chapa-phone-prefix img {

    width: 21px !important;
    height: auto !important;

    max-width: 21px !important;

    display: block;

}


#dallol-academy-chapa-inline
.chapa-phone-prefix span {

    color: #243b55 !important;

    font-size: 13px !important;

    font-weight: 750 !important;

    white-space: nowrap;

}


/* =========================================================
   PHONE INPUT
========================================================= */

#dallol-academy-chapa-inline
#phone-input-container {

    flex: 1;

    min-width: 0;

}


#dallol-academy-chapa-inline
.chapa-phone-input {

    width: 100% !important;

    min-height: 54px;

    margin: 0 !important;
    padding: 0 12px !important;

    box-sizing: border-box;

    background: #ffffff !important;

    border: 0 !important;

    outline: 0 !important;

    box-shadow: none !important;

    color: #10233f !important;

    font-family: inherit !important;

    font-size: 15px !important;

    font-weight: 550 !important;

}


#dallol-academy-chapa-inline
.chapa-phone-input::placeholder {

    color: #9aaabd !important;

    opacity: 1;

}


/* =========================================================
   SECURITY ICON
========================================================= */

#dallol-academy-chapa-inline
#chapa-phone-input-container
svg#secure {

    flex: 0 0 auto;

    width: 22px !important;
    height: 22px !important;

    margin-right: 14px !important;

}


/* =========================================================
   CHAPA PHONE ERROR
========================================================= */

#dallol-academy-chapa-inline
#chapa-error-container {

    width: 100%;

    margin: 8px 0 0;

    padding: 0;

    box-sizing: border-box;

    color: #b53f3f !important;

    font-size: 12px !important;

    font-weight: 600 !important;

    line-height: 1.5 !important;

}


/* =========================================================
   CHAPA PAYMENT METHODS
========================================================= */

#dallol-academy-chapa-inline
#chapa-payment-methods {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    width: 100%;

    margin: 0 0 16px;

    padding: 0;

    box-sizing: border-box;

}


/* =========================================================
   INDIVIDUAL CHAPA PAYMENT METHOD
========================================================= */

#dallol-academy-chapa-inline
#chapa-payment-methods
.chapa-payment-method {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 82px;

    padding: 10px 8px;

    box-sizing: border-box;

    background: #ffffff !important;

    border: 1px solid #dbe4ed !important;

    border-radius: 13px !important;

    color: #334b63 !important;

    cursor: pointer;

    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease,
        transform 0.18s ease;

}


#dallol-academy-chapa-inline
#chapa-payment-methods
.chapa-payment-method:hover {

    background: #f7fbff !important;

    border-color: #b8d3eb !important;

    transform: translateY(-1px);

}


/* =========================================================
   SELECTED CHAPA PAYMENT METHOD
========================================================= */

#dallol-academy-chapa-inline
#chapa-payment-methods
.chapa-payment-method.chapa-selected {

    background: #f2f8ff !important;

    border-color: #1677d2 !important;

    box-shadow:
        0 0 0 2px rgba(22, 119, 210, 0.08);

}


/* =========================================================
   PAYMENT METHOD ICON
========================================================= */

#dallol-academy-chapa-inline
#chapa-payment-methods
.chapa-payment-icon {

    width: 34px !important;
    height: 34px !important;

    max-width: 34px !important;
    max-height: 34px !important;

    object-fit: contain;

    display: block;

}


/* =========================================================
   PAYMENT METHOD NAME
========================================================= */

#dallol-academy-chapa-inline
#chapa-payment-methods
.chapa-payment-name {

    color: #344b63 !important;

    font-family: inherit !important;

    font-size: 11px !important;

    font-weight: 700 !important;

    line-height: 1.2 !important;

    text-align: center;

    text-transform: none !important;

}


/* Selected method text */

#dallol-academy-chapa-inline
#chapa-payment-methods
.chapa-payment-method.chapa-selected
.chapa-payment-name {

    color: #1268b8 !important;

}


/* =========================================================
   CHAPA PAY BUTTON
========================================================= */

#dallol-academy-chapa-inline
#chapa-pay-button {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 54px;

    margin: 4px 0 0;
    padding: 0 20px;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #1677d2,
            #0f63b4
        ) !important;

    border: 0 !important;

    border-radius: 14px !important;

    color: #ffffff !important;

    font-family: inherit !important;

    font-size: 14px !important;

    font-weight: 800 !important;

    line-height: 1 !important;

    text-align: center;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(22, 119, 210, 0.18);

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        opacity 0.18s ease;

}


#dallol-academy-chapa-inline
#chapa-pay-button:hover:not(:disabled) {

    transform: translateY(-1px);

    box-shadow:
        0 11px 24px rgba(22, 119, 210, 0.25);

}


#dallol-academy-chapa-inline
#chapa-pay-button:active:not(:disabled) {

    transform: translateY(0);

}


#dallol-academy-chapa-inline
#chapa-pay-button:disabled {

    cursor: not-allowed;

    opacity: 0.48;

    box-shadow: none;

}


/* =========================================================
   CHAPA LOADING / PROCESSING STATE
========================================================= */

/*
 * VERY IMPORTANT:
 *
 * We DO NOT set display:flex, display:block, etc.
 *
 * Chapa owns the visibility of this element.
 *
 * Its initial markup contains:
 *
 *     style="display: none;"
 *
 * We deliberately leave that behavior untouched.
 */

#dallol-academy-chapa-inline
#chapa-loading-container.chapa-loading {

    width: 100%;

    margin: 18px 0 0;

    padding: 20px 16px;

    box-sizing: border-box;

    background: #f5faff !important;

    border: 1px solid #d7e7f5 !important;

    border-radius: 14px;

    text-align: center;

}


/* Spinner */

#dallol-academy-chapa-inline
#chapa-loading-container
.chapa-spinner {

    width: 28px !important;
    height: 28px !important;

    min-width: 28px;
    min-height: 28px;

    margin: 0 0 7px;

    box-sizing: border-box;

    border: 3px solid #dce9f5;

    border-top-color: #1677d2;

    border-radius: 50%;

    animation:
        dallol-chapa-spin
        0.75s linear infinite;

}


@keyframes dallol-chapa-spin {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* Processing text */

#dallol-academy-chapa-inline
#chapa-loading-container
p {

    margin: 0 !important;

    padding: 0 !important;

    color: #53667c !important;

    font-family: inherit !important;

    font-size: 12px !important;

    line-height: 1.5 !important;

    text-align: center;

}


#dallol-academy-chapa-inline
#chapa-loading-container
p:first-of-type {

    color: #10233f !important;

    font-size: 14px !important;

    font-weight: 750 !important;

}


/* =========================================================
   REGISTRATION PAYMENT MESSAGE
========================================================= */

#da-registration-payment-message {

    width: 100%;

    margin: 18px 0 0;

    padding: 14px 15px;

    box-sizing: border-box;

    border-radius: 13px;

    font-family: inherit !important;

    font-size: 13px !important;

    line-height: 1.5 !important;

    font-weight: 650 !important;

}


/*
 * Hidden message must remain hidden.
 */

#da-registration-payment-message[hidden] {

    display: none !important;

}


/* Success */

#da-registration-payment-message.is-success {

    background: #f0fbf5 !important;

    border: 1px solid #c9ead9 !important;

    color: #23744d !important;

}


/* Error */

#da-registration-payment-message.is-error {

    background: #fff5f5 !important;

    border: 1px solid #f0cccc !important;

    color: #b53f3f !important;

}


/* Neutral */

#da-registration-payment-message:not(.is-success):not(.is-error) {

    background: #f5f8fb !important;

    border: 1px solid #dfe7ef !important;

    color: #53667c !important;

}


/* =========================================================
   BACK TO REGISTRATION
========================================================= */

.da-registration-payment
.da-payment-cancel {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 48px;

    margin: 11px 0 0;

    padding: 0 18px;

    box-sizing: border-box;

    background: #ffffff !important;

    border: 1px solid #d5dfe9 !important;

    border-radius: 12px !important;

    color: #40536a !important;

    font-family: inherit !important;

    font-size: 13px !important;

    font-weight: 750 !important;

    line-height: 1 !important;

    text-align: center;

    cursor: pointer;

    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;

}


.da-registration-payment
.da-payment-cancel:hover {

    background: #f5f9fd !important;

    border-color: #bcd4ec !important;

    color: #1677d2 !important;

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.da-registration-payment
button:focus-visible,

.da-registration-payment
input:focus-visible,

.da-registration-payment
.chapa-payment-method:focus-visible {

    outline: 3px solid rgba(22, 119, 210, 0.20);

    outline-offset: 2px;

}


/* =========================================================
   WORDPRESS THEME ISOLATION
========================================================= */

.da-registration-payment
input[type="tel"] {

    appearance: none;

    -webkit-appearance: none;

}


.da-registration-payment
button {

    text-transform: none !important;

}


.da-registration-payment
img {

    max-width: 100%;

}


/*
 * Prevent generic WordPress image rules from
 * distorting Chapa payment icons.
 */

.da-registration-payment
.chapa-payment-icon {

    vertical-align: middle;

}


/* =========================================================
   REMOVE UNNECESSARY EMPTY SPACE
========================================================= */

#dallol-academy-chapa-inline:empty {

    min-height: 0 !important;

    margin: 0 !important;

    padding: 0 !important;

}


/* =========================================================
   MOBILE PAYMENT SCREEN
========================================================= */

@media (max-width: 600px) {

    .da-registration-payment {

        width: 100%;

        padding: 28px 18px 24px;

        border-radius: 20px;

    }


    .da-registration-payment-header {

        margin-bottom: 23px;

    }


    .da-registration-payment-header h2 {

        font-size: 27px !important;

    }


    .da-registration-payment-header p {

        font-size: 13px !important;

        line-height: 1.6 !important;

    }


    .da-registration-payment-amount {

        margin-bottom: 20px;

        padding: 16px;

        border-radius: 14px;

    }


    .da-registration-payment-amount strong {

        font-size: 21px !important;

    }


    #dallol-academy-chapa-inline
    #chapa-payment-methods {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 9px;

    }


    #dallol-academy-chapa-inline
    #chapa-payment-methods
    .chapa-payment-method {

        min-height: 74px;

    }


    #dallol-academy-chapa-inline
    .chapa-phone-input-wrapper {

        min-height: 55px;

    }


    #dallol-academy-chapa-inline
    .chapa-phone-prefix {

        width: 88px;
        min-width: 88px;

        padding: 0 10px;

    }


    #dallol-academy-chapa-inline
    #chapa-phone-input-container
    svg#secure {

        margin-right: 12px !important;

    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 380px) {

    .da-registration-payment {

        padding: 23px 14px 21px;

        border-radius: 18px;

    }


    .da-registration-payment-header h2 {

        font-size: 25px !important;

    }


    .da-registration-payment-header p {

        font-size: 12.5px !important;

    }


    #dallol-academy-chapa-inline
    .chapa-phone-prefix {

        width: 82px;
        min-width: 82px;

    }


    #dallol-academy-chapa-inline
    .chapa-phone-prefix span {

        font-size: 13px !important;

    }


    #dallol-academy-chapa-inline
    .chapa-phone-input {

        padding-left: 10px !important;

        padding-right: 7px !important;

    }


    #dallol-academy-chapa-inline
    #chapa-phone-input-container
    svg#secure {

        display: none !important;

    }

}


/* =========================================================
   FINAL SAFETY RULE
========================================================= */

/*
 * Never let Academy CSS create a visible Chapa loading
 * panel simply because the element exists.
 *
 * Chapa's own inline style remains authoritative.
 */

#dallol-academy-chapa-inline
#chapa-loading-container.chapa-loading[style*="display: none"] {

    display: none !important;

}