/**
 * WowVPN - Optimized & Cleaned CSS
 * Removed: Duplicates, conflicting rules, and obsolete styles
 * Organized by sections for better maintainability
 */

/* ========== Root Variables & Global Styles ========== */
:root {
	--primary-color: #3b82f6;
	--primary-dark: #1e40af;
	--primary-light: #60a5fa;
	--accent-color: #8b5cf6;
	--text-primary: #1f2937;
	--text-secondary: #6b7280;
	--text-light: #9ca3af;
	--bg-light: #f3f4f6;
	--bg-lighter: #ffffff;
	--border-color: #e5e7eb;
	--surface-color: #ffffff;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
	background: #f9fafb;
	color: var(--text-primary);
	line-height: 1.6;
}

/* ========== Utility Classes ========== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.text-center {
	text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

.displaynone { display: none; }
.displayblock { display: block; }

.txtgreen { color: green; }
.txtred { color: red; }

.purple { color: #b039ca; }
.orange { color: #f7a017; }
.blue { color: #28B4E5; }
.green { color: #a5ca39; }

/* ========== Links ========== */
a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
}

a:hover {
	color: color-mix(in srgb, var(--accent-color), transparent 25%);
	text-decoration: none;
}

/* ========== Navigation & Header ========== */
nav {
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.98) 100%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.nav-link {
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 400;
	transition: color 0.3s ease;
	letter-spacing: 0.77px;
}

/* ========== Section Title & Header ========== */
.section-title {
	text-align: center;
	padding-bottom: 60px;
	position: relative;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	color: var(--text-secondary);
	max-width: 600px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.heading {
	padding: 10px;
	border-bottom: 1px solid #ddd;
	font-weight: bold;
	line-height: 40px;
	font-size:2rem;
}

.divider:after,
.divider:before {
	content: "";
	flex: 1;
	height: 1px;
	background: #eee;
}

.h-custom {
	height: calc(100% - 73px);
}

/* ========== Pricing Section ========== */
.price {
	padding: 20px;
	font-size: 50px;
	color: white;
	font-weight: bold;
	line-height: 40px;
}

.pricing-section {
	background: var(--bg-light);
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.pricing-card {
	background: var(--bg-lighter);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2.5rem;
	text-align: center;
	transition: all 0.3s;
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.pricing-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.pricing-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
}

.pricing-card.featured {
	border: 2px solid var(--primary-color);
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
	transform: scale(1.05);
	background: linear-gradient(to bottom, var(--bg-lighter), rgba(59, 130, 246, 0.02));
}

.pricing-card.featured:hover {
	transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
	position: absolute;
	top: -15px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--primary-color);
	color: white;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
}

.pricing-icon {
	font-size: 3rem;
	margin: 1rem 0 1.5rem 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border-radius: 12px;
	margin-left: auto;
	margin-right: auto;
}

.plan-name {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.plan-price {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.plan-price-period {
	font-size: 0.9rem;
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
}

.plan-features {
	list-style: none;
	margin-bottom: 2rem;
	flex-grow: 1;
	text-align: left;
	background: linear-gradient(to right, rgba(59, 130, 246, 0.05), transparent);
	padding: 1.5rem;
	border-radius: 8px;
	margin-left: -2.5rem;
	margin-right: -2.5rem;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
}

.plan-features li {
	padding: 0.75rem 0;
	border-bottom: 1px solid rgba(59, 130, 246, 0.1);
	color: var(--text-secondary);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.plan-features li:last-child {
	border-bottom: none;
}

.plan-features li::before {
	content: "✓";
	color: #10b981;
	font-weight: 700;
	font-size: 1.2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: rgba(16, 185, 129, 0.15);
	border-radius: 50%;
	flex-shrink: 0;
}

.btn-plan {
	background: var(--primary-color);
	color: white;
	border: none;
	padding: 12px 32px;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
}

.btn-plan:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

/* ========== Services Section ========== */
.services .service-item {
	background-color: var(--surface-color);
	box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
	height: 100%;
	padding: 60px 30px;
	text-align: center;
	transition: 0.3s;
	border-radius: 5px;
}

.services .service-item .icon {
	font-size: 36px;
	padding: 20px 20px;
	border-radius: 4px;
	position: relative;
	margin-bottom: 25px;
	display: inline-block;
	line-height: 0;
	transition: 0.3s;
}

.services .service-item h3 {
	font-size: 24px;
	font-weight: 700;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  content: "";
}

.services .service-item .read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 16px;
	padding: 8px 20px;
}

.services .service-item .read-more i {
	line-height: 0;
	margin-left: 5px;
	font-size: 18px;
}

/* Service Item Color Variants */
.services .service-item.item-cyan {
	border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
	color: #0dcaf0;
	background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
	color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
	background: #0dcaf0;
}

.services .service-item.item-orange {
	border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
	color: #fd7e14;
	background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
	color: #fd7e14;
}

.services .service-item.item-orange:hover {
	background: #fd7e14;
}

.services .service-item.item-teal {
	border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
	color: #20c997;
	background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
	color: #20c997;
}

.services .service-item.item-teal:hover {
	background: #20c997;
}

.services .service-item.item-red {
	border-bottom: 3px solid #df1529;
}

.services .service-item.item-red .icon {
	color: #df1529;
	background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
	color: #df1529;
}

.services .service-item.item-red:hover {
	background: #df1529;
}

.services .service-item.item-indigo {
	border-bottom: 3px solid #6610f2;
}

.services .service-item.item-indigo .icon {
	color: #6610f2;
	background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
	color: #6610f2;
}

.services .service-item.item-indigo:hover {
	background: #6610f2;
}

.services .service-item.item-pink {
	border-bottom: 3px solid #f3268c;
}

.services .service-item.item-pink .icon {
	color: #f3268c;
	background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
	color: #f3268c;
}

.services .service-item.item-pink:hover {
	background: #f3268c;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
	color: #fff;
}

.services .service-item:hover .icon {
	background: #fff;
}

/* ========== Alt Features / Help Support Section ========== */
.alt-features {
	padding: 80px 20px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.alt-features .icon-box i {
	font-size: 44px;
	line-height: 44px;
	color: var(--accent-color);
	margin-right: 15px;
}

.features-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.icon-box {
	background: white;
	padding: 24px;
	border-radius: 12px;
	border: 1px solid var(--border-color);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
}

.icon-box:hover {
	transform: translateY(-8px);
	border-color: var(--primary-color);
	box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.icon-wrapper {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.icon-wrapper svg {
	width: 32px;
	height: 32px;
	color: var(--primary-color);
	stroke-width: 1.5;
	stroke: currentColor;
	fill: none;
}

.icon-box h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--text-primary);
	margin: 0;
}

.icon-box p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0;
}

.image-wrapper {
	text-align: center;
	position: relative;
}

.image-wrapper img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.badge-popular {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--primary-color);
	color: white;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	z-index: 10;
}

.icon-box.popular {
	border: 2px solid var(--primary-color);
	background: linear-gradient(to bottom, white, rgba(59, 130, 246, 0.02));
}

/* ========== Testimonials Section ========== */
.testimonials-section {
	background: var(--bg-light);
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.testimonial-card {
	background: var(--bg-lighter);
	border-radius: 12px;
	padding: 2rem;
	border: 1px solid var(--border-color);
}

.rating {
	color: #fbbf24;
	font-size: 1rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.testimonial-text {
	color: var(--text-secondary);
	margin-bottom: 1.5rem;
	font-style: italic;
	line-height: 1.8;
}

.author-info {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--primary-color);
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}

.author-details {
	flex: 1;
}

.author-name {
	font-weight: 600;
	color: var(--text-primary);
}

.author-location {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

/* ========== FAQ Section ========== */
.faq-section {
	background: var(--bg-lighter);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid var(--border-color);
	border-radius: 8px;
	margin-bottom: 1rem;
	overflow: hidden;
}

.faq-question {
	padding: 1.5rem;
	background: var(--bg-light);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: var(--text-primary);
	transition: all 0.3s;
}

.faq-question:hover {
	background: var(--bg-lighter);
	color: var(--primary-color);
}

.faq-toggle {
	font-size: 1.2rem;
	transition: transform 0.3s;
	color: var(--primary-color);
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: var(--bg-lighter);
}

.faq-item.active .faq-answer {
	padding: 1.5rem;
	max-height: 500px;
}

.faq-answer-text {
	color: var(--text-secondary);
	line-height: 1.8;
}

/* ========== CTA Banner ========== */
.cta-banner {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 60px 20px;
	text-align: center;
	border-radius: 12px;
	margin: 60px auto;
	max-width: 1200px;
}

.cta-banner h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
	color:white;
}

.cta-banner p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
	opacity: 0.95;
}

/* ========== Footer ========== */
footer {
	background: var(--text-primary);
	color: white;
	padding: 60px 20px 20px;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-col h4 {
	margin-bottom: 1.5rem;
	font-size: 1rem;
	font-weight: 600;
	color: white;
}

.footer-col a {
	display: block;
	color: #d1d5db;
	text-decoration: none;
	margin-bottom: 0.8rem;
	font-size: 0.9rem;
	transition: color 0.3s;
}

.footer-col a:hover {
	color: white;
}

.footer-bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: #d1d5db;
	font-size: 0.9rem;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
	.features-wrapper {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.alt-features {
		padding: 50px 20px;
	}

	.section-title {
		font-size: 2rem;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.icon-box {
		padding: 16px;
	}

	.icon-wrapper {
		width: 50px;
		height: 50px;
	}

	.icon-wrapper svg {
		width: 28px;
		height: 28px;
	}

	.pricing-card.featured {
		transform: scale(1);
	}

	.pricing-card.featured:hover {
		transform: translateY(-10px);
	}

	section {
		padding: 50px 20px;
	}
}

@media (max-width: 450px) {
	.h-custom {
		height: 100%;
	}

	.section-title {
		font-size: 1.5rem;
		padding-bottom: 40px;
	}
}

/* Why Choose Us */
.why-choose-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-card {
	background: var(--bg-lighter);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 2rem;
	transition: all 0.3s;
}

.feature-card:hover {
	border-color: var(--primary-color);
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	display: inline-block;
}

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	color: var(--text-primary);
}

.feature-card p {
	color: var(--text-secondary);
	line-height: 1.8;
}


/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
	color: white;
	padding: 80px 20px 60px;
	text-align: center;
}

.hero-content {
	max-width: 700px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.95;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn-primary {
	background: white;
	color: var(--primary-color);
	padding: 14px 36px;
	font-size: 1rem;
	font-weight: 600;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
	text-decoration: none;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	background: transparent;
	color: white;
	padding: 14px 36px;
	font-size: 1rem;
	font-weight: 600;
	border: 2px solid white;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	display: inline-block;
	text-decoration: none;
}

.btn-secondary:hover {
	background: white;
	color: var(--primary-color);
	transform: translateY(-3px);
}



/* Trust Bar */
.trust-bar {
	background: var(--bg-lighter);
	padding: 40px 20px;
	border-bottom: 1px solid var(--border-color);
}

.trust-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	text-align: center;
}

.trust-stat {
	padding: 20px;
}

.trust-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
}

.trust-stat-label {
	color: var(--text-secondary);
	font-size: 0.95rem;
	font-weight: 500;
}

/* Section Styles */
section {
	padding: 80px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
	color: var(--text-primary);
}

.section-subtitle {
	text-align: center;
	color: var(--text-secondary);
	font-size: 1.1rem;
	margin-bottom: 3rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

