/*
Theme Name: SmartSearch AI Theme
Theme URI: https://smartsearch-ai.com
Author: Dev Preshy Technologies
Author URI: https://devpreshy.com
Description: Modern theme for selling SmartSearch AI plugin with Paystack integration
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smartsearch-ai-theme
Tags: business, ecommerce, custom-menu, featured-images, full-width-template, one-column, two-columns, translation-ready
*/

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary-color: #0073aa;
	--primary-dark: #005177;
	--primary-light: #e5f5fa;
	--secondary-color: #00a32a;
	--text-dark: #1d2327;
	--text-medium: #50575e;
	--text-light: #646970;
	--border-color: #dcdcde;
	--bg-light: #f6f7f7;
	--bg-white: #ffffff;
	--danger: #d63638;
	--warning: #dba617;
	--success: #00a32a;
	--gradient-primary: linear-gradient(135deg, #0073aa 0%, #005177 100%);
	--gradient-secondary: linear-gradient(135deg, #00a32a 0%, #008a20 100%);
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
	--font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
	--font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background: var(--bg-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin-bottom: 1rem;
}

a {
	color: var(--primary-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary-dark);
}

img {
	max-width: 100%;
	height: auto;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

section {
	padding: 80px 0;
}

.section-bg {
	background: var(--bg-light);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
	background: var(--bg-white);
	border-bottom: 1px solid var(--border-color);
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-sm);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo a {
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	gap: 10px;
}

.site-logo .logo-icon {
	width: 40px;
	height: 40px;
	background: var(--gradient-primary);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 18px;
}

.main-navigation ul {
	list-style: none;
	display: flex;
	gap: 30px;
	margin: 0;
}

.main-navigation a {
	color: var(--text-medium);
	font-weight: 500;
	transition: color 0.3s;
}

.main-navigation a:hover {
	color: var(--primary-color);
}

.header-cta {
	display: flex;
	gap: 15px;
	align-items: center;
}

.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--text-dark);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 6px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid transparent;
	font-size: 16px;
	text-decoration: none;
}

.btn-primary {
	background: var(--gradient-primary);
	color: white;
	box-shadow: var(--shadow-md);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: white;
}

.btn-secondary {
	background: var(--gradient-secondary);
	color: white;
}

.btn-secondary:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
	color: white;
}

.btn-outline {
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

.btn-outline:hover {
	background: var(--primary-color);
	color: white;
}

.btn-large {
	padding: 16px 40px;
	font-size: 18px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f6f7f7 0%, #e5f5fa 100%);
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero-text h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text p {
	font-size: 1.25rem;
	color: var(--text-medium);
	margin-bottom: 30px;
}

.hero-cta {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.hero-image {
	position: relative;
}

.hero-image img {
	border-radius: 12px;
	box-shadow: var(--shadow-lg);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	margin-top: 60px;
}

.feature-card {
	background: var(--bg-white);
	padding: 40px;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
}

.feature-icon {
	width: 60px;
	height: 60px;
	background: var(--primary-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.feature-card h3 {
	margin-bottom: 15px;
}

.feature-card p {
	color: var(--text-medium);
	margin-bottom: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 15px;
}

.section-header p {
	font-size: 1.125rem;
	color: var(--text-medium);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--bg-white);
	border: 2px solid var(--border-color);
	border-radius: 12px;
	padding: 40px;
	transition: all 0.3s;
	position: relative;
}

.pricing-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-color);
}

.pricing-card.featured {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
}

.pricing-badge {
	position: absolute;
	top: -15px;
	right: 30px;
	background: var(--gradient-primary);
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.pricing-header h3 {
	font-size: 1.75rem;
	margin-bottom: 10px;
}

.pricing-price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin: 20px 0;
}

.pricing-price span {
	font-size: 1.25rem;
	color: var(--text-medium);
	font-weight: 400;
}

.pricing-features {
	list-style: none;
	margin: 30px 0;
}

.pricing-features li {
	padding: 12px 0;
	border-bottom: 1px solid var(--bg-light);
	display: flex;
	align-items: center;
	gap: 10px;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-features li::before {
	content: "✓";
	color: var(--success);
	font-weight: 700;
	font-size: 18px;
}

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

.site-footer {
	background: var(--text-dark);
	color: var(--bg-light);
	padding: 60px 0 30px;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	color: white;
	margin-bottom: 20px;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section a {
	color: var(--bg-light);
	transition: color 0.3s;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	text-align: center;
	color: var(--text-light);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	
	.mobile-menu-toggle {
		display: block;
	}
	
	.main-navigation {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: white;
		border-top: 1px solid var(--border-color);
		padding: 20px;
	}
	
	.main-navigation.active {
		display: block;
	}
	
	.main-navigation ul {
		flex-direction: column;
		gap: 0;
	}
	
	.main-navigation li {
		border-bottom: 1px solid var(--bg-light);
		padding: 15px 0;
	}
	
	.hero-content {
		grid-template-columns: 1fr;
	}
	
	.hero-text h1 {
		font-size: 2.5rem;
	}
	
	.pricing-grid,
	.features-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
}

