/* ============================================
   CAÇA VAZAMENTOS HG - Premium Design System
   Modern, Elegant & Water-Inspired CSS
   ============================================ */

/* CSS Variables - Extended Color System */
:root {
	--gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-gradientPrimaryEnd) 100%);
	--gradient-dark: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-gradientDarkEnd) 100%);
	--gradient-gold: linear-gradient(135deg, var(--color-gradientGoldStart) 0%, var(--color-gradientGoldMid) 50%, var(--color-gradientGoldEnd) 100%);
	--gradient-water: linear-gradient(135deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
	--gradient-ocean: linear-gradient(180deg, #0c4a6e 0%, #082f49 100%);
	--gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
	--shadow-soft: 0 4px 20px var(--color-shadowColor);
	--shadow-medium: 0 10px 40px rgba(0, 0, 0, 0.15);
	--shadow-strong: 0 25px 80px rgba(0, 0, 0, 0.25);
	--shadow-glow: 0 0 50px var(--color-glowColor);
	--shadow-float: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.1);
	--shadow-neon: 0 0 20px currentColor, 0 0 40px currentColor;
	--border-radius-sm: 12px;
	--border-radius-md: 20px;
	--border-radius-lg: 28px;
	--border-radius-xl: 50px;
	--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Base Reset & Typography */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

html, body {
	overflow-x: hidden;
}

body {
	font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.7;
	min-width: 320px;
	position: relative;
	background: linear-gradient(180deg, var(--color-bgBodyStart) 0%, var(--color-bgBodyEnd) 100%);
	color: var(--color-textMain);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Selection Styling */
::selection {
	background: var(--color-primary);
	color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 20px;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.15;
}

strong {
	font-weight: 700;
	color: var(--color-primary);
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-fast);
}

img {
	max-width: 100%;
	height: auto;
}

/* Container */
.container {
	max-width: 1280px;
	padding: 0 32px;
	margin: 0 auto;
}

/* Form Elements */
input, textarea {
	background-color: var(--color-light);
	font-family: 'Montserrat', sans-serif;
	border: 2px solid transparent;
	transition: var(--transition-smooth);
	border-radius: var(--border-radius-md);
	padding: 16px 20px;
}

input:focus, textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 4px rgba(0, 0, 128, 0.15), 0 10px 30px rgba(0, 0, 128, 0.1);
	transform: translateY(-2px);
}

input::placeholder, 
textarea::placeholder {
	color: var(--color-textMuted);
}

/* ============================================
   TYPOGRAPHY SYSTEM
   ============================================ */

.def-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	position: relative;
	margin-bottom: 35px;
	line-height: 1.15;
	color: var(--color-secondary);
	letter-spacing: -0.04em;
	text-wrap: balance;
}

.def-title::before {
	content: '';
	height: 5px;
	width: 70px;
	position: absolute;
	top: -25px;
	left: 0;
	background: var(--gradient-primary);
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 128, 0.3);
}

.center-title {
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	color: var(--color-black);
	text-align: center;
	margin-bottom: 60px;
	letter-spacing: -0.04em;
	position: relative;
	text-wrap: balance;
}

.center-title::after {
	content: '';
	height: 5px;
	width: 100px;
	background: var(--gradient-primary);
	display: block;
	margin: 25px auto 0 auto;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0, 0, 128, 0.3);
}

.color-white {
	color: var(--color-white) !important;
}

.center-title.color-white::after {
	background: linear-gradient(90deg, transparent 0%, var(--color-white) 30%, var(--color-white) 70%, transparent 100%);
	box-shadow: 0 2px 20px rgba(255, 255, 255, 0.5);
}

.def-desc {
	color: var(--color-textMain);
	font-size: 17px;
	line-height: 2;
	font-weight: 400;
}

.def-desc strong {
	color: var(--color-primary);
	font-weight: 700;
}

/* Primary Button */
.def-btn {
	background: var(--gradient-primary);
	padding: 20px 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	transition: var(--transition-bounce);
	font-size: 14px;
	font-weight: 700;
	color: var(--color-white);
	border-radius: var(--border-radius-xl);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	position: relative;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 128, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
	border: none;
	cursor: pointer;
}

.def-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
	transition: var(--transition-smooth);
}

.def-btn::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%);
	pointer-events: none;
}

.def-btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 15px 50px rgba(0, 0, 128, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

.def-btn:hover::before {
	left: 100%;
}

.def-btn:active {
	transform: translateY(-2px) scale(0.98);
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header-top {
	background: var(--gradient-dark);
	color: var(--color-white);
	padding: 24px 0 70px 0;
	font-size: 14px;
	position: relative;
	overflow: hidden;
}

.header-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 0, 128, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse 60% 40% at 80% 60%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.header-top::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
}

.header-row {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.header-right {
	display: flex;
	column-gap: 50px;
	margin-left: auto;
}

.header-info {
	display: flex;
	align-items: center;
	opacity: 0.85;
	transition: var(--transition-smooth);
	padding: 10px 18px;
	border-radius: var(--border-radius-md);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.header-info:hover {
	opacity: 1;
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-info span[id$="-icon"] {
	margin-right: 14px;
	font-size: 22px;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.header-social {
	display: flex;
	align-items: center;
	column-gap: 16px;
}

.header-social a {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	transition: var(--transition-bounce);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-social a:hover {
	background: var(--color-primary);
	transform: translateY(-4px) scale(1.1);
	box-shadow: 0 10px 30px rgba(0, 0, 128, 0.4);
	border-color: transparent;
}

/* Header Bottom - Navigation Bar */
.header-bottom {
	position: absolute;
	z-index: 1000;
	top: 80px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1200px;
	width: calc(100% - 64px);
}

.header-bottom-row {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	color: var(--color-secondary);
	box-shadow: var(--shadow-float);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.header-logo {
	background: var(--gradient-primary);
	padding: 24px 60px 24px 35px;
	display: flex;
	align-items: center;
	clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
	position: relative;
	transition: var(--transition-smooth);
}

.header-logo::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 40%);
	pointer-events: none;
}

.header-logo::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.1) 100%);
	pointer-events: none;
}

.header-logo a {
	display: flex;
	position: relative;
	z-index: 1;
}

.header-logo img {
	max-width: 160px;
	filter: brightness(0) invert(1);
	transition: var(--transition-smooth);
}

.header-nav {
	padding: 12px 45px;
	margin-left: auto;
}

.header-nav ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	column-gap: 45px;
	margin: 0;
}

.header-nav ul li a {
	font-weight: 600;
	font-size: 14px;
	position: relative;
	padding: 10px 0;
	display: inline-block;
	letter-spacing: 0.02em;
	transition: var(--transition-smooth);
}

.header-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 3px;
	background: var(--gradient-primary);
	transition: var(--transition-smooth);
	border-radius: 10px;
}

.header-nav ul li a:hover {
	color: var(--color-primary);
}

.header-nav ul li a:hover::after {
	width: 100%;
}

/* Fixed Header State */
.header-bottom.is-fixed {
	position: fixed;
	top: 15px;
	width: calc(100% - 64px);
	animation: slideDownNav 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDownNav {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

.header-bottom.is-fixed .header-bottom-row {
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.header-bottom.is-fixed .header-logo {
	padding: 18px 50px 18px 28px;
}

.header-bottom.is-fixed .header-logo img {
	max-width: 130px;
}

.header-bottom.is-fixed .header-nav {
	padding: 0 45px;
}

/* Go Up Button */
.go-up {
	position: fixed;
	left: 30px;
	bottom: 30px;
	z-index: 99;
	opacity: 0;
	transform: translateY(20px);
	transition: var(--transition-smooth);
	pointer-events: none;
}

.go-up.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.go-up a {
	background: var(--gradient-primary);
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: var(--transition-bounce);
	font-size: 24px;
	text-decoration: none;
	color: white;
	border-radius: 50%;
	box-shadow: 0 8px 30px rgba(0, 0, 128, 0.4), inset 0 1px 0 rgba(255,255,255,0.3);
	position: relative;
	overflow: hidden;
}

.go-up a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 50%);
	pointer-events: none;
}

.go-up a:hover {
	transform: translateY(-8px) scale(1.1);
	box-shadow: 0 15px 50px rgba(0, 0, 128, 0.5);
}

/* ============================================
   BANNER / HERO SECTION
   ============================================ */

.s-banner {
	position: relative;
}

.banner-swiper .swiper-slide {
	padding: 220px 0 180px 0;
	color: var(--color-white);
	text-align: center;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.banner-swiper .swiper-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		linear-gradient(135deg, rgba(0, 0, 50, 0.95) 0%, rgba(0, 0, 80, 0.85) 40%, rgba(14, 165, 233, 0.5) 100%),
		radial-gradient(ellipse 100% 100% at 30% 70%, rgba(14, 165, 233, 0.3) 0%, transparent 60%);
	z-index: 0;
}

/* Decorative Elements */
.banner-swiper .swiper-slide::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 250px;
	background: linear-gradient(to top, var(--color-white) 0%, transparent 100%);
	z-index: 1;
	pointer-events: none;
}

.banner-content {
	max-width: 950px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	padding: 0 32px;
}

.banner-subtitle {
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 20px;
	letter-spacing: 0.4em;
	font-weight: 600;
	color: var(--color-white);
	display: inline-flex;
	align-items: center;
	gap: 16px;
	background: rgba(255, 255, 255, 0.1);
	padding: 12px 28px;
	border-radius: var(--border-radius-xl);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-subtitle::before,
.banner-subtitle::after {
	content: '';
	width: 50px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6));
}

.banner-subtitle::after {
	background: linear-gradient(90deg, rgba(255,255,255,0.6), transparent);
}

.banner-title {
	font-size: clamp(40px, 7vw, 72px);
	font-weight: 300;
	line-height: 1.1;
	margin-bottom: 30px;
	letter-spacing: -0.03em;
	color: var(--color-white);
	text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.banner-title strong {
	font-weight: 800;
	color: inherit;
	display: block;
	background: linear-gradient(180deg, #ffffff 0%, #a5d8ff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.banner-desc {
	font-size: 18px;
	line-height: 1.9;
	max-width: 750px;
	margin: 0 auto 45px auto;
	color: rgba(255, 255, 255, 0.9);
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner-desc strong {
	color: inherit;
	font-weight: 700;
}

.banner-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

.banner-btn {
	padding: 20px 45px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	border-radius: var(--border-radius-xl);
	transition: var(--transition-bounce);
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--gradient-primary);
	color: var(--color-white);
	box-shadow: 0 10px 40px rgba(0, 0, 128, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
	position: relative;
	overflow: hidden;
}

.banner-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, transparent 50%);
	pointer-events: none;
}

.banner-btn:hover {
	transform: translateY(-5px) scale(1.03);
	box-shadow: 0 20px 60px rgba(0, 0, 128, 0.5);
}

.banner-btn.btn-green {
	background: linear-gradient(135deg, var(--color-whatsappStart) 0%, var(--color-whatsappEnd) 100%);
	box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

.banner-btn.btn-green:hover {
	box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5);
}

.banner-btn.btn-dark {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	border: 2px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.banner-btn.btn-dark:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: rgba(255, 255, 255, 0.5);
}

/* Swiper Navigation */
.banner-swiper:hover .swiper-button-next, 
.banner-swiper:hover .swiper-button-prev {
	transform: translateX(0);
	opacity: 1;
}

.swiper-button-next {
	right: 50px;
	transform: translateX(30px);
}

.swiper-button-prev {
	left: 50px;
	transform: translateX(-30px);
}

.swiper-button-next,
.swiper-button-prev {
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	width: 65px;
	height: 65px;
	border-radius: 50%;
	transition: var(--transition-bounce);
	opacity: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	background: var(--color-primary);
	border-color: var(--color-primary);
	transform: scale(1.15);
	box-shadow: 0 10px 40px rgba(0, 0, 128, 0.5);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
	font-size: 20px;
	font-weight: 700;
}

/* Swiper Pagination */
.swiper-horizontal > .swiper-pagination-bullets {
	bottom: 100px;
}

.swiper-pagination-bullet {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.35);
	opacity: 1;
	transition: var(--transition-smooth);
	margin: 0 10px !important;
	border: 2px solid transparent;
}

.swiper-pagination-bullet:hover {
	background: rgba(255, 255, 255, 0.6);
	transform: scale(1.2);
}

.swiper-pagination-bullet-active {
	background: var(--color-white);
	width: 45px;
	border-radius: 10px;
	box-shadow: 0 2px 15px rgba(255, 255, 255, 0.5);
}

/* ============================================
   MAP SECTION
   ============================================ */

.s-map {
	position: relative;
	margin-top: -120px;
	z-index: 10;
	padding: 0 32px;
}

#gbp-map-container {
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	border: 4px solid var(--color-white);
	position: relative;
}

#gbp-map-container::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: calc(var(--border-radius-lg) + 4px);
	background: var(--gradient-primary);
	z-index: -1;
	opacity: 0.3;
}

#gbp-map-container iframe {
	border: none;
	display: block;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.s-about {
	padding: 140px 0;
	background: var(--color-white);
	position: relative;
	overflow: hidden;
}

.s-about::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -15%;
	width: 700px;
	height: 700px;
	background: 
		radial-gradient(circle, rgba(0, 0, 128, 0.06) 0%, transparent 60%),
		radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.04) 0%, transparent 50%);
	border-radius: 50%;
	pointer-events: none;
}

.s-about::after {
	content: '';
	position: absolute;
	bottom: -20%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 60%);
	border-radius: 50%;
	pointer-events: none;
}

.about-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: center;
}

.about-left {
	position: relative;
	z-index: 1;
}

.s-about .def-desc {
	margin-bottom: 45px;
	font-size: 17px;
}

.about-right {
	position: relative;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-strong);
	transition: var(--transition-smooth);
}

.about-right::before {
	content: '';
	position: absolute;
	top: -25px;
	left: -25px;
	right: 25px;
	bottom: 25px;
	border: 4px solid var(--color-primary);
	border-radius: var(--border-radius-lg);
	z-index: -1;
	opacity: 0.25;
	transition: var(--transition-smooth);
}

.about-right::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg, 
		rgba(0, 0, 50, 0.85) 0%, 
		rgba(0, 0, 80, 0.7) 50%,
		rgba(14, 165, 233, 0.4) 100%
	);
	pointer-events: none;
	z-index: 1;
	transition: var(--transition-smooth);
}

.about-right img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: var(--transition-smooth);
}

.about-right:hover {
	transform: translateY(-10px);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.about-right:hover::before {
	transform: translate(10px, 10px);
}

.about-right:hover img {
	transform: scale(1.05);
}

/* ============================================
   SOLUTIONS / FEATURES SECTION
   ============================================ */

.s-solutions {
	padding: 140px 0;
	background: var(--gradient-dark);
	color: var(--color-white);
	position: relative;
	overflow: hidden;
}

.s-solutions::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse 80% 60% at 10% 90%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
		radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 0, 128, 0.2) 0%, transparent 50%);
	pointer-events: none;
}

.s-solutions::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 1;
	pointer-events: none;
}

.s-solutions .container {
	position: relative;
	z-index: 1;
}

.features-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}

.features-item {
	background: var(--color-white);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	transition: var(--transition-bounce);
	position: relative;
}

.features-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-primary);
	transform: scaleX(0);
	transition: var(--transition-smooth);
	z-index: 10;
}

.features-item::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--border-radius-lg);
	border: 2px solid transparent;
	transition: var(--transition-smooth);
	pointer-events: none;
}

.features-item:hover {
	transform: translateY(-15px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.features-item:hover::before {
	transform: scaleX(1);
}

.features-item:hover::after {
	border-color: rgba(0, 0, 128, 0.1);
}

.features-thumb {
	height: 280px;
	overflow: hidden;
	position: relative;
}

.features-thumb::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg, 
		rgba(0, 0, 50, 0.85) 0%, 
		rgba(0, 0, 80, 0.7) 50%,
		rgba(14, 165, 233, 0.4) 100%
	);
	pointer-events: none;
	z-index: 1;
	transition: var(--transition-smooth);
}

.features-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-smooth);
}

.features-item:hover .features-thumb img {
	transform: scale(1.1);
}

.features-item:hover .features-thumb::after {
	opacity: 0.8;
}

.features-body {
	padding: 40px 35px;
	text-align: center;
}

.features-item-title {
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 18px;
	color: var(--color-secondary);
	letter-spacing: -0.03em;
}

.features-item-desc {
	font-size: 15px;
	color: var(--color-textMain);
	margin-bottom: 28px;
	line-height: 1.8;
}

.features-item .def-btn {
	padding: 16px 36px;
	font-size: 12px;
}

/* ============================================
   TESTIMONIALS / REVIEWS SECTION
   ============================================ */

.s-reviews {
	display: none;
}

.s-reviews .center-title {
	color: var(--color-white);
}

.reviews-swiper {
	padding: 30px 0 70px 0;
}

.reviews-swiper .swiper-pagination {
	bottom: 0;
	position: relative;
	margin-top: 50px;
}

.reviews-item {
	background: var(--color-white);
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-medium);
	color: var(--color-black);
	transition: var(--transition-bounce);
	position: relative;
}

.reviews-item::before {
	content: '"';
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 120px;
	font-family: Georgia, serif;
	color: var(--color-primary);
	opacity: 0.08;
	line-height: 1;
	pointer-events: none;
}

.reviews-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.reviews-body {
	padding: 50px 40px;
	text-align: center;
	position: relative;
}

h3.reviews-name {
	font-size: 22px;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--color-secondary);
	letter-spacing: -0.02em;
}

.reviews-profi {
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 20px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
}

.reviews-comment {
	color: var(--color-textMain);
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.9;
	font-style: italic;
}

/* Reviews in Solutions Section */
.s-solutions .reviews-swiper {
	margin-top: 30px;
}

/* ============================================
   SEO SECTION
   ============================================ */

.s-seo {
	padding: 120px 0;
	background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bgSectionAlt) 50%, var(--color-white) 100%);
	position: relative;
}

.s-seo::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.s-seo::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(0, 0, 128, 0.03) 0%, transparent 60%);
	pointer-events: none;
}

.s-seo .container {
	max-width: 920px;
	position: relative;
	z-index: 1;
}

.s-seo .def-title {
	text-align: center;
	margin-bottom: 70px;
}

.s-seo .def-title::before {
	display: none;
}

.s-seo .def-title::after {
	content: '';
	height: 5px;
	width: 100px;
	background: var(--gradient-primary);
	display: block;
	margin: 30px auto 0 auto;
	border-radius: 10px;
	box-shadow: 0 2px 15px rgba(0, 0, 128, 0.3);
}

.s-seo .def-desc {
	text-align: left;
	font-size: 17px;
	line-height: 2;
	color: var(--color-textMain);
}

.s-seo .def-desc h2 {
	font-size: 28px;
	color: var(--color-secondary);
	margin-top: 60px;
	margin-bottom: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	padding-left: 25px;
	border-left: 5px solid var(--color-primary);
	line-height: 1.25;
	position: relative;
}

.s-seo .def-desc h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--gradient-primary);
	border-radius: 10px;
	margin-left: -5px;
}

.s-seo .def-desc h2:first-of-type {
	margin-top: 0;
}

.s-seo .def-desc p {
	margin-bottom: 28px;
}

.s-seo .def-desc a {
	color: var(--color-primary);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: var(--transition-fast);
}

.s-seo .def-desc a:hover {
	border-bottom-color: var(--color-primary);
}

.s-seo .container h2 {
	font-size: 28px;
	color: var(--color-secondary);
	margin-top: 0;
	margin-bottom: 28px;
	font-weight: 800;
	letter-spacing: -0.03em;
	padding-left: 25px;
	border-left: 5px solid var(--color-primary);
	line-height: 1.25;
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.site-footer {
	background: var(--gradient-dark);
	color: var(--color-white);
	font-size: 14px;
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--gradient-primary);
}

.site-footer::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(ellipse 60% 50% at 10% 100%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse 50% 40% at 90% 0%, rgba(0, 0, 128, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.footer-row {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 0;
	position: relative;
	z-index: 1;
}

.footer-left {
	padding: 70px 60px 70px 0;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
	margin-bottom: 30px;
}

.footer-logo img {
	max-width: 160px;
	filter: brightness(0) invert(1);
	opacity: 0.95;
	transition: var(--transition-smooth);
}

.footer-logo:hover img {
	opacity: 1;
}

.footer-right {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
	padding: 70px 0 70px 60px;
}

.footer-desc {
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.9;
}

.footer-desc strong {
	color: var(--color-white);
}

.footer-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 28px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	position: relative;
	padding-bottom: 15px;
}

.footer-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: var(--gradient-primary);
	border-radius: 10px;
}

.footer-nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.footer-nav ul li {
	margin-bottom: 14px;
}

.footer-nav ul li a {
	display: inline-block;
	padding: 4px 0;
	position: relative;
	transition: var(--transition-smooth);
}

.footer-nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--gradient-primary);
	transition: var(--transition-smooth);
	border-radius: 10px;
}

.footer-nav ul li a:hover {
	color: var(--color-white);
	transform: translateX(5px);
}

.footer-nav ul li a:hover::after {
	width: 100%;
}

.footer-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 20px;
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition-smooth);
}

.footer-info-item:hover {
	color: var(--color-white);
}

.footer-info-icon {
	margin-right: 16px;
	font-size: 20px;
	margin-top: 2px;
}

.footer-info-icon span {
	vertical-align: middle;
	display: inline-block;
}

.footer-social {
	display: flex;
	column-gap: 14px;
	align-items: center;
	margin-top: 28px;
}

.footer-social a {
	width: 46px;
	height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	transition: var(--transition-bounce);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social a:hover {
	background: var(--color-primary);
	border-color: transparent;
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 128, 0.4);
}

.footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 28px 0;
	text-align: center;
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	position: relative;
	z-index: 1;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
	position: fixed;
	right: 30px;
	bottom: 30px;
	z-index: 100;
}

.whatsapp-float a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 65px;
	height: 65px;
	background: linear-gradient(135deg, var(--color-whatsappStart) 0%, var(--color-whatsappEnd) 100%);
	border-radius: 50%;
	box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
	transition: var(--transition-bounce);
	font-size: 30px;
	position: relative;
	overflow: hidden;
}

.whatsapp-float a::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 50%);
	pointer-events: none;
}

.whatsapp-float a::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid rgba(37, 211, 102, 0.5);
	animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.whatsapp-float a:hover {
	transform: translateY(-8px) scale(1.1);
	box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media screen and (max-width: 1200px) {
	.header-logo {
		padding: 20px 50px 20px 28px;
	}

	.header-nav {
		padding: 12px 28px;
	}

	.header-nav ul {
		column-gap: 32px;
	}

	.about-row {
		gap: 60px;
	}
}

@media screen and (max-width: 992px) {
	/* Header */
	.header-logo {
		padding: 14px 40px 14px 22px;
	}

	.header-logo img {
		max-width: 120px;
	}

	.header-top {
		font-size: 13px;
	}

	.header-right {
		column-gap: 20px;
	}

	.header-nav ul {
		font-size: 13px;
		column-gap: 22px;
	}

	/* Banner */
	.banner-swiper .swiper-slide {
		padding: 160px 24px 140px 24px;
		min-height: auto;
	}

	.swiper-button-next, 
	.swiper-button-prev {
		width: 52px;
		height: 52px;
	}

	.swiper-button-next:after, 
	.swiper-button-prev:after {
		font-size: 18px;
	}

	.banner-title {
		font-size: 38px;
	}

	.banner-buttons {
		flex-direction: column;
		align-items: center;
	}

	.banner-btn {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}

	.def-btn {
		padding: 16px 40px;
		font-size: 13px;
	}

	/* About */
	.about-row {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-left {
		max-width: 650px;
		margin: 0 auto;
		text-align: center;
	}

	.about-left .def-title::before {
		display: none;
	}

	.about-right {
		max-width: 550px;
		margin: 0 auto;
	}

	.about-right::before {
		display: none;
	}

	/* Features */
	.features-row {
		grid-template-columns: repeat(2, 1fr);
	}

	/* Footer */
	.footer-row {
		grid-template-columns: 1fr;
	}

	.footer-left {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		padding: 50px 0;
		text-align: center;
	}

	.footer-right {
		padding: 50px 0;
	}
}

@media screen and (min-width: 769px) {
	.header-mobile-logo,
	.hamburger,
	.header-mobile-wrap {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	/* Typography */
	.def-title {
		font-size: 30px;
		margin-bottom: 25px;
		text-align: center;
	}

	.def-title::before {
		display: none;
	}

	.def-title::after {
		content: '';
		height: 4px;
		width: 70px;
		background: var(--gradient-primary);
		display: block;
		margin: 22px auto 0 auto;
		border-radius: 10px;
	}

	.center-title {
		font-size: 30px;
	}

	/* Header Mobile */
	.header-top {
		padding: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

	.header-desc,
	.header-right,
	.header-bottom {
		display: none;
	}

	.header-mobile-logo {
		background: var(--gradient-primary);
		padding: 12px 45px 12px 22px;
		display: flex;
		align-items: center;
		clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
		margin-left: -32px;
		position: relative;
	}

	.header-mobile-logo::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(255,255,255,0.2) 0%, transparent 50%);
		pointer-events: none;
	}

	.header-mobile-logo img {
		max-width: 110px;
		filter: brightness(0) invert(1);
	}

	.hamburger {
		margin-left: auto;
		cursor: pointer;
		width: 30px;
		height: 22px;
		position: relative;
		z-index: 15;
	}

	.hamburger span {
		height: 3px;
		width: 100%;
		background-color: var(--color-white);
		display: block;
		transition: var(--transition-smooth);
		position: absolute;
		border-radius: 10px;
	}

	.hamburger span:first-child {
		top: 0;
	}

	.hamburger span:nth-child(2) {
		top: 50%;
		transform: translateY(-50%);
	}

	.hamburger span:last-child {
		bottom: 0;
	}

	.hamburger.is-active span:first-child {
		top: 50%;
		transform: translateY(-50%) rotate(45deg);
	}

	.hamburger.is-active span:nth-child(2) {
		opacity: 0;
		transform: translateX(20px);
	}

	.hamburger.is-active span:last-child {
		top: 50%;
		transform: translateY(-50%) rotate(-45deg);
	}

	.header-mobile-wrap {
		background: var(--gradient-dark);
		color: var(--color-white);
		padding: 50px 32px;
		text-align: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		z-index: 12;
		display: none;
		overflow-y: auto;
	}

	.header-mobile-wrap::before {
		content: '';
		position: absolute;
		inset: 0;
		background: 
			radial-gradient(ellipse 80% 50% at 20% 80%, rgba(14, 165, 233, 0.15) 0%, transparent 50%),
			radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 0, 128, 0.2) 0%, transparent 50%);
		pointer-events: none;
	}

	.header-mobile-nav {
		margin: 70px 0 50px 0;
		position: relative;
	}

	.header-mobile-nav ul {
		list-style-type: none;
		padding: 0;
		margin: 0;
	}

	.header-mobile-nav ul li {
		margin-bottom: 28px;
	}

	.header-mobile-nav ul li a {
		font-size: 20px;
		font-weight: 600;
		letter-spacing: 0.02em;
	}

	.header-mobile-info {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 22px;
		font-size: 16px;
		padding: 14px 24px;
		background: rgba(255, 255, 255, 0.08);
		border-radius: var(--border-radius-md);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}

	.header-mobile-info span {
		margin-right: 14px;
	}

	.header-mobile-social {
		margin-top: 50px;
		display: flex;
		justify-content: center;
		column-gap: 18px;
	}

	.header-mobile-social a {
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.1);
		border-radius: 50%;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

	/* Banner Mobile */
	.swiper-button-next, 
	.swiper-button-prev {
		display: none;
	}

	.banner-swiper .swiper-slide {
		min-height: 100vh;
		padding: 120px 24px 100px 24px;
	}

	.swiper-horizontal > .swiper-pagination-bullets {
		bottom: 50px;
	}

	/* Sections */
	.s-about {
		padding: 80px 0;
	}

	.s-solutions {
		padding: 100px 0;
	}

	.s-map {
		margin-top: -60px;
		padding: 0 24px;
	}

	#gbp-map-container {
		height: 320px !important;
		border-radius: var(--border-radius-md);
	}

	/* Reviews */
	.reviews-body {
		padding: 30px 25px;
	}

	h3.reviews-name {
		font-size: 20px;
	}

	/* Footer Mobile */
	.site-footer {
		text-align: center;
	}

	.footer-right {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-title::after {
		left: 50%;
		transform: translateX(-50%);
	}

	.footer-info-item {
		justify-content: center;
	}

	.footer-social {
		justify-content: center;
	}

	.footer-nav {
		margin-bottom: 35px;
	}
}

@media screen and (max-width: 575px) {
	/* Features */
	.features-row {
		grid-template-columns: 1fr;
	}

	.features-item {
		max-width: 420px;
		margin: 0 auto;
	}

	/* Banner */
	.banner-subtitle {
		font-size: 10px;
		padding: 10px 20px;
	}

	.banner-subtitle::before,
	.banner-subtitle::after {
		width: 25px;
	}

	.banner-title {
		font-size: 30px;
	}

	.banner-desc {
		font-size: 15px;
	}

	.banner-btn {
		padding: 16px 32px;
		font-size: 12px;
	}

	/* About */
	.s-about .def-btn {
		display: block;
		text-align: center;
		max-width: 220px;
		margin: 0 auto;
	}

	/* SEO */
	.s-seo {
		padding: 70px 0;
	}

	.s-seo .def-desc {
		font-size: 15px;
	}

	.s-seo .def-desc h2 {
		font-size: 22px;
		margin-top: 40px;
		padding-left: 18px;
	}

	/* Go Up & WhatsApp */
	.go-up {
		left: 18px;
		bottom: 18px;
	}

	.go-up a {
		width: 52px;
		height: 52px;
		font-size: 20px;
	}

	.whatsapp-float {
		right: 18px;
		bottom: 18px;
	}

	.whatsapp-float a {
		width: 58px;
		height: 58px;
		font-size: 26px;
	}
}

@media screen and (max-width: 480px) {
	.container {
		padding: 0 20px;
	}

	.def-title {
		font-size: 26px;
	}

	.center-title {
		font-size: 26px;
	}

	.banner-title {
		font-size: 26px;
	}

	.features-body {
		padding: 30px 24px;
	}

	.features-item-title {
		font-size: 22px;
	}
}

/* ============================================
   ANIMATIONS & UTILITIES
   ============================================ */

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Smooth transitions for all interactive elements */
a, button, input, textarea, .features-item, .reviews-item, .banner-btn, .def-btn {
	transition: var(--transition-smooth);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--color-primary);
	outline-offset: 3px;
}

/* Print styles */
@media print {
	.go-up,
	.whatsapp-float,
	.swiper-button-next,
	.swiper-button-prev,
	.swiper-pagination {
		display: none !important;
	}
}
