/* =========================================================================
   LocalSurge Consulting — Brand tokens & utilities
   Ported 1:1 from the original Hostinger Horizons build (src/index.css).
   Add any of these class names in an Elementor element's Advanced > CSS Classes
   field to apply the effect. Colors are also available as CSS variables.
   ========================================================================= */

:root {
	--ls-primary: #0e5149;
	--ls-primary-light: #10635a;
	--ls-primary-dark: #0a3e37;
	--ls-accent: #16a085;
	--ls-background: #ffffff;
	--ls-foreground: #1a1a1a;
	--ls-muted: #f8f9fa;
	--ls-muted-foreground: #6b7280;
	--ls-border: #e5e7eb;
	--ls-radius: 0.5rem;
}

/* Base font — matches the original Poppins default. Hello Elementor respects
   Elementor's global fonts, so this is a safety net for non-Elementor areas. */
body,
button,
input,
textarea,
select {
	font-family: 'Poppins', sans-serif;
}

/* ---- Gradient headline text (use on a heading or an inner <span>) -------- */
.gradient-text {
	background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* ---- Soft hero background wash ------------------------------------------- */
.hero-gradient {
	background: linear-gradient(135deg, rgba(14, 81, 73, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* ---- Card hover lift (add to any Elementor container/column) ------------- */
.card-hover {
	transition: all 0.3s ease;
}
.card-hover:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(14, 81, 73, 0.1);
}

/* ---- Primary button look ------------------------------------------------- */
.btn-primary,
.btn-primary .elementor-button {
	background: var(--ls-primary) !important;
	color: #ffffff !important;
	transition: all 0.3s ease;
}
.btn-primary:hover,
.btn-primary .elementor-button:hover {
	background: var(--ls-primary-dark) !important;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(14, 81, 73, 0.3);
}

/* ---- Outline button look (teal border, fills on hover) ------------------- */
.btn-outline .elementor-button,
.btn-outline.elementor-button {
	background: transparent !important;
	color: var(--ls-primary) !important;
	border: 2px solid var(--ls-primary) !important;
	transition: all 0.3s ease;
}
.btn-outline .elementor-button:hover,
.btn-outline.elementor-button:hover {
	background: var(--ls-primary) !important;
	color: #ffffff !important;
}

/* ---- Icon-box gradient tile (the 64x64 teal rounded square) -------------- */
.ls-icon-tile {
	width: 4rem;
	height: 4rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
	color: #ffffff;
}

/* ---- "Result" success pill used on case cards --------------------------- */
.ls-result {
	background: #dcfce7;
	color: #166534;
	padding: 0.75rem;
	border-radius: var(--ls-radius);
	font-weight: 600;
}

/* ---- Section padding helper (5rem / 3rem on mobile) --------------------- */
.section-padding {
	padding: 5rem 0;
}
@media (max-width: 768px) {
	.section-padding {
		padding: 3rem 0;
	}
}

/* ---- Sticky translucent header ------------------------------------------ */
.sticky-header {
	backdrop-filter: blur(10px);
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid rgba(14, 81, 73, 0.1);
}

/* ---- Float animation ---------------------------------------------------- */
.animate-float {
	animation: ls-float 6s ease-in-out infinite;
}
@keyframes ls-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

/* =========================================================================
   Marquee (the teal contact bar + the logo slider)
   ========================================================================= */

/* Wrapper: put this on the outer element and set overflow hidden. */
.ls-marquee {
	overflow: hidden;
	width: 100%;
}
/* Track: the flex row that actually scrolls. Duplicate your items once
   inside it so the loop is seamless. */
.ls-marquee__track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	width: max-content;
	animation: ls-marquee 40s linear infinite;
}
.ls-marquee__track:hover {
	animation-play-state: paused;
}
@keyframes ls-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* Teal top contact bar */
.ls-topbar {
	background: var(--ls-primary);
	color: #ffffff;
	height: 40px;
	display: flex;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 500;
}
.ls-topbar .ls-marquee__track > span {
	display: inline-flex;
	align-items: center;
	margin: 0 1.5rem;
}
