/**
 * Aneeq Theme - Admin Getting Started Page
 * Modern Design with Theme Colors (#29b6f6)
 */

/* Reset */
.getting-started *,
.getting-started *::before,
.getting-started *::after {
	box-sizing: border-box;
}

/* Variables */
.getting-started {
	--primary-color: #29b6f6;
	--primary-hover: #0288d1;
	--primary-dark: #01579b;
	--secondary-color: #ec4899;
	--accent-color: #f59e0b;
	--success-color: #10b981;
	--text-color: #2a2e34;
	--text-muted: #6a6a6a;
	--bg-light: #f8fbff;
	--bg-white: #fff;
	--border-color: #e2e8f0;

	--gradient-primary: linear-gradient(135deg, #29b6f6 0%, #0288d1 100%);
	--gradient-hero: linear-gradient(135deg, #29b6f6 0%, #0277bd 50%, #01579b 100%);
	--gradient-card: linear-gradient(180deg, #fff 0%, #f8fbff 100%);

	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 4px 16px rgba(41, 182, 246, 0.15);
	--shadow-lg: 0 8px 30px rgba(41, 182, 246, 0.2);

	--radius: 12px;
	--radius-lg: 16px;
	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Container */
.wrap.getting-started {
	max-width: 1200px;
	margin: 20px auto;
	padding: 0 20px;
}

.getting-started h2.notices {
	display: none;
}

/* Hero / Intro Section */
.getting-started .intro-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background: var(--gradient-hero);
	border-radius: var(--radius-lg);
	padding: 50px;
	margin-bottom: 30px;
	box-shadow: var(--shadow-lg);
	position: relative;
	overflow: hidden;
}

.getting-started .intro-wrap::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 60%;
	height: 200%;
	background: rgba(255, 255, 255, 0.08);
	transform: rotate(20deg);
	pointer-events: none;
}

.getting-started .intro {
	width: 100%;
	position: relative;
	z-index: 1;
}

.getting-started .intro h3 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 16px 0;
	line-height: 1.2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.getting-started .intro p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	margin: 0;
}

.getting-started .intro .theme-version {
	display: inline-block;
	padding: 6px 14px;
	margin-bottom: 16px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	backdrop-filter: blur(4px);
}

.getting-started .elementor-badge {
	font-size: 13px;
}

/* Hero Upgrade Button */
.getting-started .button-hero-upgrade {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 20px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	color: #92400e;
	background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
	border: none;
	border-radius: 30px;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
}

.getting-started .button-hero-upgrade:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(252, 211, 77, 0.5);
	color: #78350f;
}

.getting-started .button-hero-upgrade .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	color: #f59e0b;
}

.getting-started .intro.right {
	text-align: center;
}

.getting-started .intro.right iframe {
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
}

/* Tabs Navigation */
.getting-started .panels {
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
}

.getting-started .inline-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
	background: linear-gradient(90deg, #f8fbff 0%, #eef6ff 100%);
	border-bottom: 1px solid var(--border-color);
}

.getting-started .inline-list li {
	margin: 0;
}

.getting-started .inline-list li a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 28px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-muted);
	text-decoration: none;
	border-bottom: 3px solid transparent;
	transition: var(--transition);
	position: relative;
}

.getting-started .inline-list li a:hover {
	color: var(--primary-color);
	background: rgba(41, 182, 246, 0.05);
}

.getting-started .inline-list li.current a {
	color: var(--primary-color);
	background: var(--bg-white);
	border-bottom-color: var(--primary-color);
}

.getting-started .inline-list li a:focus {
	outline: none;
	box-shadow: none;
}

/* Notification Badge */
.getting-started .plugin-not-active {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 7px;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: var(--secondary-color);
	border-radius: 11px;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.1); }
}

/* Panel Content Area */
.getting-started .panel {
	padding: 30px;
	animation: fadeIn 0.3s ease;
}

.getting-started .panel-left {
	display: none;
}

.getting-started .panel-left.visible {
	display: block;
	padding: 30px;
}

.getting-started #getting-started-panel.visible {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.getting-started #useful-plugin-panel.visible {
	display: block;
}

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Cards */
.getting-started .panel-column,
.getting-started .panel-aside {
	background: var(--gradient-card);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	padding: 28px;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.getting-started .panel-column::before,
.getting-started .panel-aside::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--gradient-primary);
	opacity: 0;
	transition: var(--transition);
}

.getting-started .panel-column:hover,
.getting-started .panel-aside:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
	border-color: transparent;
}

.getting-started .panel-column:hover::before,
.getting-started .panel-aside:hover::before {
	opacity: 1;
}

.getting-started .panel-aside h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-color);
	margin: 0 0 14px 0;
}

.getting-started .panel p,
.getting-started .panel-left p {
	font-size: 15px;
	color: var(--text-muted);
	line-height: 1.7;
	margin: 0 0 20px 0;
}

.getting-started .panel p:last-child {
	margin-bottom: 0;
}

.getting-started .panel-column .recomended-plugin-wrap {
	display: block;
}

/* Buttons */
.getting-started .button,
.getting-started .button.button-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	background: var(--gradient-primary);
	border: none;
	border-radius: 8px;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 4px 14px rgba(41, 182, 246, 0.35);
	text-shadow: none;
}

.getting-started .button:hover,
.getting-started .button.button-primary:hover,
.getting-started .button:focus,
.getting-started .button.button-primary:focus {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #0288d1 0%, #01579b 100%);
	color: #fff;
	box-shadow: 0 6px 20px rgba(41, 182, 246, 0.45);
}

.getting-started .button.updating-message,
.getting-started .button.installed {
	background: var(--bg-light);
	color: var(--text-muted);
	box-shadow: none;
	border: 1px solid var(--border-color);
}

.getting-started .button.activate-now {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

/* Recommended Plugins Grid */
.getting-started .recomended-plugin-wrap {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin: 0;
}

.getting-started .recom-plugin-wrap {
	background: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: var(--radius);
	overflow: hidden;
	transition: var(--transition);
	margin: 0;
	width: 100%;
}

.getting-started .recom-plugin-wrap:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.getting-started .plugin-img-wrap {
	background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
	padding: 24px;
	text-align: center;
}

.getting-started .plugin-img-wrap img {
	max-width: 80px;
	height: auto;
}

.getting-started .plugin-title-install {
	padding: 0;
}

.getting-started .plugin-title-install .title {
	display: block;
	padding: 18px 24px;
	font-size: 17px;
	font-weight: 700;
	color: var(--text-color);
	background: transparent;
	border-bottom: 1px solid var(--border-color);
}

.getting-started .plugin-title-install p {
	padding: 18px 24px;
	margin: 0;
}

.getting-started .button-wrap {
	padding: 18px 24px;
	background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
	border-top: 1px solid var(--border-color);
}

/* Free vs Pro Table */
.getting-started .free-vs-pro-header {
	text-align: center;
	margin-bottom: 40px;
}

.getting-started .free-vs-pro-header h2 {
	font-size: 28px;
	font-weight: 700;
	color: var(--text-color);
	margin: 0 0 12px 0;
}

.getting-started .free-vs-pro-header p {
	font-size: 16px;
	color: var(--text-muted);
	margin: 0;
}

.getting-started .comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bg-white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}

.getting-started .comparison-table thead {
	background: var(--gradient-primary);
}

.getting-started .comparison-table th {
	padding: 18px 24px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	text-align: center;
}

.getting-started .comparison-table th.feature-col {
	text-align: left;
	width: 50%;
}

.getting-started .comparison-table th.free-col,
.getting-started .comparison-table th.pro-col {
	width: 25%;
}

.getting-started .comparison-table tbody tr {
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition);
}

.getting-started .comparison-table tbody tr:hover {
	background: var(--bg-light);
}

.getting-started .comparison-table tbody tr:last-child {
	border-bottom: none;
}

.getting-started .comparison-table td {
	padding: 16px 24px;
	font-size: 14px;
	color: var(--text-color);
	text-align: center;
}

.getting-started .comparison-table td:first-child {
	text-align: left;
	font-weight: 500;
}

/* Feature Badges */
.getting-started .feature-yes {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	color: #059669;
	font-weight: 500;
	font-size: 13px;
}

.getting-started .feature-yes::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: #059669;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
}

.getting-started .feature-no {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.getting-started .feature-no::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	background: #ef4444;
	border-radius: 50%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
	background-size: 14px;
	background-repeat: no-repeat;
	background-position: center;
}

.getting-started .feature-limited {
	display: inline-block;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #d97706;
	background: #fef3c7;
	border-radius: 15px;
}

.getting-started .feature-yes-text {
	display: inline-block;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 600;
	color: #059669;
	background: #d1fae5;
	border-radius: 15px;
}

/* Upgrade CTA */
.getting-started .upgrade-cta {
	text-align: center;
	margin-top: 40px;
	padding: 40px;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
	border-radius: var(--radius);
	border: 2px solid #f59e0b;
}

.getting-started .upgrade-cta h3 {
	font-size: 24px;
	color: #92400e;
	margin: 0 0 10px 0;
}

.getting-started .upgrade-cta p {
	color: #78350f;
	font-size: 15px;
	margin: 0 0 20px 0;
}

.getting-started .button-upgrade-large {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 700;
	color: #fff !important;
	background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
	border: none !important;
	border-radius: 30px;
	text-decoration: none;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
	text-shadow: none !important;
}

.getting-started .button-upgrade-large:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
	color: #fff !important;
	background: linear-gradient(135deg, #d97706 0%, #b45309 100%) !important;
}

.getting-started .button-upgrade-large .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	color: #fff;
}

/* Pro Tab Icon */
.getting-started .pro-tab-icon {
	font-size: 14px;
	width: 14px;
	height: 14px;
	color: #f59e0b;
	vertical-align: middle;
	margin-right: 4px;
}

/* Utility Classes */
.getting-started .mt-0 { margin-top: 0 !important; }
.getting-started .mt-12 { margin-top: 12px !important; }
.getting-started .mb-0 { margin-bottom: 0 !important; }

/* Responsive */
@media (max-width: 900px) {
	.getting-started .intro-wrap {
		grid-template-columns: 1fr;
		padding: 35px;
	}
	.getting-started .intro.right {
		text-align: center;
	}
	.getting-started #getting-started-panel.visible {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.wrap.getting-started {
		padding: 0 10px;
	}
	.getting-started .intro-wrap {
		padding: 25px;
	}
	.getting-started .intro h3 {
		font-size: 24px;
	}
	.getting-started .inline-list {
		flex-direction: column;
	}
	.getting-started .inline-list li a {
		padding: 14px 20px;
		border-bottom: none;
		border-left: 3px solid transparent;
	}
	.getting-started .inline-list li.current a {
		border-bottom: none;
		border-left-color: var(--primary-color);
	}
	.getting-started .panel,
	.getting-started .panel-left.visible {
		padding: 20px;
	}
	.getting-started .recomended-plugin-wrap {
		grid-template-columns: 1fr;
	}
}
