/* =====================================================
   LEAD CAPTURE & CTA STYLES - Elan The Statement
   ===================================================== */

/* Lead Capture Form Widget */
.widget-lead-form {
	background: linear-gradient(135deg, var(--color-accent, #b79b6f) 0%, #9a7f5a 100%);
	border-radius: 12px;
	padding: 1.5rem;
	color: #fff;
	margin-bottom: 1.5rem;
}
.widget-lead-form h4 {
	color: #fff;
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 600;
}
.widget-lead-form .form-subtitle {
	font-size: 0.85rem;
	opacity: 0.9;
	margin-bottom: 1rem;
}
.widget-lead-form input,
.widget-lead-form select {
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 0.75rem;
	border: none;
	border-radius: 6px;
	font-size: 0.9rem;
	background: #fff;
	color: #333;
}
.widget-lead-form input::placeholder {
	color: #888;
}
.widget-lead-form input:focus,
.widget-lead-form select:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}
.widget-lead-form button {
	width: 100%;
	padding: 0.85rem;
	background: #fff;
	color: var(--color-accent, #b79b6f);
	border: none;
	border-radius: 6px;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.95rem;
	transition: transform 0.2s, box-shadow 0.2s;
}
.widget-lead-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.widget-lead-form .form-trust {
	margin-top: 0.75rem;
	font-size: 0.75rem;
	opacity: 0.85;
	text-align: center;
}

/* Floating CTA Buttons (Desktop) */
.floating-ctas {
	position: fixed;
	bottom: 24px;
	right: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 1000;
}
.floating-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	transition: transform 0.2s, box-shadow 0.2s;
}
.floating-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.25);
	color: #fff;
}
.floating-btn svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.floating-btn.whatsapp {
	background: #25D366;
}
.floating-btn.call {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
	z-index: 1000;
	padding: 12px 16px;
}
.mobile-bottom-bar .bar-inner {
	display: flex;
	gap: 10px;
	max-width: 600px;
	margin: 0 auto;
}
.mobile-bottom-bar a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
}
.mobile-bottom-bar .btn-whatsapp {
	background: #25D366;
	color: #fff;
}
.mobile-bottom-bar .btn-call {
	background: var(--color-accent, #b79b6f);
	color: #fff;
}
.mobile-bottom-bar svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
	.floating-ctas {
		display: none;
	}
	.mobile-bottom-bar {
		display: block;
	}
	body {
		padding-bottom: 80px;
	}
}

/* Trust Badges */
.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 1rem 0;
}
.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 0.75rem;
	background: var(--color-background-200, #f5f5f5);
	border-radius: 6px;
	font-size: 0.8rem;
	font-weight: 500;
}
.trust-badge svg {
	width: 16px;
	height: 16px;
	color: var(--color-accent, #b79b6f);
}

/* Urgency Banner */
.urgency-banner {
	background: linear-gradient(90deg, #ff6b6b 0%, #ee5a5a 100%);
	color: #fff;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
.urgency-banner strong {
	font-weight: 700;
}

/* Quick Actions Widget */
.widget-quick-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.quick-action-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem;
	background: var(--color-background-200, #f5f5f5);
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	transition: background 0.2s, transform 0.2s;
}
.quick-action-btn:hover {
	background: var(--color-background-300, #eee);
	transform: translateX(4px);
}
.quick-action-btn svg {
	width: 24px;
	height: 24px;
	color: var(--color-accent, #b79b6f);
}
.quick-action-btn .action-text {
	flex: 1;
}
.quick-action-btn .action-title {
	font-weight: 600;
	display: block;
}
.quick-action-btn .action-subtitle {
	font-size: 0.8rem;
	opacity: 0.7;
}

/* Widget Contact Section */
.widget-contact {
	background: var(--color-background-200, #f8f6f3);
	border-radius: 12px;
	padding: 1.25rem;
	margin-bottom: 1.5rem;
}
.widget-contact-content {
	font-size: 0.9rem;
	line-height: 1.6;
}
.widget-contact-content p {
	margin: 0.35rem 0;
}
.widget-contact-content a {
	color: var(--color-accent, #b79b6f);
	text-decoration: none;
}
.widget-contact-content a:hover {
	text-decoration: underline;
}
.widget-contact-content .rera-note {
	margin-top: 0.75rem;
	padding-top: 0.75rem;
	border-top: 1px solid rgba(0,0,0,0.1);
	font-size: 0.8rem;
	color: var(--color-foreground-300, #666);
}

/* Widget Heading */
.widget-heading {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 1rem;
	color: var(--color-foreground, #333);
}
.widget-heading svg {
	width: 24px;
	height: 24px;
	color: var(--color-accent, #b79b6f);
}

/* Sidebar Widgets Container */
.sidebar-widgets {
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Widget Base */
.widget {
	margin-bottom: 1.5rem;
}

/* Dark mode adjustments */
[data-color-scheme="dark"] .widget-contact {
	background: var(--color-background-200, #1a1a2e);
}
[data-color-scheme="dark"] .widget-contact-content .rera-note {
	border-top-color: rgba(255,255,255,0.1);
}

/* Site Footer Styles for Internal Pages */
.site-footer {
	border-top: 1px solid var(--color-border, rgba(0,0,0,0.1));
	padding: 2rem 0 1.5rem;
	margin-top: 3rem;
}
.site-footer .footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 1.5rem;
}
.site-footer .footer-section h3,
.site-footer .footer-section h4 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: var(--color-foreground, #333);
}
.site-footer .footer-section p {
	margin: 0.35rem 0;
	font-size: 0.9rem;
	color: var(--color-secondary, #666);
}
.site-footer .footer-section a {
	color: var(--color-accent, #b79b6f);
	text-decoration: none;
}
.site-footer .footer-section a:hover {
	text-decoration: underline;
}
.site-footer .footer-rera {
	font-size: 0.8rem;
	color: var(--color-secondary, #888);
	margin-top: 0.5rem;
}
.site-footer .footer-bottom {
	padding-top: 1rem;
	border-top: 1px solid var(--color-border, rgba(0,0,0,0.1));
	font-size: 0.8rem;
	color: var(--color-secondary, #888);
	text-align: center;
}

/* Hide site-footer on desktop when sidebar-widgets visible */
@media (min-width: 860px) {
	.site-footer {
		display: none;
	}
}

/* Breadcrumbs Styles */
.breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0;
	font-size: 0.85rem;
	color: var(--color-secondary, #666);
	border-bottom: 1px solid var(--color-border, rgba(0,0,0,0.1));
	margin-bottom: 1.5rem;
}
.breadcrumbs .home-icon {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--color-secondary, #666);
	text-decoration: none;
}
.breadcrumbs .home-icon:hover {
	color: var(--color-accent, #b79b6f);
}
.breadcrumbs .home-icon svg {
	width: 16px;
	height: 16px;
}
.breadcrumbs .separator {
	color: var(--color-secondary, #888);
}
.breadcrumbs .current {
	color: var(--color-foreground, #333);
	font-weight: 500;
}

/* Post/Content Page Styles */
.post-full .post-title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 1rem;
}
.post-full .post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}
.post-full .tag {
	display: inline-block;
	padding: 0.35rem 0.75rem;
	background: var(--color-background-200, #f5f5f5);
	border-radius: 4px;
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--color-secondary, #666);
}
.post-full .tag-primary {
	background: var(--color-accent, #b79b6f);
	color: #fff;
}
.post-full .post-media {
	margin: 1.5rem 0;
	border-radius: 8px;
	overflow: hidden;
}
.post-full .post-media img {
	width: 100%;
	height: auto;
	display: block;
}
.post-full .post-content h2 {
	font-size: 1.35rem;
	font-weight: 600;
	margin: 2rem 0 1rem;
	color: var(--color-foreground, #333);
}
.post-full .post-content p {
	line-height: 1.7;
	margin-bottom: 1rem;
}

/* Feature Grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0;
}
.feature-card {
	padding: 1.25rem;
	background: var(--color-background-200, #f8f6f3);
	border-radius: 8px;
	border-left: 3px solid var(--color-accent, #b79b6f);
}
.feature-card h3 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	color: var(--color-foreground, #333);
}
.feature-card p {
	font-size: 0.9rem;
	color: var(--color-secondary, #666);
	margin: 0;
	line-height: 1.5;
}

/* Feature List */
.feature-list {
	list-style: none;
	padding: 0;
	margin: 1rem 0;
}
.feature-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	line-height: 1.5;
}
.feature-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--color-accent, #b79b6f);
	font-weight: 600;
}

/* CTA Cards */
.cta-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1rem;
	margin: 2rem 0;
}
.post-card {
	padding: 1.25rem;
	background: linear-gradient(135deg, var(--color-accent, #b79b6f) 0%, #9a7f5a 100%);
	border-radius: 8px;
	text-decoration: none;
	transition: transform 0.2s;
}
.post-card:hover {
	transform: translateY(-2px);
}
.post-card h4 {
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}
.post-card p {
	color: rgba(255,255,255,0.9);
	font-size: 0.85rem;
	margin: 0;
}

/* Dark Mode for Site Footer */
[data-color-scheme="dark"] .site-footer {
	border-top-color: rgba(255,255,255,0.1);
}
[data-color-scheme="dark"] .site-footer .footer-bottom {
	border-top-color: rgba(255,255,255,0.1);
}
[data-color-scheme="dark"] .breadcrumbs {
	border-bottom-color: rgba(255,255,255,0.1);
}
[data-color-scheme="dark"] .feature-card {
	background: var(--color-background-200, #1e1e2e);
}
