/**
 * Web Activated Solutions Custom Theme Styles
 * Brand: Professional, calm, with lightning bolt energy
 */

/* Brand Color Variables */
:root {
	--bolt-white: #FFFFFF;
	--activated-cyan: #00C0F8;
	--electric-blue: #0068F8;
	--signal-blue: #0058E0;
	--deep-navy: #001840;
	--midnight: #0A0E18;
	--slate-night: #303848;
}

/* Base Styles */
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Space Grotesk', 'Inter', sans-serif;
	font-weight: 700;
}

/* Custom Utility Classes */
.bg-midnight {
	background-color: var(--midnight);
}

.bg-deep-navy {
	background-color: var(--deep-navy);
}

.bg-electric-blue {
	background-color: var(--electric-blue);
}

.bg-surface {
	background-color: #F8F9FA;
}

.text-midnight {
	color: var(--midnight);
}

.text-deep-navy {
	color: var(--deep-navy);
}

.text-electric-blue {
	color: var(--electric-blue);
}

.text-cyan-400 {
	color: var(--activated-cyan);
}

.text-cyan-600 {
	color: #0891B2;
}

.text-on-surface {
	color: #1F2937;
}

.border-cyan-400\/10 {
	border-color: rgba(0, 192, 248, 0.1);
}

.border-cyan-400\/20 {
	border-color: rgba(0, 192, 248, 0.2);
}

/* Gradient Text */
.text-gradient {
	background: linear-gradient(135deg, var(--electric-blue) 0%, var(--activated-cyan) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

/* Mobile Menu Styles */
#mobile-menu {
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

#mobile-menu.hidden {
	opacity: 0;
	visibility: hidden;
}

#mobile-menu:not(.hidden) {
	opacity: 1;
	visibility: visible;
}

/* Smooth Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--electric-blue);
	outline-offset: 2px;
}

/* Loading State */
.loading {
	pointer-events: none;
	opacity: 0.6;
}

/* Material Symbols Configuration */
.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Ensure proper spacing for content after fixed header */
main {
	min-height: calc(100vh - 80px);
}

/* Print Styles */
@media print {
	header,
	footer,
	.no-print {
		display: none !important;
	}
}

/* Custom Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--midnight);
}

::-webkit-scrollbar-thumb {
	background: var(--electric-blue);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--activated-cyan);
}

/* Image Optimization */
img {
	max-width: 100%;
	height: auto;
}

/* Accessibility */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

/* Smooth scroll for anchor links */
html {
	scroll-behavior: smooth;
}

/* Form Input Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
	appearance: none;
}

/* Button Reset */
button {
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
	font: inherit;
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background: #25D366;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: all 0.3s ease;
}

.whatsapp-float:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	background: #20BA5A;
}

.whatsapp-float:active {
	transform: scale(0.95);
}

@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 15px;
		right: 15px;
		width: 56px;
		height: 56px;
	}
}
