/*
Theme Name: Blocksy Child
Template: blocksy
Version: 1.0.0
*/

/* Import Webfonts from CDNs so they load automatically in the browser */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.cdnfonts.com/css/breathing');



:root {
	--yellow: #FFD51E;
	--black: #101010;
	--white: #F5F5F5;
	--gray: #1A1A1A;
	--gray2: #222222;
	--gray3: #2E2E2E;
	--footer-black: #080808;

	--course-blue: #101010; /* Brand Jet Black */
	--course-gold: #FFD51E; /* Brand Golden Yellow */
	--course-red: var(--course-blue); 
	--course-red-dark: #000000;
	--course-text: #101010;
	--course-border: #e0e0e0;
	--course-bg: #F5F5F5; /* Brand Soft White / Light Gray */
	--course-card-bg: #ffffff;

	/* Typography tokens (including fallbacks) */
	--font-heading: 'Poppins', sans-serif;
	--font-highlight: 'Breathing', 'Breathing Personal Use', cursive;
	--font-subheading: 'Poppins', sans-serif;
	--font-body: 'Poppins', sans-serif;
}


/* Brand highlight utility class */
.brand-highlight {
	font-family: var(--font-highlight) !important;
	color: var(--course-gold) !important;
	font-weight: normal !important;
	text-transform: none !important;
}

/* Sitewide Global Brand Typography & Color Overrides */
body, html, #page,
h1, h2, h3, h4, h5, h6, p, a, span, li, td, div, button, input, select, textarea,
.elementor-heading-title, .elementor-heading-title *,
.elementor-text-editor, .elementor-text-editor *,
.elementor-subheading, .elementor-subheading *,
.entry-title {
	font-family: 'Poppins', sans-serif !important;
}

body, html, #page {
	background-color: var(--course-bg) !important;
	color: var(--course-text) !important;
}

h1, h2, h3, h4, h5, h6,
.elementor-heading-title,
.entry-title {
	color: #101010 !important;
}

/* Ensure hero section headings and white text blocks remain white across all pages */
.hero h1, .hero h2, .hero .elementor-heading-title,
.hero-section h1, .hero-section h2, .hero-section .elementor-heading-title,
.entry-hero h1, .entry-hero h2,
.text-white, .text-white h1, .text-white h2, .text-white .elementor-heading-title,
[data-elementor-type="wp-page"] .elementor-section:first-of-type h1,
[data-elementor-type="wp-page"] .elementor-section:first-of-type h2,
[data-elementor-type="wp-page"] .elementor-section:first-of-type .elementor-heading-title,
.elementor-section:first-of-type h1, .elementor-section:first-of-type h2, .elementor-section:first-of-type .elementor-heading-title,
.e-con:first-of-type h1, .e-con:first-of-type h2, .e-con:first-of-type .elementor-heading-title,
.elementor > .elementor-element:first-child h1, .elementor > .elementor-element:first-child h2, .elementor > .elementor-element:first-child .elementor-heading-title {
	color: #ffffff !important;
}

h3, h4, h5, h6, .subheading, .elementor-subheading {
	font-family: var(--font-subheading) !important;
	font-weight: 700 !important;
}

h3 {
	font-size: 20px !important;
	font-weight: 800 !important;
	letter-spacing: -0.5px !important;
	margin-bottom: 12px !important;
}

h4 {
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.3 !important;
	margin-bottom: 10px !important;
}

.elementor-icon-box-description {
	font-size: 13px !important;
	color: rgba(245, 245, 245, 0.5) !important;
	line-height: 1.65 !important;
}

/* Fix for related products - reset custom structure */
.single-product .custom-course-card {
    display: block !important;
    background: none !important;
    border: none !important;
}

.single-product .custom-course-actions,
.single-product .custom-course-meta,
.single-product .custom-course-desc {
    display: none !important; /* Hide details in small related slots */
}

.single-product .custom-course-title {
    font-size: 16px !important;
    margin-top: 10px !important;
}

/* Hide default WooCommerce title on category page */
.tax-product_cat .page-title,
.tax-product_cat .woocommerce-products-header__title.page-title {
	display: none !important;
}

/* Custom Header Banner */
.course-category-header {
	background: #fff;
	padding: 10px 0 5px; /* Minimal padding */
	border-bottom: 1px solid var(--course-border);
	margin-bottom: 10px;
}

.course-category-header h1 {
	color: var(--course-blue);
	font-size: 42px;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom: 5px;
}

.course-category-header .category-desc {
	font-size: 18px;
	color: #666;
	max-width: 800px;
	line-height: 1.6;
}

/* Course Listing Layout - ONLY on archive/category pages */
.archive .woocommerce ul.products.custom-products {
	display: flex !important;
	flex-direction: column !important;
	gap: 15px !important;
	margin: 0 !important;
	padding: 0 !important;
}

.archive .woocommerce ul.products li.product.custom-course-item {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none;
}

.archive .custom-course-card {
	display: grid;
	grid-template-columns: 180px 1fr 220px; /* Even narrower columns */
	gap: 15px; /* Tighter gap */
	background: var(--course-card-bg);
	padding: 10px; /* Minimal padding */
	border: 1px solid var(--course-border);
	border-radius: 8px;
	align-items: center;
	transition: all 0.3s ease;
}

.custom-course-card:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Softer shadow */
	background: #fff;
	border-color: var(--course-red);
}

.custom-course-image {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	height: 180px; /* Further reduced height */
}

.custom-course-image img {
	width: 100%;
	height: 100%; /* Fill container */
	display: block;
	object-fit: cover; /* Crop to fit */
	transition: transform 0.5s ease;
}

.custom-course-card:hover .custom-course-image img {
	transform: scale(1.05);
}

.custom-course-title {
	font-size: 22px; /* Slightly smaller */
	font-weight: 700;
	margin: 0 0 5px; /* Minimal margin */
	line-height: 1.2;
}

.custom-course-title a {
	color: var(--course-blue); /* Navy Blue titles */
	text-decoration: none;
}

/* Fix for yellow titles from parent theme */
.custom-course-card .custom-course-title,
.custom-course-card h2,
.custom-course-card h2 a {
    color: var(--course-blue) !important;
}

.custom-course-desc {
	font-size: 16px;
	line-height: 1.5;
	color: #444;
	margin-bottom: 20px;
}

.custom-course-meta {
	display: flex;
	gap: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #777;
}

.custom-course-meta span strong {
	color: var(--course-gold); /* Gold highlights */
}

/* Actions & Pricing */
.custom-course-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	border-left: 1px solid var(--course-border);
	padding-left: 20px; /* Reduced padding */
}

.custom-outline-btn,
.custom-course-actions .button,
.custom-course-actions a.button {
	width: 100%;
	max-width: 210px;
	text-align: center;
	background: var(--course-red) !important;
	color: #fff !important;
	border-radius: 50px;
	padding: 12px 25px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 12px;
	text-decoration: none;
	border: 2px solid var(--course-red) !important;
	transition: all 0.2s ease;
	font-size: 14px;
	display: inline-block;
}

.custom-outline-btn {
	background: transparent !important;
	color: var(--course-red) !important;
}

.custom-outline-btn:hover {
	background: var(--course-red) !important;
	color: #fff !important;
}

.custom-course-actions .button:hover,
.custom-course-actions a.button:hover {
	background: var(--course-red-dark) !important;
	border-color: var(--course-red-dark) !important;
	transform: translateY(-2px);
}

.custom-course-price {
	font-size: 28px;
	font-weight: 800;
	color: var(--course-blue); /* Navy Blue price */
	margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
	.archive .custom-course-card {
		grid-template-columns: 200px 1fr;
	}
	.archive .custom-course-actions {
		grid-column: 1 / -1;
		flex-direction: row;
		border-left: none;
		border-top: 1px solid var(--course-border);
		padding: 20px 0 0;
		justify-content: space-between;
	}
	.archive .custom-outline-btn,
	.archive .custom-course-actions .button {
		margin-bottom: 0;
	}
}

/* Page spacing for Single Product ONLY */
.single-product .site-main {
    margin-top: 50px !important;
}

.single-product #content {
    padding-top: 20px !important;
}

.single-product .product_title,
.single-product h1.product_title {
    color: #101010 !important;
}

.single-product .ct-breadcrumbs,
.single-product .ct-breadcrumbs a,
.single-product .ct-breadcrumbs span {
    color: #101010 !important;
}

@media (max-width: 600px) {
	.custom-course-card {
		grid-template-columns: 1fr;
	}
	.custom-course-actions {
		flex-direction: column;
		gap: 10px;
	}
	.custom-course-actions .button, 
	.custom-outline-btn {
		max-width: 100%;
	}
}

/* Ultimate High-Specificity Elementor Font Overrides (Redundant: Poppins forced globally above) */


/* Hide header/hero section on the blog page specifically */
.blog .entry-hero,
.blog .hero-section {
	display: none !important;
}

/* Fix overlapping content on blog page under sticky header */
.blog #content,
.blog .site-main {
	margin-top: 60px !important;
}

/* General custom typography styles for any Hero headline (works without Elementor) */
.hero h1,
.hero-section h1,
.entry-hero h1,
.elementor-element-6694254 .elementor-heading-title {
    font-size: clamp(48px, 5.5vw, 78px) !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
}
/* Glowing gold-to-orange gradient for highlighted text */
.hero h1 em,
.hero-section h1 em,
.entry-hero h1 em,
.highlight-gradient,
.elementor-element-6694254 .elementor-heading-title em,
.elementor-element-6694254 .elementor-heading-title .highlight-gradient {
    font-style: normal !important;
    background: linear-gradient(135deg, #FFD51E 0%, #FF9900 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block !important;
}


/* ==========================================================================
   FINAL SPECIFICATION STYLES (MOCKUP INTEGRATION)
   ========================================================================== */

/* ANNOUNCEMENT BAR */
.announce-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: #1A1A00;
    border-bottom: 1px solid rgba(255, 213, 30, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 9px 24px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 245, 245, 0.85);
    letter-spacing: 0.1px;
}
.announce-bar .dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.7;
    flex-shrink: 0;
}
.announce-bar .call-btn {
    background: var(--yellow);
    color: var(--black);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: background 0.2s;
}
.announce-bar .call-btn:hover {
    background: #e6bf00;
}

/* NAVIGATION */
nav.custom-nav {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(16, 16, 16, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 213, 30, 0.2);
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    color: var(--black);
    letter-spacing: -0.5px;
}
.nav-logo-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}
.nav-logo-text span {
    color: var(--yellow);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 245, 245, 0.8);
    transition: color 0.2s;
    position: relative;
    padding-bottom: 2px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
}
.nav-links a:hover {
    color: var(--yellow);
}
.nav-links a:hover::after {
    transform: scaleX(1);
}
.nav-cta {
    display: flex;
    gap: 12px;
}
.btn-outline {
    padding: 10px 20px;
    border: 1.5px solid var(--yellow);
    color: var(--yellow);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
}
.btn-fill {
    padding: 10px 20px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-fill:hover {
    background: #e6bf00;
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 109px 48px 0;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(16, 16, 16, 0.4), rgba(16, 16, 16, 0.85)), url('hero-background.png') no-repeat center center/cover;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 213, 30, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 213, 30, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 213, 30, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 660px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 213, 30, 0.1);
    border: 1px solid rgba(255, 213, 30, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 28px;
}
.hero-badge span {
    font-size: 12px;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: clamp(48px, 5.5vw, 78px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    color: var(--white);
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, #FFD51E 0%, #FF9900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.hero p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(245, 245, 245, 0.65);
    margin-bottom: 36px;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}
.btn-hero {
    padding: 16px 32px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-hero:hover {
    background: #e6bf00;
    transform: translateY(-2px);
}
.btn-ghost {
    padding: 16px 32px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost svg {
    transition: transform 0.2s;
}
.btn-ghost:hover svg {
    transform: translateX(4px);
}
.hero-scroll-line {
    position: absolute;
    bottom: 40px;
    left: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.hero-scroll-line span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.3);
}
.scroll-bar {
    width: 40px;
    height: 1px;
    background: rgba(255, 213, 30, 0.4);
}

/* TICKER */
.ticker {
    background: var(--yellow);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-inner {
    display: inline-flex;
    animation: ticker 30s linear infinite;
}
.ticker-item {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ticker-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(16, 16, 16, 0.4);
}
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* SECTION BASICS */
section.custom-sec {
    padding: 100px 48px;
}
.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.section-label::before {
    display: none;
}
.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 16px;
    color: rgba(245, 245, 245, 0.55);
    line-height: 1.7;
    max-width: 560px;
}

/* PROGRAMS SECTION */
.programs {
    background: var(--black);
}
.programs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.program-card {
    position: relative;
    background: var(--gray2);
    padding: 48px 40px;
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}
.program-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}
.program-card:hover::before {
    transform: scaleX(1);
}
.program-card:hover {
    background: var(--gray3);
}
.program-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 213, 30, 0.4);
    margin-bottom: 24px;
}
.program-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 213, 30, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s;
}
.program-card:hover .program-icon {
    background: rgba(255, 213, 30, 0.2);
}
.program-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.5;
}
.program-card h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.program-card p {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.7;
    margin-bottom: 28px;
}
.program-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
}
.program-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 2;
    transition: transform 0.2s;
}
.program-card:hover .program-link svg {
    transform: translateX(4px);
}

/* WHY TRUST SECTION */
.why {
    background: #0A0A0A;
}
.why-header {
    text-align: center;
    margin-bottom: 64px;
}
.why-header .section-sub {
    margin: 0 auto;
}
.why-icon-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: start;
}
.why-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px;
}
.why-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(255, 213, 30, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 213, 30, 0.15);
    transition: all 0.3s;
    flex-shrink: 0;
}
.why-icon-card:hover .why-icon-wrap {
    background: rgba(255, 213, 30, 0.2);
    border-color: var(--yellow);
    transform: translateY(-4px);
}
.why-icon-wrap svg {
    width: 32px;
    height: 32px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 1.5;
}
.why-icon-card h4 {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--white);
}
.why-icon-card p {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.65;
}

/* PROCESS SECTION */
.process {
    background: var(--black);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(100%/6 + 32px);
    right: calc(100%/6 + 32px);
    height: 1px;
    background: linear-gradient(90deg, var(--yellow), rgba(255, 213, 30, 0.2));
    z-index: 0;
}
.process-step {
    padding: 0 24px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    background: var(--black);
    font-size: 22px;
    font-weight: 900;
    color: var(--yellow);
    transition: background 0.2s, color 0.2s;
}
.process-step:hover .step-circle {
    background: var(--yellow);
    color: var(--black);
}
.process-step h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}
.process-step p {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

/* STATS BAR */
.stats-bar {
    background: var(--yellow);
    padding: 64px 48px;
}
.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.stat-item {
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid rgba(16, 16, 16, 0.15);
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -2px;
    line-height: 1;
}
.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(16, 16, 16, 0.6);
    margin-top: 6px;
}

/* ABOUT SECTION */
.about {
    background: #0A0A0A;
}
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-img-card {
    background: var(--gray2);
    border-radius: 12px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.about-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(16, 16, 16, 0.9));
    padding: 32px 28px;
}
.about-img-stat {
    font-size: 38px;
    font-weight: 900;
    color: var(--yellow);
    letter-spacing: -1px;
}
.about-img-label {
    font-size: 13px;
    color: rgba(245, 245, 245, 0.6);
    font-weight: 500;
}
.about-badge-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--yellow);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
}
.about-badge-float .num {
    font-size: 28px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
}
.about-badge-float .lab {
    font-size: 11px;
    font-weight: 700;
    color: rgba(16, 16, 16, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.about-content .section-sub {
    margin-bottom: 32px;
}
.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(245, 245, 245, 0.7);
}
.about-check {
    width: 20px;
    height: 20px;
    background: rgba(255, 213, 30, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-check svg {
    width: 10px;
    height: 10px;
    stroke: var(--yellow);
    fill: none;
    stroke-width: 3;
}

/* TESTIMONIALS SECTION */
.testimonials {
    background: var(--black);
    overflow: hidden;
}
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}
.testimonials-header .section-sub {
    margin: 0 auto;
}
.testi-slider-wrap {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}
.testi-slides {
    position: relative;
    min-height: 280px;
}
.testi-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.55s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}
.testi-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}
.testi-card {
    background: var(--gray2);
    padding: 52px 56px;
    position: relative;
    border-left: 4px solid var(--yellow);
    border-radius: 2px;
}
.testi-quote-mark {
    font-size: 80px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 0.6;
    margin-bottom: 24px;
    opacity: 0.3;
    font-family: Georgia, serif;
}
.testi-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(245, 245, 245, 0.85);
    margin-bottom: 36px;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 16px;
}
.testi-avatar-box {
    position: relative;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 213, 30, 0.12);
    border: 2px solid rgba(255, 213, 30, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 900;
    color: var(--yellow);
    flex-shrink: 0;
    overflow: hidden;
}
.testi-avatar-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 2;
}
.testi-avatar-box img + span {
    display: none;
}
.testi-avatar-box span {
    font-size: 16px;
    font-weight: 800;
    color: var(--yellow);
    text-transform: lowercase;
    line-height: 1;
}
.testi-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}
.testi-role {
    font-size: 13px;
    color: var(--yellow);
    font-weight: 600;
    margin-top: 3px;
}
.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.testi-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 213, 30, 0.3);
    background: transparent;
    color: var(--yellow);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-family: 'Poppins', sans-serif;
}
.testi-btn:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}
.testi-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 213, 30, 0.25);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
}
.testi-dot.active {
    background: var(--yellow);
    width: 24px;
    border-radius: 4px;
}
.testi-counter {
    font-size: 13px;
    font-weight: 600;
    color: rgba(245, 245, 245, 0.35);
    margin-left: 8px;
}

/* GRADUATES SECTION */
.graduates {
    background: #0A0A0A;
    padding: 80px 48px;
}
.grad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
.grad-header h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
}
.grad-header h2 em {
    font-style: normal;
    color: var(--yellow);
}
.logos-track {
    overflow: hidden;
}
.logos-inner {
    display: flex;
    gap: 48px;
    animation: scroll 20s linear infinite;
    align-items: center;
}
.logo-item {
    background: var(--gray2);
    border-radius: 8px;
    padding: 20px 36px;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 800;
    color: rgba(245, 245, 245, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    flex-shrink: 0;
}
.logo-item:hover {
    border-color: rgba(255, 213, 30, 0.3);
    color: var(--white);
}
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CTA SECTION */
.cta-section {
    background: var(--yellow);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}
.cta-section h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -2px;
    margin-bottom: 16px;
    position: relative;
}
.cta-section p {
    font-size: 17px;
    color: rgba(16, 16, 16, 0.6);
    margin-bottom: 40px;
    position: relative;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
}
.btn-dark {
    padding: 18px 40px;
    background: var(--black);
    color: var(--yellow);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}
.btn-light {
    padding: 18px 40px;
    background: transparent;
    color: var(--black);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: 2px solid rgba(16, 16, 16, 0.2);
    cursor: pointer;
    transition: all 0.2s;
}
.btn-light:hover {
    background: rgba(16, 16, 16, 0.1);
}

/* FOOTER */
footer.custom-footer {
    background: #080808;
    padding: 60px 48px 40px;
    border-top: 1px solid rgba(255, 213, 30, 0.1);
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.4);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.45);
    transition: color 0.2s;
}
.footer-col ul li a:hover {
    color: var(--white);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.25);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    color: var(--black);
}
.footer-logo-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}
.footer-logo-text span {
    color: var(--yellow);
}

/* ── NEW COURSES REDESIGN STYLES ── */
:root {
  --yellow: #FFD51E;
  --black: #101010;
  --white: #F5F5F5;
  --gray: #1a1a1a;
  --gray2: #222;
  --gray3: #2e2e2e;
  --yellow-dim: rgba(255,213,30,0.1);
  --yellow-border: rgba(255,213,30,0.2);
}

/* PAGE HERO */
.page-hero{padding:140px 48px 80px;position:relative;overflow:hidden;background:var(--black);text-align:left;}
.page-hero-bg{position:absolute;inset:0;background-image:linear-gradient(rgba(255,213,30,0.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,213,30,0.04) 1px,transparent 1px);background-size:60px 60px}
.page-hero-glow{position:absolute;top:-60px;right:-80px;width:500px;height:500px;background:radial-gradient(circle,rgba(255,213,30,0.1) 0%,transparent 65%);pointer-events:none}
.page-hero-inner{position:relative;z-index:2;display:flex;align-items:flex-end;justify-content:space-between;gap:40px;flex-wrap:wrap}
.grade-badge{display:none !important}
.grade-badge span{font-size:11px;font-weight:700;color:var(--yellow);letter-spacing:2px;text-transform:uppercase}
.grade-badge-dot{width:6px;height:6px;border-radius:50%;background:var(--yellow);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:0.4}}
.page-hero h1{font-size:clamp(52px,7vw,88px);font-weight:900;letter-spacing:-3px;line-height:0.95;margin-bottom:16px;color:var(--white)}
.page-hero h1 span{color:var(--yellow)}
.page-hero-sub{font-size:16px;color:rgba(245,245,245,0.6);max-width:640px;line-height:1.7;margin-bottom:20px;}

/* HERO FEATURE CHIPS / PILLS */
.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 22px;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 213, 30, 0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #F5F5F5;
  transition: all 0.2s ease;
  line-height: 1.3;
}
.hero-chip:hover {
  background: rgba(255, 213, 30, 0.08);
  border-color: rgba(255, 213, 30, 0.5);
  transform: translateY(-1px);
}
.hero-chip .chip-check {
  color: var(--yellow, #ffd51e);
  font-weight: 800;
  margin-right: 8px;
  font-size: 14px;
  line-height: 1;
}

.hero-right{display:flex;gap:32px;align-items:center}
.hero-stat{text-align:center}
.hero-stat-num{font-size:40px;font-weight:900;color:var(--yellow);letter-spacing:-2px;line-height:1}
.hero-stat-label{font-size:11px;font-weight:600;color:rgba(245,245,245,0.4);letter-spacing:1px;text-transform:uppercase;margin-top:4px}
.hero-stat-div{width:1px;height:48px;background:rgba(255,213,30,0.2)}

/* FILTER BAR */
.filter-bar{background:#0d0d0d;padding:20px 48px;display:flex;align-items:center;justify-content:space-between;gap:16px;border-bottom:1px solid rgba(255,255,255,0.05)}
.filter-left{display:flex;align-items:center;gap:12px}
.filter-label{font-size:11px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(245,245,245,0.3)}
.filter-chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{padding:6px 14px;border-radius:100px;font-size:12px;font-weight:600;cursor:pointer;transition:all 0.2s;border:1px solid rgba(255,255,255,0.1);color:rgba(245,245,245,0.5);background:transparent}
.chip:hover{border-color:rgba(255,213,30,0.4);color:rgba(245,245,245,0.8)}
.chip.active{background:var(--yellow);color:var(--black);border-color:var(--yellow)}
.filter-right{font-size:12px;color:rgba(245,245,245,0.3);font-weight:600}
.filter-right span{color:var(--yellow)}

/* COURSES SECTION */
.courses-section{padding:60px 48px 100px;background:var(--black)}

/* GRID VIEW — cards */
.courses-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;text-align:left;}
@media (max-width: 1024px) {
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .courses-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 24px 60px; }
  .filter-bar { padding: 20px 24px; }
  .courses-section { padding: 40px 24px 60px; }
}

.course-card{position:relative;background:var(--gray2) !important;overflow:hidden;display:flex;flex-direction:column;border-radius:8px;border:1px solid rgba(255,255,255,0.05) !important;transform:none !important;transition:none !important;box-shadow:none !important}
.course-card::after{display:none !important}
.course-card:hover{background:var(--gray2) !important;border-color:rgba(255,255,255,0.05) !important;box-shadow:none !important;transform:none !important}

/* card image area */
.card-img{position:relative;height:200px;overflow:hidden;background:#1e1e1e}
.card-img-gradient{position:absolute;inset:0;background:linear-gradient(160deg,rgba(255,213,30,0.08) 0%,transparent 60%)}
.card-img-num{position:absolute;top:16px;left:16px;font-size:11px;font-weight:700;letter-spacing:2px;color:rgba(255,213,30,0.5);text-transform:uppercase}
.card-subject-icon{position:absolute;inset:0;display:flex;align-items:center;justify-content:center}
.subject-icon-wrap{width:88px;height:88px;background:rgba(255,213,30,0.08);border-radius:50%;display:flex;align-items:center;justify-content:center;border:2px solid rgba(255,213,30,0.15);transition:none !important}
.course-card:hover .subject-icon-wrap{background:rgba(255,213,30,0.08) !important;border-color:rgba(255,213,30,0.15) !important;transform:none !important}
.subject-icon-wrap svg{width:40px;height:40px;stroke:var(--yellow);fill:none;stroke-width:1.5}
.card-tag{position:absolute;bottom:16px;right:16px;background:rgba(16,16,16,0.85);border:1px solid rgba(255,213,30,0.25);border-radius:4px;padding:4px 10px;font-size:10px;font-weight:700;color:var(--yellow);letter-spacing:1px;text-transform:uppercase;backdrop-filter:blur(4px)}

/* card body */
.card-body{padding:28px 28px 24px;flex:1;display:flex;flex-direction:column}
.card-code{font-size:10px;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:rgba(255,213,30,0.5);margin-bottom:10px}
.card-title{font-size:18px;font-weight:800;letter-spacing:-0.5px;line-height:1.25;margin-bottom:12px;color:var(--white);transition:none !important}
.course-card:hover .card-title{color:var(--white) !important}
.card-desc{font-size:13px;color:rgba(245,245,245,0.45);line-height:1.7;flex:1;margin-bottom:20px}
.card-footer{display:flex;align-items:center;justify-content:space-between;padding-top:18px;border-top:1px solid rgba(255,255,255,0.06);margin-top:auto}
.card-price{font-size:22px;font-weight:900;color:var(--white);letter-spacing:-0.5px}
.card-price sup{font-size:13px;font-weight:700;vertical-align:top;margin-top:5px;display:inline-block;color:rgba(245,245,245,0.5)}
.card-actions{display:flex;gap:8px}
.card-btn-outline{padding:9px 16px;border:1.5px solid rgba(255,213,30,0.4);color:var(--yellow);border-radius:4px;font-size:11px;font-weight:700;font-family:'Poppins',sans-serif;background:transparent;cursor:pointer;transition:all 0.2s;letter-spacing:0.5px}
.card-btn-outline:hover{border-color:var(--yellow);background:rgba(255,213,30,0.08)}
.card-btn-fill{padding:9px 16px;background:var(--yellow);color:var(--black);border-radius:4px;font-size:11px;font-weight:800;font-family:'Poppins',sans-serif;border:none;cursor:pointer;transition:all 0.2s;letter-spacing:0.5px;display:inline-block;text-align:center}
.card-btn-fill:hover{background:#e6bf00}

/* card hover bar */
.card-hover-bar{display:none !important}
.course-card:hover .card-hover-bar{display:none !important}

/* CTA STRIP */
.cta-strip{background:var(--yellow);padding:60px 48px;display:flex;align-items:center;justify-content:space-between;gap:32px;text-align:left;}
.cta-strip-text h2{font-size:clamp(26px,3vw,40px);font-weight:900;color:var(--black);letter-spacing:-1px;margin-bottom:6px}
.cta-strip-text p{font-size:15px;color:rgba(16,16,16,0.55)}
.cta-strip-btns{display:flex;gap:12px;flex-shrink:0}
.strip-btn-dark{display:inline-block;text-align:center;text-decoration:none !important;padding:16px 32px;background:var(--black);color:var(--yellow) !important;border-radius:6px;font-size:14px;font-weight:700;border:none;cursor:pointer;font-family:'Poppins',sans-serif;transition:all 0.2s;white-space:nowrap}
.strip-btn-dark:hover{background:#1a1a1a;transform:translateY(-2px);color:var(--yellow) !important;}
.strip-btn-outline{display:inline-block;text-align:center;text-decoration:none !important;padding:16px 32px;background:transparent;color:var(--black) !important;border:2px solid rgba(16,16,16,0.25);border-radius:6px;font-size:14px;font-weight:700;cursor:pointer;font-family:'Poppins',sans-serif;transition:all 0.2s;white-space:nowrap}
.strip-btn-outline:hover{background:rgba(16,16,16,0.1);color:var(--black) !important;}

@media (max-width: 768px) {
  .cta-strip { flex-direction: column; text-align: center; padding: 40px 24px; }
  .cta-strip-btns { width: 100%; justify-content: center; }
}

/* ── COURSE DETAIL PAGE ─────────────────────────────────────── */
.course-page{position:fixed;inset:0;z-index:9999;background:var(--black);overflow-y:auto;transform:translateX(100%);transition:transform 0.45s cubic-bezier(.22,1,.36,1);will-change:transform}
.course-page.open{transform:translateX(0)}

/* back bar */
.cp-back-bar{position:sticky;top:0;z-index:10;background:rgba(16,16,16,0.97);backdrop-filter:blur(10px);border-bottom:1px solid rgba(255,213,30,0.15);padding:0 48px;height:58px;display:flex;align-items:center;justify-content:space-between}
.cp-back-btn{display:flex;align-items:center;gap:10px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;color:rgba(245,245,245,0.55);background:none;border:none;cursor:pointer;font-family:'Poppins',sans-serif;transition:color 0.2s;padding:0}
.cp-back-btn:hover{color:var(--yellow)}
.cp-back-arrow{width:32px;height:32px;border-radius:50%;border:1px solid rgba(255,255,255,0.12);display:flex;align-items:center;justify-content:center;transition:all 0.2s}
.cp-back-btn:hover .cp-back-arrow{border-color:rgba(255,213,30,0.4);background:rgba(255,213,30,0.06)}
.cp-back-arrow svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2}
.cp-breadcrumb{font-size:11px;font-weight:600;letter-spacing:1px;color:rgba(245,245,245,0.25)}
.cp-breadcrumb span{color:rgba(255,213,30,0.4);margin:0 5px}

/* hero band */
.cp-hero{background:linear-gradient(135deg,#1a1400 0%,#0e0e0e 55%);padding:56px 48px 48px;border-bottom:1px solid rgba(255,213,30,0.1);position:relative;overflow:hidden;text-align:left;}
.cp-hero::before{content:'';position:absolute;top:-100px;right:-100px;width:500px;height:500px;background:radial-gradient(circle,rgba(255,213,30,0.09) 0%,transparent 65%);pointer-events:none}
.cp-hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,213,30,0.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,213,30,0.025) 1px,transparent 1px);background-size:60px 60px;pointer-events:none}
.cp-hero-inner{position:relative;z-index:2;display:flex;align-items:flex-start;justify-content:space-between;gap:32px;flex-wrap:wrap}
.cp-hero-left{flex:1;min-width:260px}
.cp-course-badge{display:none !important}
.cp-course-badge span{font-size:10px;font-weight:800;letter-spacing:2px;color:var(--yellow);text-transform:uppercase}
.cp-hero h1{font-size:clamp(28px,4vw,44px);font-weight:900;letter-spacing:-1.5px;line-height:1.1;margin-bottom:10px;color:var(--white)}
.cp-hero h1 em{color:var(--yellow);font-style:normal}
.cp-hero-sub{font-size:13px;color:rgba(245,245,245,0.4);line-height:1.65;max-width:520px;margin-bottom:24px}
.cp-badges{display:flex;gap:8px;flex-wrap:wrap}
.cp-badge{display:flex;align-items:center;gap:7px;background:rgba(255,255,255,0.04);border:1px solid rgba(255,255,255,0.08);border-radius:4px;padding:5px 12px;font-size:11px;font-weight:600;color:rgba(245,245,245,0.55)}
.cp-badge-line{width:2px;height:10px;background:var(--yellow);border-radius:1px;flex-shrink:0}
.cp-hero-right{display:flex;flex-direction:column;align-items:flex-end;gap:16px;flex-shrink:0;padding-top:4px}
.cp-price-tag{text-align:right}
.cp-price-big{font-size:44px;font-weight:900;color:var(--yellow);letter-spacing:-2px;line-height:1}
.cp-price-note{font-size:11px;color:rgba(245,245,245,0.3);font-weight:600;letter-spacing:1px;margin-top:4px}
.cp-add-btn{background:var(--yellow);color:var(--black);border:none;border-radius:6px;padding:14px 32px;font-size:13px;font-weight:800;font-family:'Poppins',sans-serif;cursor:pointer;letter-spacing:0.3px;transition:all 0.2s;white-space:nowrap;display:inline-block;text-align:center}
.cp-add-btn:hover{background:#e6bf00;transform:translateY(-2px)}

/* body layout */
.cp-body{padding:0 48px 80px;display:grid;grid-template-columns:1fr 320px;gap:48px;max-width:1200px;margin:0 auto}
@media(max-width:860px){.cp-body{grid-template-columns:1fr;padding:0 24px 48px}.cp-hero{padding:36px 24px 32px}.cp-back-bar{padding:0 24px}}

/* section */
.cp-section{margin-top:48px;text-align:left;}
.cp-section-title{font-size:11px;font-weight:800;letter-spacing:3px;text-transform:uppercase;color:var(--yellow);margin-bottom:20px;display:flex;align-items:center;gap:14px}
.cp-section-title::after{content:'';flex:1;height:1px;background:rgba(255,213,30,0.1)}
.cp-body-text{font-size:14px;color:rgba(245,245,245,0.5);line-height:1.9}

/* tables */
.cp-table{width:100%;border-collapse:collapse;border-radius:8px;overflow:hidden;border:1px solid rgba(255,213,30,0.3)}
.cp-table tr{border-bottom:1px solid rgba(255,213,30,0.15)}
.cp-table tr:last-child{border-bottom:none}
.cp-table td{padding:13px 16px;font-size:13px}
.cp-table td:first-child{font-weight:700;color:var(--white);width:36%;background:rgba(255,213,30,0.05)}
.cp-table td:last-child{color:var(--white);font-weight:500}

.cp-outline-table{width:100%;border-collapse:collapse}
.cp-outline-table thead tr{background:rgba(255,213,30,0.06);border-bottom:1px solid rgba(255,213,30,0.12)}
.cp-outline-table thead td{padding:11px 16px;font-size:10px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:rgba(255,213,30,0.6)}
.cp-outline-table tbody tr{border-bottom:1px solid rgba(255,255,255,0.04);transition:background 0.15s}
.cp-outline-table tbody tr:hover{background:rgba(255,213,30,0.025)}
.cp-outline-table tbody tr.total-row{background:rgba(255,213,30,0.05);border-top:1px solid rgba(255,213,30,0.12);border-bottom:none}
.cp-outline-table tbody td{padding:13px 16px;font-size:13px;color:rgba(245,245,245,0.6)}
.cp-outline-table tbody tr.total-row td{font-weight:800;color:var(--yellow)}
.cp-outline-table tbody td:last-child{text-align:right;color:rgba(255,213,30,0.55);font-weight:600}
.cp-outline-table tbody tr.total-row td:last-child{color:var(--yellow)}

.cp-assess-table{width:100%;border-collapse:collapse}
.cp-assess-table thead tr{background:rgba(255,213,30,0.06);border-bottom:1px solid rgba(255,213,30,0.12)}
.cp-assess-table thead td{padding:11px 16px;font-size:10px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:rgba(255,213,30,0.6)}
.cp-assess-table tbody tr{border-bottom:1px solid rgba(255,255,255,0.04)}
.cp-assess-table tbody td{padding:13px 16px;font-size:13px;color:rgba(245,245,245,0.6)}
.pct-row{display:flex;align-items:center;gap:10px;justify-content:flex-end}
.pct-track{height:3px;width:64px;background:rgba(255,255,255,0.07);border-radius:100px;overflow:hidden}
.pct-fill{height:100%;background:var(--yellow);border-radius:100px}
.pct-label{font-size:12px;font-weight:700;color:var(--white);min-width:30px;text-align:right}

/* sidebar */
.cp-sidebar{padding-top:48px}
.cp-why-card{background:#1a1a1a;border:1px solid rgba(255,213,30,0.1);border-radius:10px;padding:28px;margin-bottom:24px}
.cp-why-title{font-size:10px;font-weight:800;letter-spacing:3px;text-transform:uppercase;color:var(--yellow);margin-bottom:20px}
.cp-why-list{list-style:none;margin-left:0;padding-left:0;}
.cp-why-list li{display:flex;align-items:center;gap:12px;padding:10px 0;border-bottom:1px solid rgba(255,255,255,0.04);font-size:13px;color:rgba(245,245,245,0.65);font-weight:500}
.cp-why-list li:last-child{border-bottom:none}
.cp-why-dot{width:3px;height:3px;background:var(--yellow);border-radius:50%;flex-shrink:0;margin-left:2px}

/* contact form */
.cp-form-card{background:#1a1a1a;border:1px solid rgba(255,213,30,0.2);border-radius:10px;padding:28px}
.cp-form-title{font-size:10px;font-weight:800;letter-spacing:3px;text-transform:uppercase;color:var(--yellow);margin-bottom:22px}
.cpf-group{margin-bottom:14px}
.cpf-group label{display:block;font-size:10px;font-weight:700;letter-spacing:1.5px;text-transform:uppercase;color:var(--white);margin-bottom:6px}
.cpf-group input,.cpf-group textarea{width:100%;background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.15);border-radius:6px;padding:11px 14px;font-size:13px;font-family:'Poppins',sans-serif;color:var(--white);outline:none;transition:border-color 0.2s;resize:none}
.cpf-group input::placeholder,.cpf-group textarea::placeholder{color:rgba(245,245,245,0.4)}
.cpf-group input:focus,.cpf-group textarea:focus{border-color:rgba(255,213,30,0.6)}
.cpf-group textarea{height:90px}
.cpf-submit{width:100%;background:var(--yellow);color:var(--black);border:none;border-radius:6px;padding:13px;font-size:13px;font-weight:800;font-family:'Poppins',sans-serif;cursor:pointer;transition:all 0.2s;margin-top:4px}
.cpf-submit:hover{background:#e6bf00}

/* ── REVIEWS ─────────────────────────────────────────────────── */
.cp-reviews-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px;flex-wrap:wrap;gap:12px}
.cp-rating-summary{display:flex;align-items:center;gap:16px}
.cp-rating-big{font-size:52px;font-weight:900;color:var(--yellow);letter-spacing:-3px;line-height:1}
.cp-rating-info{}
.cp-stars{display:flex;gap:3px;margin-bottom:4px}
.cp-star{width:14px;height:14px;fill:var(--yellow)}
.cp-star-empty{width:14px;height:14px;fill:rgba(255,213,30,0.2)}
.cp-rating-count{font-size:12px;color:rgba(245,245,245,0.3);font-weight:600}
.cp-write-btn{padding:10px 22px;border:1.5px solid rgba(255,213,30,0.35);color:var(--yellow);border-radius:6px;font-size:12px;font-weight:700;font-family:'Poppins',sans-serif;background:transparent;cursor:pointer;letter-spacing:0.5px;transition:all 0.2s}
.cp-write-btn:hover{background:rgba(255,213,30,0.08);border-color:var(--yellow)}

.cp-review-card{background:#181818;border:1px solid rgba(255,255,255,0.05);border-radius:8px;padding:24px;margin-bottom:16px}
.cp-review-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px;flex-wrap:wrap;gap:8px}
.cp-reviewer{display:flex;align-items:center;gap:12px}
.cp-reviewer-avatar{width:36px;height:36px;border-radius:50%;background:rgba(255,213,30,0.12);border:1px solid rgba(255,213,30,0.2);display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;color:var(--yellow);flex-shrink:0}
.cp-reviewer-name{font-size:13px;font-weight:700;color:var(--white)}
.cp-reviewer-date{font-size:11px;color:rgba(245,245,245,0.3);margin-top:2px}
.cp-review-stars{display:flex;gap:2px}
.cp-review-text{font-size:13px;color:rgba(245,245,245,0.55);line-height:1.8}

.cp-no-reviews{padding:40px 0;text-align:center}
.cp-no-reviews-title{font-size:15px;font-weight:700;color:rgba(245,245,245,0.4);margin-bottom:8px}
.cp-no-reviews-sub{font-size:13px;color:rgba(245,245,245,0.25)}

/* write review form */
.cp-review-form{background:#181818;border:1px solid rgba(255,213,30,0.1);border-radius:10px;padding:28px;margin-top:24px}
.cp-review-form-title{font-size:11px;font-weight:800;letter-spacing:2px;text-transform:uppercase;color:rgba(255,213,30,0.7);margin-bottom:20px}
.cp-star-select{display:flex;gap:6px;margin-bottom:18px}
.cp-star-btn{width:28px;height:28px;background:none;border:none;cursor:pointer;padding:0;transition:transform 0.15s}
.cp-star-btn:hover{transform:scale(1.2)}
.cp-star-btn svg{width:24px;height:24px;transition:fill 0.15s}
.cp-star-btn svg.active{fill:var(--yellow)}
.cp-star-btn svg.inactive{fill:rgba(255,255,255,0.1)}
.cp-form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.cp-review-form .cpf-group{margin-bottom:12px}
.cp-review-form-submit{background:var(--yellow);color:var(--black);border:none;border-radius:6px;padding:12px 28px;font-size:13px;font-weight:800;font-family:'Poppins',sans-serif;cursor:pointer;transition:all 0.2s;margin-top:4px}
.cp-review-form-submit:hover{background:#e6bf00}

/* Make shop and category archives full-width 100% */
.archive.tax-product_cat,
.archive.tax-product_cat #main,
.archive.tax-product_cat #primary,
.archive.tax-product_cat .site-main,
.archive.post-type-archive-product,
.archive.post-type-archive-product #main,
.archive.post-type-archive-product #primary,
.archive.post-type-archive-product .site-main {
    background-color: #101010 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.archive.tax-product_cat .ct-container,
.archive.post-type-archive-product .ct-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.archive.tax-product_cat .ct-container > section,
.archive.post-type-archive-product .ct-container > section {
    max-width: 100% !important;
    width: 100% !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Force all course archive hero and overlay outline h1 heading text (including highlights) to white */
.page-hero h1,
.page-hero h1 span,
.page-hero h1 em,
.cp-hero h1,
.cp-hero h1 span,
.cp-hero h1 em {
    color: #ffffff !important;
}

/* Make standard pages full-width and dark background */
.page,
.page #main,
.page #primary,
.page .site-main {
    background-color: #101010 !important;
}
.page .ct-container-full {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background-color: #101010 !important;
}

/* Make single product pages dark-themed and full-width */
.single-product,
.single-product #main,
.single-product #primary,
.single-product .site-main {
    background-color: #101010 !important;
}

/* Hide duplicate top breadcrumbs / hero section on single product pages */
.single-product .hero-section {
    display: none !important;
}

/* Hide course image gallery on single product page */
.single-product .woocommerce-product-gallery,
.single-product .ct-product-gallery-container {
    display: none !important;
}

/* Force product entry content to full-width block layout */
.single-product div.product,
.single-product .product {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
}
.single-product .summary.entry-summary,
.single-product div.entry-summary {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    flex: 1 1 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force text and header colors to white on single product pages */
.single-product .product_title,
.single-product .price,
.single-product .price .amount,
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description p,
.single-product .entry-content,
.single-product .entry-content p,
.single-product .entry-summary,
.single-product .entry-summary p,
.single-product .product_meta,
.single-product .product_meta span,
.single-product .product_meta a,
.single-product .posted_in a,
.single-product .woocommerce-tabs h2,
.single-product .woocommerce-tabs h3,
.single-product .woocommerce-tabs p,
.single-product .woocommerce-tabs li,
.single-product .woocommerce-tabs label,
.single-product .woocommerce-tabs .comment-reply-title,
.single-product .woocommerce-tabs .comment-notes,
.single-product .woocommerce-tabs .comment-text,
.single-product .woocommerce-tabs .comment-text p,
.single-product .woocommerce-tabs .meta,
.single-product .woocommerce-tabs .meta strong,
.single-product .woocommerce-tabs .meta time {
    color: #ffffff !important;
}

/* Style single product page breadcrumbs */
.single-product .ct-breadcrumbs,
.single-product .ct-breadcrumbs a,
.single-product .ct-breadcrumbs span {
    color: rgba(255, 255, 255, 0.6) !important;
}
.single-product .ct-breadcrumbs a:hover {
    color: var(--yellow) !important;
}

/* Style product tabs navigation */
.single-product .woocommerce-tabs ul.tabs li a {
    color: rgba(255, 255, 255, 0.6) !important;
}
.single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--yellow) !important;
}
.single-product .woocommerce-tabs ul.tabs li {
    border-bottom: 2px solid transparent !important;
}
.single-product .woocommerce-tabs ul.tabs li.active {
    border-bottom-color: var(--yellow) !important;
}

/* Style quantity selector input */
.single-product .quantity input.qty {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 8px !important;
}

/* Style sidebar globally (transparent background) */
.ct-sidebar {
    background: transparent !important;
    background-color: transparent !important;
}

/* Style sidebar widgets globally to be dark */
.ct-sidebar .ct-widget {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 8px !important;
    padding: 28px !important;
    color: #ffffff !important;
}
.ct-sidebar .widget-title {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding-bottom: 12px !important;
    margin-bottom: 20px !important;
}

/* WPForms styling overrides globally in sidebar to be dark with white text */
.ct-sidebar .wpforms-container,
.ct-sidebar .wpforms-form {
    color: #ffffff !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.ct-sidebar .wpforms-form label,
.ct-sidebar .wpforms-form .wpforms-field-label {
    color: #ffffff !important;
    font-weight: 600 !important;
}
.ct-sidebar .wpforms-form input[type="text"],
.ct-sidebar .wpforms-form input[type="email"],
.ct-sidebar .wpforms-form input[type="url"],
.ct-sidebar .wpforms-form input[type="number"],
.ct-sidebar .wpforms-form select,
.ct-sidebar .wpforms-form textarea {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
}
.ct-sidebar .wpforms-form input::placeholder,
.ct-sidebar .wpforms-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}
.ct-sidebar .wpforms-form input:focus,
.ct-sidebar .wpforms-form textarea:focus {
    border-color: var(--yellow) !important;
    outline: none !important;
}
.ct-sidebar .wpforms-submit-container button.wpforms-submit,
.ct-sidebar .wpforms-form button[type="submit"] {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 32px !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    width: 100% !important;
}
.ct-sidebar .wpforms-submit-container button.wpforms-submit:hover,
.ct-sidebar .wpforms-form button[type="submit"]:hover {
    background-color: #e6be12 !important;
    transform: translateY(-2px) !important;
}

/* Contact Form 7 Placeholder Text Color White */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}
.wpcf7 input::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder {
    color: #ffffff !important;
}
.wpcf7 input::-moz-placeholder,
.wpcf7 textarea::-moz-placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}
.wpcf7 input:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder {
    color: #ffffff !important;
}

/* WooCommerce Cart Page Styling Overrides */
.woocommerce-cart,
.woocommerce-cart #main,
.woocommerce-cart #primary,
.woocommerce-cart .site-main {
    background-color: #101010 !important;
}

/* Hide product image thumbnails in the cart table */
.woocommerce-cart td.product-thumbnail,
.woocommerce-cart th.product-thumbnail {
    display: none !important;
}

/* Force cart text and headers to white */
.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-cart table.cart td a,
.woocommerce-cart table.cart td span,
.woocommerce-cart table.cart td.product-name a,
.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal,
.woocommerce-cart .cart-collaterals h2,
.woocommerce-cart .cart-collaterals th,
.woocommerce-cart .cart-collaterals td,
.woocommerce-cart .cart-collaterals th span,
.woocommerce-cart .cart-collaterals td span,
.woocommerce-cart .cart-collaterals .shop_table th,
.woocommerce-cart .cart-collaterals .shop_table td,
.woocommerce-cart .cart-collaterals .shop_table td span,
.woocommerce-cart .cart-empty,
.woocommerce-cart .return-to-shop,
.woocommerce-cart label {
    color: #ffffff !important;
}

/* Force all text in the cart totals box to white */
.woocommerce-cart .cart_totals,
.woocommerce-cart .cart_totals *:not(.checkout-button) {
    color: #ffffff !important;
}

/* Style cart quantity inputs */
.woocommerce-cart .quantity input.qty {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 8px !important;
}

/* Style coupon code input field */
.woocommerce-cart .coupon input#coupon_code {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
    padding: 8px 12px !important;
}
.woocommerce-cart .coupon input#coupon_code::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Style cart buttons */
.woocommerce-cart button.button {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}
.woocommerce-cart button.button:hover {
    background-color: #e6be12 !important;
}
.woocommerce-cart button.button:disabled,
.woocommerce-cart button.button[disabled] {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: rgba(255, 255, 255, 0.4) !important;
    cursor: not-allowed !important;
}

/* Style proceed to checkout button */
.woocommerce-cart .checkout-button {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    border-radius: 6px !important;
    padding: 18px 36px !important;
    text-align: center !important;
    display: block !important;
    transition: all 0.2s !important;
}
.woocommerce-cart .checkout-button:hover {
    background-color: #e6be12 !important;
    transform: translateY(-2px) !important;
}

/* WooCommerce Checkout Page overrides */
.woocommerce-checkout,
.woocommerce-checkout #main,
.woocommerce-checkout #primary,
.woocommerce-checkout .site-main {
    background-color: #101010 !important;
}
.woocommerce-checkout h2,
.woocommerce-checkout h3,
.woocommerce-checkout label,
.woocommerce-checkout th,
.woocommerce-checkout td,
.woocommerce-checkout span,
.woocommerce-checkout strong,
.woocommerce-checkout p,
.woocommerce-checkout a,
.woocommerce-checkout li,
.woocommerce-checkout .woocommerce-thankyou-order-received {
    color: #ffffff !important;
}

/* Style checkout form fields */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 16px !important;
}
.woocommerce-checkout input::placeholder,
.woocommerce-checkout textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}
.woocommerce-checkout input:focus,
.woocommerce-checkout textarea:focus {
    border-color: var(--yellow) !important;
    outline: none !important;
}

/* Style place order button */
.woocommerce-checkout #place_order {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 32px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    width: 100% !important;
}
.woocommerce-checkout #place_order:hover {
    background-color: #e6be12 !important;
    transform: translateY(-2px) !important;
}

/* WPForms and Fluent Forms Placeholder and Text Color White */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder,
.wpforms-form input::-webkit-input-placeholder,
.wpforms-form textarea::-webkit-input-placeholder,
.wpforms-form input::-moz-placeholder,
.wpforms-form textarea::-moz-placeholder,
.wpforms-form input:-ms-input-placeholder,
.wpforms-form textarea:-ms-input-placeholder,
.fluentform input::placeholder,
.fluentform textarea::placeholder,
.fluentform input::-webkit-input-placeholder,
.fluentform textarea::-webkit-input-placeholder,
.fluentform input::-moz-placeholder,
.fluentform textarea::-moz-placeholder,
.fluentform input:-ms-input-placeholder,
.fluentform textarea:-ms-input-placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

.wpforms-form input,
.wpforms-form textarea,
.fluentform input,
.fluentform textarea {
    color: #ffffff !important;
}

/* Blog Page Styling overrides: Dark background, Yellow headings, and Remove featured images */
body.blog,
body.blog #main,
body.blog #primary,
body.blog .site-main,
body.blog .hero-section,
body.blog .page-header {
    background-color: #101010 !important;
}

/* Hide featured images on blog archive page */
body.blog article .ct-media-container,
body.blog article .boundless-image,
body.blog article .wp-post-image,
body.blog article figure.wp-block-image {
    display: none !important;
}

/* Style headings on blog page to be yellow */
body.blog h1,
body.blog h1.page-title,
body.blog h2,
body.blog h2.entry-title a,
body.blog h2 a,
body.blog h3,
body.blog h3 a,
body.blog .entry-title a {
    color: var(--yellow) !important;
    transition: color 0.2s ease !important;
}
body.blog h2.entry-title a:hover,
body.blog h2 a:hover,
body.blog .entry-title a:hover {
    color: #ffffff !important;
}

/* Style entry card boxes and text elements to be readable on dark background */
body.blog .entry-card {
    background-color: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: none !important;
}
body.blog,
body.blog p,
body.blog span:not(.chip),
body.blog time,
body.blog .entry-meta,
body.blog .entry-meta *,
body.blog .entry-summary,
body.blog .entry-content,
body.blog .ct-ghost-button,
body.blog .ct-more-link {
    color: rgba(245, 245, 245, 0.8) !important;
}
body.blog .ct-more-link:hover {
    color: var(--yellow) !important;
}

/* Style pagination on blog page */
body.blog .pagination,
body.blog .nav-links,
body.blog .page-numbers {
    color: #ffffff !important;
}
body.blog .page-numbers.current {
    background-color: var(--yellow) !important;
    color: var(--black) !important;
}

/* Override all default Blocksy hero sections with background images (type-2) to use our dark grid pattern background */
.hero-section[data-type="type-2"] {
    background-color: #101010 !important;
    background-image: linear-gradient(rgba(255, 213, 30, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 213, 30, 0.04) 1px, transparent 1px) !important;
    background-size: 60px 60px !important;
    position: relative !important;
    overflow: hidden !important;
    padding: 140px 48px 80px !important;
}

/* Hide the featured image element inside the page hero header */
.hero-section[data-type="type-2"] figure,
.hero-section[data-type="type-2"] .ct-media-container {
    display: none !important;
}

/* Apply gold radial glow to Blocksy default hero header */
.hero-section[data-type="type-2"]::before {
    content: '' !important;
    position: absolute !important;
    top: -60px !important;
    right: -80px !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(255, 213, 30, 0.1) 0%, transparent 65%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Ensure header content stays above the glow background */
.hero-section[data-type="type-2"] > * {
    position: relative !important;
    z-index: 2 !important;
}

/* Sidebar Posts Query Widget overrides: Hide images and fix text colors */
#sidebar .wp-block-blocksy-query .ct-dynamic-media,
#sidebar .wp-block-blocksy-query .wp-block-column:first-child {
    display: none !important;
}

#sidebar .wp-block-blocksy-query .wp-block-column:last-child {
    flex-basis: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#sidebar .wp-block-blocksy-query h2 a,
#sidebar .wp-block-blocksy-query h2.ct-dynamic-data a,
#sidebar .wp-block-blocksy-query .ct-post-title {
    color: #ffffff !important;
}

#sidebar .wp-block-blocksy-query h2 a:hover,
#sidebar .wp-block-blocksy-query h2.ct-dynamic-data a:hover,
#sidebar .wp-block-blocksy-query .ct-post-title:hover {
    color: var(--yellow) !important;
}

#sidebar .wp-block-blocksy-query time,
#sidebar .wp-block-blocksy-query .ct-dynamic-data {
    color: rgba(255, 255, 255, 0.5) !important;
}

#sidebar h3.wp-block-heading,
#sidebar .widget-title,
#sidebar h3 {
    color: var(--yellow) !important;
}

/* Style single blog post pages to be dark with light text */
body.single-post,
body.single-post #main,
body.single-post #primary,
body.single-post .site-main,
body.single-post article,
body.single-post .ct-container,
body.single-post .ct-container-single,
body.single-post .entry-content,
body.single-post .hero-section,
body.single-post .entry-header,
body.single-post .entry-hero,
body.single-post .post-hero {
    background-color: #101010 !important;
}

body.single-post,
body.single-post p,
body.single-post li,
body.single-post span,
body.single-post time,
body.single-post .entry-meta,
body.single-post .entry-meta *,
body.single-post .entry-content,
body.single-post blockquote,
body.single-post blockquote p {
    color: rgba(245, 245, 245, 0.8) !important;
}

body.single-post h1,
body.single-post h2,
body.single-post h3,
body.single-post h4,
body.single-post h5,
body.single-post h6,
body.single-post .entry-title,
body.single-post .hero-title,
body.single-post .post-title {
    color: var(--yellow) !important;
}

body.single-post .entry-content a {
    color: var(--yellow) !important;
    text-decoration: underline !important;
}

body.single-post .entry-content a:hover {
    color: #ffffff !important;
}

body.single-post .ct-sidebar,
body.single-post aside,
body.single-post #comments,
body.single-post .comment-respond,
body.single-post .comment-reply-title {
    background-color: #101010 !important;
    color: rgba(245, 245, 245, 0.8) !important;
}

body.single-post .ct-sidebar h1,
body.single-post .ct-sidebar h2,
body.single-post .ct-sidebar h3,
body.single-post .ct-sidebar h4,
body.single-post .ct-sidebar a {
    color: var(--yellow) !important;
}

/* ── WOOCOMMERCE CHECKOUT NOTICES / THANK YOU BANNER FIX ── */
.woocommerce-checkout .woocommerce-thankyou-order-received,
.woocommerce-checkout .woocommerce-notice,
.woocommerce-checkout .woocommerce-info,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-error {
    background-color: #1a1a1a !important;
    border: 1px solid rgba(255, 213, 30, 0.45) !important;
    color: #ffd51e !important;
    padding: 20px 24px !important;
    border-radius: 6px !important;
    margin-bottom: 30px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    text-align: left !important;
}

/* Ensure link text inside WooCommerce notices is readable */
.woocommerce-checkout .woocommerce-notice a,
.woocommerce-checkout .woocommerce-info a,
.woocommerce-checkout .woocommerce-message a,
.woocommerce-checkout .woocommerce-error a {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* ── WOOCOMMERCE BACS BANK DETAILS BOX STYLING ── */
.bacs-bank-details-box {
    border: 1px solid rgba(255, 213, 30, 0.45) !important;
    padding: 20px !important;
    margin: 20px 0 !important;
    border-radius: 6px !important;
    background-color: #1a1a1a !important;
    color: #f5f5f5 !important;
    text-align: left !important;
}

.bacs-bank-details-box h4 {
    margin-top: 0 !important;
    color: #ffd51e !important;
    border-bottom: 1px solid rgba(255, 213, 30, 0.2) !important;
    padding-bottom: 8px !important;
    margin-bottom: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
}

.bacs-bank-details-box p {
    margin: 0 !important;
    line-height: 1.7 !important;
    color: #e0e0e0 !important;
    font-size: 14px !important;
}

.bacs-bank-details-box strong {
    color: #ffd51e !important;
    font-weight: 600 !important;
}

/* Style Read More button on Blog page to have white text and arrow */
.entry-button,
.entry-button svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}
.entry-button:hover,
.entry-button:hover svg {
    color: #ffd51e !important;
    fill: #ffd51e !important;
}

/* Custom Upgrade Hero styles */
.upgrade-hero {
    padding: 120px 48px 60px !important;
}
.upgrade-hero .page-hero-inner {
    display: block !important;
}
.upgrade-hero .hero-content {
    width: 100%;
}
.upgrade-title {
    font-size: clamp(48px, 6vw, 76px) !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    line-height: 1.05 !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
}
.upgrade-title .yellow-slash {
    color: #ffd51e !important;
    font-family: inherit;
    font-weight: 800;
}
.upgrade-sub {
    font-size: 16px !important;
    color: rgba(245, 245, 245, 0.5) !important;
    max-width: 750px !important;
    line-height: 1.7 !important;
    margin-bottom: 40px !important;
}
/* Features Grid */
.upgrade-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
    margin-bottom: 50px;
    max-width: 1100px;
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 213, 30, 0.3);
    background: rgba(255, 213, 30, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffd51e;
}
.feature-check svg {
    width: 12px;
    height: 12px;
}
.feature-text {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.85);
    font-weight: 500;
    line-height: 1.4;
}
/* Breadcrumbs */
.upgrade-breadcrumb,
.page-breadcrumb {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}
.upgrade-breadcrumb a,
.page-breadcrumb a {
    color: rgba(245, 245, 245, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.upgrade-breadcrumb a:hover,
.page-breadcrumb a:hover {
    color: #ffd51e;
}
.upgrade-breadcrumb .sep,
.page-breadcrumb .sep {
    color: rgba(245, 245, 245, 0.2);
}
.upgrade-breadcrumb .current,
.page-breadcrumb .current {
    color: rgba(245, 245, 245, 0.3);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .upgrade-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 767px) {
    .upgrade-hero {
        padding: 100px 24px 40px !important;
    }
    .upgrade-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Style for page hero h1 last word in yellow */
.page-hero h1 span.yellow-last {
    color: #ffd51e !important;
}

/* Custom Mature/Adult Student Hero styles */
.mature-hero {
    padding: 120px 48px 60px !important;
}
.mature-hero .page-hero-inner {
    display: block !important;
}
.mature-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.mature-hero-left {
    display: flex;
    flex-direction: column;
}
.mature-title {
    font-size: clamp(40px, 5.5vw, 68px) !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    line-height: 1.05 !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
}
.mature-title .yellow-comma {
    color: #ffd51e !important;
}
.mature-sub {
    font-size: 16px !important;
    color: rgba(245, 245, 245, 0.5) !important;
    max-width: 540px !important;
    line-height: 1.7 !important;
    margin-bottom: 36px !important;
}
/* Action Buttons */
.mature-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}
.mature-btn-fill {
    padding: 14px 28px;
    background: #ffd51e !important;
    color: #000000 !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 14px;
}
.mature-btn-fill:hover {
    background: #e5be15 !important;
    transform: translateY(-2px);
}
.mature-btn-outline {
    padding: 13px 28px;
    background: transparent !important;
    color: #ffd51e !important;
    border: 1px solid #ffd51e !important;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    font-size: 14px;
}
.mature-btn-outline:hover {
    background: rgba(255, 213, 30, 0.05) !important;
    transform: translateY(-2px);
}
/* Breadcrumbs */
.mature-breadcrumb {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mature-breadcrumb a {
    color: rgba(245, 245, 245, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.mature-breadcrumb a:hover {
    color: #ffd51e;
}
.mature-breadcrumb .sep {
    color: rgba(245, 245, 245, 0.2);
}
.mature-breadcrumb .current {
    color: rgba(245, 245, 245, 0.3);
}

/* Stats Right Column */
.mature-hero-right {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.mature-stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
}
.mature-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #ffd51e;
    min-width: 90px;
    flex-shrink: 0;
}
.mature-stat-desc {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .mature-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .mature-hero-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 32px;
    }
}
@media (max-width: 767px) {
    .mature-hero {
        padding: 100px 24px 40px !important;
    }
    .mature-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .mature-btn-fill, .mature-btn-outline {
        text-align: center;
    }
}

/* Custom International Programme Hero styles */
.international-hero {
    padding: 120px 48px 60px !important;
}
.international-hero .page-hero-inner {
    display: block !important;
}
.international-hero-content {
    display: flex;
    flex-direction: column;
    max-width: 800px;
}
.international-title {
    font-size: clamp(40px, 5.5vw, 68px) !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    line-height: 1.05 !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
}
.international-title .yellow-comma {
    color: #ffd51e !important;
}
.international-sub {
    font-size: 16px !important;
    color: rgba(245, 245, 245, 0.5) !important;
    max-width: 600px !important;
    line-height: 1.7 !important;
    margin-bottom: 36px !important;
}
/* Action Buttons */
.international-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}
.international-btn-fill {
    padding: 14px 28px;
    background: #ffd51e !important;
    color: #000000 !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 14px;
}
.international-btn-fill:hover {
    background: #e5be15 !important;
    transform: translateY(-2px);
}
.international-btn-outline {
    padding: 13px 28px;
    background: transparent !important;
    color: #ffd51e !important;
    border: 1px solid #ffd51e !important;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    font-size: 14px;
}
.international-btn-outline:hover {
    background: rgba(255, 213, 30, 0.05) !important;
    transform: translateY(-2px);
}
/* Breadcrumbs */
.international-breadcrumb {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.international-breadcrumb a {
    color: rgba(245, 245, 245, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.international-breadcrumb a:hover {
    color: #ffd51e;
}
.international-breadcrumb .sep {
    color: rgba(245, 245, 245, 0.2);
}
.international-breadcrumb .current {
    color: rgba(245, 245, 245, 0.3);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .international-hero {
        padding: 100px 24px 40px !important;
    }
    .international-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .international-btn-fill, .international-btn-outline {
        text-align: center;
    }
}

/* Custom High School Student Hero styles */
.hs-hero {
    padding: 120px 48px 60px !important;
}
.hs-hero .page-hero-inner {
    display: block !important;
}
.hs-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hs-hero-left {
    display: flex;
    flex-direction: column;
}
.hs-title {
    font-size: clamp(40px, 5.5vw, 68px) !important;
    font-weight: 800 !important;
    letter-spacing: -2px !important;
    line-height: 1.05 !important;
    margin-bottom: 24px !important;
    color: #ffffff !important;
}
.hs-title .yellow-comma {
    color: #ffd51e !important;
}
.hs-sub {
    font-size: 16px !important;
    color: rgba(245, 245, 245, 0.5) !important;
    max-width: 540px !important;
    line-height: 1.7 !important;
    margin-bottom: 36px !important;
}
/* Action Buttons */
.hs-hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    align-items: center;
}
.hs-btn-fill {
    padding: 14px 28px;
    background: #ffd51e !important;
    color: #000000 !important;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    font-size: 14px;
}
.hs-btn-fill:hover {
    background: #e5be15 !important;
    transform: translateY(-2px);
}
.hs-btn-outline {
    padding: 13px 28px;
    background: transparent !important;
    color: #ffd51e !important;
    border: 1px solid #ffd51e !important;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
    font-size: 14px;
}
.hs-btn-outline:hover {
    background: rgba(255, 213, 30, 0.05) !important;
    transform: translateY(-2px);
}
/* Breadcrumbs */
.hs-breadcrumb {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.3);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hs-breadcrumb a {
    color: rgba(245, 245, 245, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.hs-breadcrumb a:hover {
    color: #ffd51e;
}
.hs-breadcrumb .sep {
    color: rgba(245, 245, 245, 0.2);
}
.hs-breadcrumb .current {
    color: rgba(245, 245, 245, 0.3);
}

/* Stats Right Column */
.hs-hero-right {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 48px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.hs-stat-item {
    display: flex;
    align-items: center;
    gap: 24px;
}
.hs-stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #ffd51e;
    min-width: 90px;
    flex-shrink: 0;
}
.hs-stat-desc {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.5);
    line-height: 1.5;
}

/* Mobile responsive */
@media (max-width: 991px) {
    .hs-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hs-hero-right {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 32px;
    }
}
@media (max-width: 767px) {
    .hs-hero {
        padding: 100px 24px 40px !important;
    }
    .hs-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .hs-btn-fill, .hs-btn-outline {
        text-align: center;
    }
}




/* Hide test preparation paragraph */
.post-4765 .elementor-widget-text-editor:nth-of-type(1),
.page-id-4765 .elementor-widget-text-editor:nth-of-type(1) {
    display: none !important;
}


/* Hide specific Elementor text widget on test preparation page */
.elementor-element-7315d00 {
    display: none !important;
}


/* Hide duplicate session options pills after the hero section */
.entry-content .session-options,
article .session-options,
.ct-container-full .session-options {
    display: none !important;
}


/* Hide session options block below hero */
div.session-options,
.session-options {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}
