/* ============================================
   ZOHO BILLING STYLE - HOME PAGE STYLES
   ============================================ */

/* Color Variables - Zoho Inspired */
:root {
	--primary-color: #1565c0;
	--primary-dark: #0d47a1;
	--primary-light: #1976d2;
	--secondary-color: #00acc1;
	--success-color: #43a047;
	--text-dark: #212121;
	--text-gray: #616161;
	--text-light: #9e9e9e;
	--bg-light: #f5f7fa;
	--bg-white: #ffffff;
	--border-color: #e0e0e0;
	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	background-color: var(--bg-white);
}

/* Top Bar Styles */
.top-bar {
	background-color: var(--text-dark);
	color: var(--bg-white);
	padding: 8px 0;
	font-size: 0.875rem;
}

	.top-bar a {
		color: var(--bg-white);
		text-decoration: none;
		transition: color 0.3s ease;
	}

		.top-bar a:hover {
			color: var(--secondary-color);
		}

.top-bar-left a {
	font-size: 0.85rem;
}

.top-bar-right a {
	margin-left: 15px;
	font-size: 1rem;
}

/* Main Header & Navigation */
.main-header {
	background-color: var(--bg-white);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar {
	padding: 1rem 0;
}

.navbar-brand {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--primary-color) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
	transition: transform 0.3s ease;
}

	.navbar-brand:hover {
		transform: scale(1.05);
}

.brand-name {
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	font-size: 1rem;
	padding: 0.5rem 1rem !important;
	margin: 0 0.25rem;
	transition: all 0.3s ease;
	position: relative;
}

	.nav-link::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 2px;
		background-color: var(--primary-color);
		transform: translateX(-50%);
		transition: width 0.3s ease;
	}

	.nav-link:hover:: after,
	.nav-link. active::after {
		width: 80%;
	}

	.nav-link:hover {
		color: var(--primary-color) !important;
	}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, #e3f2fd 0%, #f5f7fa 100%);
	padding: 80px 0 100px 0;
	overflow: hidden;
}

.hero-content {
	padding: 20px 0;
}

.hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--text-dark);
	line-height: 1.3;
	margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.35rem;
	color: var(--text-gray);
	margin-bottom: 2rem;
}

.hero-buttons . btn {
	padding: 14px 32px;
	font-size: 1.1rem;
	font-weight: 600;
    border-radius: 6px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

	.btn-primary:hover {
		background-color: var(--primary-dark);
		border-color: var(--primary-dark);
		transform: translateY(-2px);
		box-shadow: var(--shadow-md);
	}

.btn-outline-primary {
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
	background-color: transparent;
}

	.btn-outline-primary:hover {
		background-color: var(--primary-color);
		color: var(--bg-white);
		transform: translateY(-2px);
		box-shadow: var(--shadow-md);
	}

.hero-features {
    display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.feature-badge {
	color: var(--success-color);
	font-size: 0.95rem;
	font-weight: 500;
}

	.feature-badge i {
		margin-right: 8px;
	}

.hero-image {
	animation: float 6s ease-in-out infinite;
}

	. hero-image img {
		max-width: 100%;
		height: auto;
		filter: drop-shadow(var(--shadow-lg));
	}

@keyframes float {
	0%, 100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

/* Features Section */
.features-section {
	padding: 80px 0;
	background-color: var(--bg-white);
}

.section-header {
	margin-bottom: 60px;
}

.section-title {
	font-size: 2.5rem;
        font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 1rem;
    }

.section-subtitle {
	font-size: 1.2rem;
	color: var(--text-gray);
    }

.feature-card {
	background-color: var(--bg-white);
	border: 1px solid var(--border-color);
	border-radius: 12px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
}

	. feature-card:hover {
		transform: translateY(-10px);
		box-shadow: var(--shadow-lg);
		border-color: var(--primary-light);
}

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
	border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: var(--bg-white);
	transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
	transform: scale(1.1) rotate(5deg);
}

.feature-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 1rem;
}

.feature-description {
	font-size: 1rem;
	color: var(--text-gray);
	line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.benefits-list {
	list-style: none;
	padding: 0;
	margin-top: 2rem;
}

	.benefits-list li {
		font-size: 1.1rem;
		color: var(--text-gray);
		padding: 15px 0;
		border-bottom: 1px solid var(--border-color);
	}

		.benefits-list li:last-child {
			border-bottom: none;
		}

	.benefits-list i {
		color: var(--success-color);
		font-size: 1.3rem;
		margin-right: 15px;
	}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	padding: 80px 0;
	color: var(--bg-white);
}

.cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.cta-subtitle {
	font-size: 1.3rem;
	margin-bottom: 2.5rem;
	opacity: 0.95;
}

.cta-section . btn-light {
	background-color: var(--bg-white);
	color: var(--primary-color);
	padding: 14px 40px;
	font-size: 1.1rem;
	font-weight: 600;
	border: none;
    border-radius: 6px;
}

	.cta-section .btn-light:hover {
		background-color: var(--bg-light);
		transform: translateY(-3px);
		box-shadow: var(--shadow-lg);
	}

/* Footer Styles */
.main-footer {
	background-color: #1a1a1a;
	color: #b0b0b0;
	padding: 60px 0 30px 0;
}

.footer-widget {
	margin-bottom: 30px;
}

.footer-title {
	color: var(--bg-white);
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

. footer-description {
	font-size: 0.95rem;
	line-height: 1.8;
	color: #b0b0b0;
}

. footer-links {
	list-style: none;
	padding: 0;
}

	.footer-links li {
		margin-bottom: 12px;
	}

	.footer-links a {
		color: #b0b0b0;
    text-decoration: none;
		font-size: 0.95rem;
		transition: all 0.3s ease;
}

		.footer-links a:hover {
			color: var(--primary-light);
			padding-left: 5px;
    }

.social-links a {
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	/*background-color: rgba(255, 255, 255, 0.1);*/
	color: var(--bg-white);
	border-radius: 50%;
	margin-right: 10px;
	transition: all 0.3s ease;
	font-size: 1.1rem;
}

	.social-links a:hover {
		background-color: var(--primary-color);
		transform: translateY(-3px);
}

.footer-divider {
	border-color: rgba(255, 255, 255, 0.1);
	margin: 40px 0 30px 0;
}

. footer-copyright {
	font-size: 0.9rem;
	color: #808080;
	margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
	.hero-title {
		font-size: 2.25rem;
}

	.hero-subtitle {
		font-size: 1.15rem;
}

	. section-title {
		font-size: 2rem;
}

	.hero-section {
		padding: 60px 0;
    }

	.features-section,
	.benefits-section,
	.cta-section {
		padding: 60px 0;
}
/* Hero section added for dashboard landing */

	. hero-buttons .btn {
		display: block;
		margin-bottom: 15px;
		margin-left: 0 !important;
	}
}

@media (max-width: 767px) {
	.hero-title {
		font-size: 1.85rem;
}

	. hero-subtitle {
		font-size: 1rem;
}

	.section-title {
		font-size: 1.75rem;
}

	. cta-title {
		font-size: 1.85rem;
    }

	. top-bar-left,
	.top-bar-right {
		text-align: center !important;
		margin-bottom: 5px;
        }

	.feature-card {
		padding: 30px 20px;
        }
}
.pricing-summary-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.plan-period {
    font-size: 13px;
    opacity: 0.9;
}

.badge-selected {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.card-body {
    padding: 20px;
}

.section-title {
    font-size: 14px;
    margin: 15px 0 10px;
    color: #4b5563;
    font-weight: 600;
}

.price-row,
.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.price-row.base {
    font-size: 16px;
    font-weight: 500;
}

.price-row.total {
    font-size: 18px;
    color: #111827;
}

.feature-name {
    color: #374151;
}

.feature-value {
    font-weight: 500;
    color: #111827;
}

.extra-price {
    color: #16a34a;
    font-size: 12px;
    margin-left: 6px;
}

.divider {
    border-top: 1px solid #e5e7eb;
    margin: 15px 0;
}

.card-footer {
    padding: 18px;
    background: #f9fafb;
    text-align: center;
}

.btn-primary {
    padding: 14px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.btn-primary:hover {
    background: #4338ca;
}

.note {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
}
