/* ═══════════════════════════════════════════════════════════
   Learnovate Qatar — Course Sections  v1.0.0
   ═══════════════════════════════════════════════════════════ */

:root {
	--lnq-primary:   #d0202e;
	--lnq-primary-h: #b01a26;
	--lnq-dark:      #1a1a2e;
	--lnq-text:      #444;
	--lnq-border:    #e4e4e4;
	--lnq-bg-light:  #f8f9fa;
	--lnq-radius:    12px;
	--lnq-shadow:    0 4px 20px rgba(0,0,0,.07);
}

/* ── Section base ─────────────────────────────────────────── */
.lnq-section {
	padding: 56px 0;
	border-top: 1px solid var(--lnq-border);
}
.lnq-section:last-child {
	border-bottom: 1px solid var(--lnq-border);
}
.lnq-section-title {
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--lnq-dark);
	margin: 0 0 28px;
	position: relative;
	padding-bottom: 14px;
}
.lnq-section-title::after {
	content: '';
	position: absolute;
	left: 0; bottom: 0;
	width: 50px; height: 3px;
	background: var(--lnq-primary);
	border-radius: 2px;
}
.lnq-section-intro {
	color: var(--lnq-text);
	margin-bottom: 24px;
	font-size: .95rem;
}

/* ── Buttons ─────────────────────────────────────────────── */
.lnq-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 28px;
	border-radius: 50px;
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: 2px solid transparent;
	transition: background .2s, color .2s, border-color .2s, transform .15s;
	line-height: 1;
}
.lnq-btn:hover { transform: translateY(-1px); text-decoration: none; }
.lnq-btn-primary {
	background: var(--lnq-primary);
	color: #fff;
	border-color: var(--lnq-primary);
}
.lnq-btn-primary:hover {
	background: var(--lnq-primary-h);
	border-color: var(--lnq-primary-h);
	color: #fff;
}
.lnq-btn-outline {
	background: transparent;
	color: var(--lnq-primary);
	border-color: var(--lnq-primary);
}
.lnq-btn-outline:hover {
	background: var(--lnq-primary);
	color: #fff;
}
.lnq-btn-whatsapp {
	background: #25D366;
	color: #fff;
	border-color: #25D366;
}
.lnq-btn-whatsapp:hover {
	background: #1ebe5a;
	border-color: #1ebe5a;
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   SIDEBAR — Quick Course Info Box
   ═══════════════════════════════════════════════════════════ */
.lnq-quick-info {
	background: var(--lnq-bg-light);
	border: 1px solid var(--lnq-border);
	border-radius: var(--lnq-radius);
	padding: 20px;
	margin-top: 20px;
}
.lnq-quick-info__title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--lnq-dark);
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--lnq-primary);
}
.lnq-quick-info__list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.lnq-quick-info__list li {
	display: flex;
	flex-direction: column;
	padding: 9px 0;
	border-bottom: 1px solid var(--lnq-border);
	font-size: .85rem;
	line-height: 1.45;
}
.lnq-quick-info__list li:last-child {
	border-bottom: none;
}
.lnq-qi-label {
	font-weight: 600;
	color: var(--lnq-dark);
	margin-bottom: 2px;
}
.lnq-qi-value {
	color: var(--lnq-text);
}

/* ═══════════════════════════════════════════════════════════
   KEY HIGHLIGHTS
   ═══════════════════════════════════════════════════════════ */
.lnq-key-highlights {
	background: var(--lnq-bg-light);
}
.lnq-highlights-wrap {
	overflow-x: auto;
}
.lnq-highlights-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--lnq-radius);
	overflow: hidden;
	box-shadow: var(--lnq-shadow);
}
.lnq-highlights-table th,
.lnq-highlights-table td {
	padding: 14px 20px;
	border-bottom: 1px solid var(--lnq-border);
	font-size: .9rem;
	vertical-align: top;
	text-align: left;
}
.lnq-highlights-table tr:last-child th,
.lnq-highlights-table tr:last-child td {
	border-bottom: none;
}
.lnq-highlights-table th {
	width: 35%;
	background: transparent !important;
	color: var(--lnq-primary) !important;
	font-weight: 600;
	white-space: nowrap;
	border-bottom: 1px solid var(--lnq-border) !important;
}
.lnq-highlights-table td {
	color: var(--lnq-text) !important;
	background: transparent !important;
	border-bottom: 1px solid var(--lnq-border) !important;
}
@media (max-width: 600px) {
	.lnq-highlights-table th {
		width: 45%;
		font-size: .82rem;
		padding: 11px 12px;
	}
	.lnq-highlights-table td {
		font-size: .82rem;
		padding: 11px 12px;
	}
}

/* ═══════════════════════════════════════════════════════════
   CAREER OPPORTUNITIES
   ═══════════════════════════════════════════════════════════ */
.lnq-career-section {
	background: #fff;
}
.lnq-career-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}
.lnq-career-grid li {
	background: var(--lnq-bg-light);
	border: 1px solid var(--lnq-border);
	border-left: 4px solid var(--lnq-primary);
	border-radius: 8px;
	padding: 14px 16px;
	font-size: .9rem;
	font-weight: 500;
	color: var(--lnq-dark);
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.lnq-career-icon {
	color: var(--lnq-primary);
	font-size: 1rem;
	flex-shrink: 0;
	margin-top: 1px;
	transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.lnq-career-grid li:hover .lnq-career-icon {
	transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════
   CERTIFICATION
   ═══════════════════════════════════════════════════════════ */
.lnq-cert-section {
	background: var(--lnq-bg-light);
}
.lnq-cert-body {
	background: #fff;
	border: 1px solid var(--lnq-border);
	border-radius: var(--lnq-radius);
	padding: 28px 32px;
	box-shadow: var(--lnq-shadow);
	max-width: 760px;
}
.lnq-cert-body p {
	margin: 0;
	color: var(--lnq-text);
	font-size: .95rem;
	line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   STUDENT REVIEWS
   ═══════════════════════════════════════════════════════════ */
.lnq-reviews-section {
	background: #fff;
}
.lnq-reviews-content {
	margin-bottom: 28px;
}
.lnq-reviews-cta {
	margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════
   REGISTRATION FORM
   ═══════════════════════════════════════════════════════════ */
.lnq-form-section {
	background: var(--lnq-bg-light);
}
.lnq-form-wrapper {
	background: #fff;
	border-radius: var(--lnq-radius);
	box-shadow: var(--lnq-shadow);
	padding: 40px 44px;
	max-width: 800px;
}
@media (max-width: 600px) {
	.lnq-form-wrapper { padding: 28px 20px; }
}
.lnq-form-header {
	margin-bottom: 28px;
}
.lnq-form-header .lnq-section-title {
	margin-bottom: 10px;
}
.lnq-form-header p {
	color: var(--lnq-text);
	font-size: .9rem;
	margin: 0;
}
.lnq-form-notice {
	padding: 14px 18px;
	border-radius: 8px;
	font-size: .9rem;
	margin-bottom: 20px;
}
.lnq-form-success {
	background: #eaf7ee;
	border: 1px solid #5cb85c;
	color: #2d6a30;
}
.lnq-form-error {
	background: #fdf3f3;
	border: 1px solid var(--lnq-primary);
	color: var(--lnq-primary);
}
.lnq-enquiry-form .lnq-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 20px;
}
@media (max-width: 580px) {
	.lnq-enquiry-form .lnq-form-row { grid-template-columns: 1fr; }
}
.lnq-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.lnq-form-group label {
	font-size: .85rem;
	font-weight: 600;
	color: var(--lnq-dark);
}
.lnq-req { color: var(--lnq-primary); }
.lnq-form-group input,
.lnq-form-group select,
.lnq-form-group textarea {
	padding: 11px 14px;
	border: 1px solid var(--lnq-border);
	border-radius: 8px;
	font-size: .9rem;
	color: var(--lnq-dark);
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
	font-family: inherit;
}
.lnq-form-group input:focus,
.lnq-form-group select:focus,
.lnq-form-group textarea:focus {
	outline: none;
	border-color: var(--lnq-primary);
	box-shadow: 0 0 0 3px rgba(208,32,46,.1);
}
.lnq-enquiry-form .lnq-form-group {
	margin-bottom: 0;
}
.lnq-enquiry-form > .lnq-form-group {
	margin-bottom: 20px;
}
.lnq-enquiry-form .lnq-btn {
	margin-top: 6px;
}
/* Wrapper for Contact Form 7 / WPForms shortcode output */
.lnq-form-inner {
	margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════
   WHY CHOOSE LEARNOVATE
   ═══════════════════════════════════════════════════════════ */
.lnq-why-choose {
	background: #fff;
}
.lnq-why-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}
.lnq-why-list li {
	padding: 16px 18px 16px 48px;
	background: var(--lnq-bg-light);
	border-radius: 8px;
	border: 1px solid var(--lnq-border);
	font-size: .9rem;
	color: var(--lnq-dark);
	position: relative;
	line-height: 1.5;
}
.lnq-why-list li::before {
	content: '✓';
	position: absolute;
	left: 16px;
	top: 16px;
	color: #fff;
	background: var(--lnq-primary);
	width: 22px; height: 22px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .75rem;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════════════ */
.lnq-cta-section {
	background: var(--lnq-primary);
	border-top: none;
}
.lnq-cta-inner {
	text-align: center;
	color: #fff;
	padding: 8px 0;
}
.lnq-cta-inner h2 {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 14px;
	color: #fff;
}
.lnq-cta-inner > p {
	font-size: 1rem;
	opacity: .9;
	margin: 0 0 16px;
}
.lnq-cta-meta {
	display: flex;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	font-size: .9rem;
	opacity: .9;
	margin-bottom: 28px;
}
.lnq-cta-buttons {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 14px;
}
.lnq-cta-section .lnq-btn-primary {
	background: #fff;
	color: var(--lnq-primary);
	border-color: #fff;
}
.lnq-cta-section .lnq-btn-primary:hover {
	background: #f0f0f0;
	border-color: #f0f0f0;
}
.lnq-cta-section .lnq-btn-outline {
	border-color: rgba(255,255,255,.8);
	color: #fff;
}
.lnq-cta-section .lnq-btn-outline:hover {
	background: rgba(255,255,255,.15);
}

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
   ═══════════════════════════════════════════════════════════ */
.lnq-whatsapp-float {
	position: fixed;
	bottom: 86px; /* sits above the EC Chatbot bubble (56px tall + 24px gap + 16px margin) */
	right: 92px;
	z-index: 9999;
	background: #25D366;
	border-radius: 50px;
	padding: 14px 18px;
	box-shadow: 0 4px 20px rgba(37,211,102,.45);
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: box-shadow .2s, transform .2s;
	color: #fff;
}
.lnq-whatsapp-float:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 28px rgba(37,211,102,.55);
	text-decoration: none;
	color: #fff;
}
.lnq-wa-tooltip {
	font-size: .82rem;
	font-weight: 600;
	white-space: nowrap;
}
@media (max-width: 480px) {
	.lnq-wa-tooltip { display: none; }
	.lnq-whatsapp-float {
		padding: 14px;
		border-radius: 50%;
		bottom: 82px; /* above chatbot on mobile (52px + 14px + 16px) */
		right: 14px;
	}
}
