
/* Pricing Section */
.pricing {
	padding: 100px 0;
	background-color: white;
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	background: linear-gradient(135deg, #444246 0%, #0d222d 100%);
}

#pricing .section-title {
	text-align: center;
	margin-bottom: 60px;
}

#pricing .section-title h2 {
	font-size: 2.5rem;
	/*color: #09f4f4;*/
	margin-bottom: 15px;
}

#pricing .section-title p {
	font-size: 1.1rem;
	color: #e6e0e0;
	max-width: 700px;
	margin: 0 auto;
}

.pricing-toggle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
	margin-bottom: 50px;
}

.toggle-label {
	font-weight: 600;
	color: white;
}

.toggle-switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 30px;
}

.toggle-switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .4s;
	border-radius: 34px;
}

.toggle-slider:before {
	position: absolute;
	content: "";
	height: 22px;
	width: 22px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	transition: .4s;
	border-radius: 50%;
}

input:checked + .toggle-slider {
	background-color: var(--accent);
}

input:checked + .toggle-slider:before {
	transform: translateX(30px);
}

.discount-badge {
	background: var(--warning);
	color: var(--dark);
	padding: 3px 8px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-left: 10px;
}

.pricing-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-bottom: 50px;
}

.pricing-card {
	background: white;
	border-radius: 10px;
	padding: 40px 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s;
	position: relative;
	border: 1px solid #eee;
	/*z-index: 2000;*/
}

.pricing-card.popular {
	border: 2px solid var(--accent);
	transform: scale(1.05);
	box-shadow: 0 10px 30px rgba(74, 144, 226, 0.15);
}

.pricing-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular:hover {
	transform: scale(1.05) translateY(-10px);
}

.popular-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent);
	color: white;
	padding: 5px 20px;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.plan-name {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 10px;
}

.plan-description {
	color: #666;
	margin-bottom: 20px;
	min-height: 60px;
}

.plan-price {
	margin-bottom: 25px;
}

.price-amount {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--primary);
}

.price-period {
	color: #666;
	font-size: 1rem;
}

.price-note {
	font-size: 0.9rem;
	color: #888;
	margin-top: 5px;
}

.plan-features {
	list-style: none;
	margin-bottom: 30px;
}

.plan-features li {
	margin-bottom: 12px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.plan-features i {
	color: var(--success);
	margin-top: 3px;
	flex-shrink: 0;
}

.feature-included {
	color: #333;
}

.feature-excluded {
	color: #ccc;
}

.feature-excluded i {
	color: #ccc;
}

.pricing-btn {
	width: 100%;
	padding: 15px;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s;
	border: none;
	font-size: 1rem;
}

.btn-primary {
	background: var(--accent);
	color: white;
}

.btn-primary:hover {
	background: #3a7fd8;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-btn.btn-outline {
	background: transparent;
	border: 2px solid rgb(0, 128, 128);
	color: var(--accent);
}

.pricing-btn.btn-outline:hover {
	background: rgb(0, 128, 128);
	color: white;
	transform: translateY(-2px);
}

.btn-enterprise {
	background: var(--enterprise);
	color: white;
}

.btn-enterprise:hover {
	background: #5e35b1;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Payment Modal Styles */
.payment-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	overflow-y: auto;
}

.payment-modal-content {
	background: white;
	margin: 50px auto;
	border-radius: 12px;
	max-width: 600px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

#paymentModal .modal-header {
	background: linear-gradient(135deg, var(--primary), #1e3a8a);
	color: white;
	padding: 1.5rem;
	border-radius: 12px 12px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#paymentModal .modal-header h3 {
	margin: 0;
	font-size: 1.5rem;
}

#paymentModal .close-modal {
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
}

#paymentModal .modal-body {
	padding: 2rem;
}

.modal-body .text-center {
  text-align: center !important;
}

.modal-body .mb-2 {
  margin-bottom: .5rem !important;
}

.modal-body .me-2 {
  margin-right: .5rem !important;
  font-size: 1.25rem;
}

@media (min-width: 1200px){
	.modal-body .mb-2 {
		font-size: 1.5rem;
		margin-top: 0;
		margin-bottom: .5rem;
		font-weight: 500;
		line-height: 1.2;
		color: var(--bs-heading-color);
	}
  }

.modal-body .text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.modal-body .mb-3 {
  margin-bottom: 1rem !important;
}

.modal-body .mb-3 span {
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 1.2;
	color: var(--bs-heading-color);
}

.modal-body .mb-4 {
  margin-bottom: 1.5rem !important;
}

.modal-body .mb-3 {
  margin-bottom: 1rem !important;
}

.g-3,.gy-3 {
  --bs-gutter-y: 1rem;
}
.modal-body .g-3, .modal-body .gx-3 {
  --bs-gutter-x: 1rem;
}
.modal-body .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}

.modal-body .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

 @media (min-width: 768px){
	.modal-body .col-md-6 {
	  flex: 0 0 auto;
	  width: 50%;
	}
 }
 
.modal-body .form-label {
  margin-bottom: .5rem;
  display: inline-block;
}

.modal-body .form-control {
	padding: .6rem .75rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s;
	border: 1px solid rgb(3, 128, 128);
	
}

.modal-body .d-grid {
  display: grid !important;
}

.modal-body [type="submit"]:not(:disabled), button:not(:disabled) {
  cursor: pointer;
}

.modal-body .btn-group-lg > .btn, .modal-body .btn-lg {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 1.25rem;
  --bs-btn-border-radius: var(--bs-border-radius-lg);
}
.modal-body .btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #0a58ca;
  --bs-btn-active-border-color: #0a53be;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}



/*Bootstrap css for modal */


/******************************/




.stripe-element {
	padding: 0.75rem;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	background: white;
	transition: all 0.3s ease;
}

.stripe-element--focus {
	border-color: var(--accent);
	box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
}

.stripe-element--invalid {
	border-color: #dc3545;
}

.security-badges {
	text-align: center;
	padding: 1rem;
	background: var(--light);
	border-radius: 8px;
	margin-top: 1rem;
}

.loading-spinner {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border: 2px solid transparent;
	border-top: 2px solid currentColor;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.faq-section {
	margin-top: 80px;
}

.faq-title {
	text-align: center;
	font-size: 2rem;
	color: white;
	margin-bottom: 40px;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 30px;
}

.faq-item {
	background: white;
	border-radius: 10px;
	padding: 25px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-answer {
	color: #666;
	line-height: 1.6;
	display: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.faq-toggle {
	color: var(--accent);
	transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
	transform: rotate(180deg);
}

.contact-sales {
	text-align: center;
	margin-top: 50px;
	padding: 40px;
	background: rgba(28, 4, 34, 0.79);
	border-radius: 10px;
	color: white;
}

.contact-sales h3 {
	font-size: 1.8rem;
	color: white;
	margin-bottom: 15px;
}

.contact-sales p {
	color: #e6e0e0;
	margin-bottom: 25px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}


/* Responsive Design */
@media (max-width: 992px) {
	.pricing-cards {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.pricing-card.popular {
		transform: scale(1);
	}
	
	.pricing-card.popular:hover {
		transform: translateY(-10px);
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.pricing {
		padding: 60px 0;
	}
	
	#pricing .section-title h2 {
		font-size: 2rem;
	}
	
	.price-amount {
		font-size: 2rem;
	}
	
	.faq-grid {
		grid-template-columns: 1fr;
	}
	
	.payment-modal-content {
		margin: 20px;
		width: calc(100% - 40px);
	}

}