/* ============================================
   HM RADIATORS - PREMIUM WEBSITE STYLES
   ============================================ */

:root {
	--primary: #1F3A5F;
	--primary-rgb: 31, 58, 95;
	--secondary: #3B82F6;
	--dark: #111827;
	--light: #F3F4F6;
	--white: #FFFFFF;
	--text: #111827;
	--text-light: rgba(255,255,255,0.8);
	--cnvs-themecolor: #3B82F6;
	--cnvs-themecolor-rgb: 59, 130, 246;
}

body {
	font-family: 'Roboto', sans-serif;
	color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Poppins', sans-serif;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar-custom {
	background: var(--dark) !important;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-custom .top-link {
	color: #ffffff !important;
	text-decoration: none !important;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.top-bar-custom .top-link:hover {
	color: var(--primary) !important;
}

.top-bar-custom .top-link i {
	color: var(--primary) !important;
}

.top-bar-custom .social-link {
	color: #ffffff !important;
	transition: color 0.3s ease;
	font-size: 1rem;
}

.top-bar-custom .social-link:hover {
	color: var(--primary) !important;
}

/* ============================================
   HEADER
   ============================================ */
.header-custom {
	background: var(--white);
	box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.header-phone {
	align-items: center;
	gap: 12px;
	margin-right: 20px;
	text-decoration: none;
	color: var(--secondary);
}

.phone-icon {
	width: 45px;
	height: 45px;
	background: rgba(59,130,246,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
}

.header-phone small {
	display: block;
	font-size: 0.75rem;
	color: #888;
}

.header-phone strong {
	font-size: 0.95rem;
}

.btn-quote {
	background: var(--secondary);
	color: var(--white);
	padding: 12px 25px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-quote:hover {
	background: var(--primary);
	color: var(--white);
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	background-color: var(--primary);
}

.hero-slide-bg {
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%);
	width: 45%;
	height: 70%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 20px;
	box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 10px 30px rgba(59,130,246,0.2);
	border: 4px solid rgba(255,255,255,0.15);
}

.hero-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(31,58,95,0.6) 0%, rgba(31,58,95,0.5) 40%, rgba(31,58,95,0.3) 70%, rgba(31,58,95,0.2) 100%);
}

.hero-slide-overlay::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, rgba(59,130,246,0.1) 0%, transparent 100%);
}

.hero-slide-overlay::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(0deg, rgba(31,58,95,0.8) 0%, transparent 100%);
}

.hero-content {
	position: relative;
	z-index: 10;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 100px;
	padding-right: 50%;
}

.hero-badge {
	display: inline-block;
	background: linear-gradient(135deg, var(--secondary) 0%, #60a5fa 100%);
	color: var(--white);
	padding: 12px 28px;
	border-radius: 30px;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 25px;
	box-shadow: 0 10px 30px rgba(59,130,246,0.25);
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%, 100% { box-shadow: 0 10px 30px rgba(59,130,246,0.25); }
	50% { box-shadow: 0 15px 40px rgba(59,130,246,0.25); }
}

.hero-content h1 {
	font-size: 4rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.5rem;
	line-height: 1.1;
	text-shadow: 0 5px 30px rgba(0,0,0,0.3);
}

.hero-content h1 span {
	color: var(--primary);
	display: block;
	text-shadow: 0 5px 30px rgba(59,130,246,0.3);
}

.hero-content p {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.85);
	margin-bottom: 2.5rem;
	max-width: 800px;
	line-height: 1.8;
}

.hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.btn-hero {
	padding: 16px 40px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.4s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
}

.btn-primary-hero {
	background: var(--secondary);
	border: 2px solid var(--secondary);
	color: var(--white);
}

.btn-primary-hero:hover {
	background: transparent;
	color: var(--secondary);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(59,130,246,0.25);
}

.btn-outline-hero {
	background: transparent;
	border: 2px solid rgba(255,255,255,0.5);
	color: var(--white);
}

.btn-outline-hero:hover {
	background: var(--white);
	border-color: var(--white);
	color: #000;
	transform: translateY(-3px);
}

/* Slider Navigation */
.slider-nav {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 20px;
	z-index: 100;
}

.slider-arrow {
	width: 55px;
	height: 55px;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 20px;
	color: var(--white);
}

.slider-arrow:hover {
	background: var(--secondary);
	border-color: var(--secondary);
	color: var(--white);
	transform: scale(1.1);
}

.slider-counter {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 500;
	min-width: 80px;
	text-align: center;
}

.slider-counter .current {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
	background: var(--secondary);
	position: relative;
	z-index: 10;
	margin-top: -80px;
}

.feature-box-bar {
	padding: 40px 30px;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,0.1);
	transition: all 0.3s ease;
}

.feature-box-bar:hover {
	background: rgba(59,130,246,0.1);
}

.feature-box-bar i {
	font-size: 48px;
	color: var(--primary);
	margin-bottom: 20px;
	display: block;
}

.feature-box-bar h4 {
	color: var(--white);
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 10px;
}

.feature-box-bar p {
	color: rgba(255,255,255,0.6);
	font-size: 0.9rem;
	margin: 0;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
	margin-bottom: 60px;
}

.section-header .subtitle {
	display: inline-block;
	color: var(--primary);
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-bottom: 15px;
	position: relative;
	padding-left: 60px;
}

.section-header .subtitle::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 45px;
	height: 2px;
	background: var(--primary);
}

.section-header.text-center .subtitle {
	padding-left: 0;
}

.section-header.text-center .subtitle::before {
	display: none;
}

.section-header h2 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 20px;
	line-height: 1.2;
}

.section-header h2 span {
	color: var(--primary);
}

.section-header p {
	font-size: 1.15rem;
	color: #666;
	max-width: 600px;
	line-height: 1.8;
}

.section-header.text-center p {
	margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
	background: var(--white);
	overflow: hidden;
}

.about-image-wrapper {
	position: relative;
}

.about-image-main {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image-main img {
	width: 100%;
	height: auto;
}

.about-experience-badge {
	position: absolute;
	top: 30px;
	left: -20px;
	background: var(--secondary);
	color: var(--white);
	padding: 25px 30px;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 15px 40px rgba(59,130,246,0.3);
}

.about-experience-badge h3 {
	font-size: 3rem;
	font-weight: 800;
	margin: 0;
	line-height: 1;
}

.about-experience-badge span {
	font-size: 0.9rem;
	font-weight: 600;
	text-transform: uppercase;
}

.about-content {
	padding-left: 50px;
}

.about-content .lead {
	font-size: 1.15rem;
	color: #444;
	margin-bottom: 20px;
}

.about-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin: 30px 0;
}

.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.about-feature-item i {
	font-size: 24px;
	color: var(--primary);
	margin-top: 3px;
}

.about-feature-item h5 {
	font-size: 1rem;
	font-weight: 600;
	margin: 0 0 5px 0;
	color: var(--secondary);
}

.about-feature-item p {
	font-size: 0.9rem;
	color: #666;
	margin: 0;
}

.btn-primary-custom {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--secondary);
	color: var(--white);
	padding: 16px 35px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-primary-custom:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
	background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.product-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.product-image {
	position: relative;
	overflow: hidden;
	height: 250px;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
}

.product-badge {
	position: absolute;
	top: 20px;
	left: 20px;
	background: var(--secondary);
	color: var(--white);
	padding: 6px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.product-body {
	padding: 30px;
}

.product-body h4 {
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--secondary);
	margin-bottom: 15px;
}

.product-body p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.product-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.product-link:hover {
	gap: 15px;
	color: var(--primary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
	background: var(--secondary);
	position: relative;
	overflow: hidden;
}

.services-section .section-header {
	margin-bottom: 50px;
}

.services-section .section-header h2 {
	color: var(--white);
}

.services-section .section-header h2 span {
	color: var(--white);
}

.services-section .section-header p {
	color: var(--text-light);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.services-section .row {
	justify-content: center;
}

.service-card {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	transition: all 0.4s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.service-card:hover {
	background: rgba(59,130,246,0.1);
	border-color: var(--primary);
	transform: translateY(-10px);
}

.service-icon {
	width: 90px;
	height: 90px;
	background: linear-gradient(135deg, var(--secondary) 0%, #60a5fa 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
	transform: rotateY(180deg);
}

.service-icon i {
	font-size: 40px;
	color: var(--white);
}

.service-card h4 {
	color: var(--white);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.service-card p {
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 20px;
}

.service-card a {
	color: var(--primary);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.service-card a:hover {
	color: var(--white);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
	background: var(--primary);
	padding: 80px 0;
}

.stats-section .row {
	justify-content: center;
}

.stat-item {
	text-align: center;
	padding: 20px;
}

.stat-item h2 {
	font-size: 4rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
}

.stat-item h2 span {
	font-size: 2.5rem;
	color: #fff;
}

.stat-item p {
	color: rgba(255,255,255,0.9);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
	background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.team-card {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
}

.team-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.team-image {
	position: relative;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
	transform: scale(1.1);
}

.team-social {
	position: absolute;
	bottom: -50px;
	left: 0;
	width: 100%;
	padding: 20px;
	background: linear-gradient(0deg, rgba(31,58,95,0.9) 0%, transparent 100%);
	display: flex;
	justify-content: center;
	gap: 10px;
	transition: bottom 0.3s ease;
}

.team-card:hover .team-social {
	bottom: 0;
}

.team-social a {
	width: 40px;
	height: 40px;
	background: var(--secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s ease;
}

.team-social a:hover {
	background: var(--white);
	transform: translateY(-5px);
}

.team-body {
	padding: 25px;
	text-align: center;
}

.team-body h5 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 5px;
}

.team-body span {
	color: var(--primary);
	font-weight: 500;
}

/* New Premium Team Member Cards */
.team-member-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
}

.team-member-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.member-img {
	position: relative;
	overflow: hidden;
	background: #fff;
}

.member-img img {
	width: 100%;
	height: 200px;
	object-fit: contain;
	transition: transform 0.5s ease;
}

.team-member-card:hover .member-img img {
	transform: scale(1.08);
}

.member-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px;
	background: linear-gradient(0deg, rgba(31,58,95,0.95) 0%, transparent 100%);
	display: flex;
	justify-content: center;
	gap: 10px;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.team-member-card:hover .member-overlay {
	transform: translateY(0);
}

.member-overlay a {
	width: 38px;
	height: 38px;
	background: var(--secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 14px;
	transition: all 0.3s ease;
}

.member-overlay a:hover {
	background: #fff;
	transform: translateY(-5px);
}

.member-info {
	padding: 20px;
	text-align: center;
	background: #fff;
}

.member-info h5 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #1F3A5F;
	margin-bottom: 5px;
}

.member-info span {
	color: #3B82F6;
	font-size: 0.9rem;
	font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
	background: linear-gradient(135deg, var(--primary) 0%, #111827 100%);
	position: relative;
	overflow: hidden;
}

.testimonials-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: var(--primary);
	border-radius: 50%;
	opacity: 0.05;
}

.testimonials-section .section-header h2 {
	color: var(--white);
}

.testimonials-section .section-header p {
	color: var(--text-light);
}

.testimonial-card {
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 20px;
	padding: 40px;
	position: relative;
	height: 100%;
}

.testimonial-quote {
	font-size: 80px;
	color: var(--primary);
	opacity: 0.3;
	position: absolute;
	top: 20px;
	right: 30px;
	font-family: Georgia, serif;
	line-height: 1;
}

.testimonial-rating {
	color: var(--primary);
	font-size: 18px;
	margin-bottom: 20px;
}

.testimonial-card > p {
	color: rgba(255,255,255,0.85);
	font-size: 1.05rem;
	line-height: 1.8;
	font-style: italic;
	margin-bottom: 30px;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 3px solid var(--primary);
}

.testimonial-author h6 {
	color: var(--white);
	font-weight: 600;
	margin: 0 0 5px 0;
}

.testimonial-author span {
	color: var(--primary);
	font-size: 0.9rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
	background: var(--primary);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.cta-content h2 {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 20px;
}

.cta-content p {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 30px;
}

.btn-cta {
	background: var(--secondary);
	color: var(--white);
	padding: 18px 45px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-cta:hover {
	background: var(--white);
	color: var(--secondary);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
	background: var(--white);
}

.contact-info-card {
	background: var(--secondary);
	border-radius: 25px;
	padding: 50px 40px;
	height: 100%;
}

.contact-info-card h4 {
	color: var(--white);
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 30px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}

.contact-info-item:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-item .icon {
	width: 60px;
	height: 60px;
	background: var(--secondary);
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-info-item .icon i {
	font-size: 24px;
	color: var(--white);
}

.contact-info-item h6 {
	color: var(--primary);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 10px 0;
}

.contact-info-item p {
	color: rgba(255,255,255,0.8);
	margin: 0;
	line-height: 1.7;
}

.contact-info-item a {
	color: rgba(255,255,255,0.8);
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-info-item a:hover {
	color: var(--primary);
}

.contact-social {
	margin-top: 40px;
	display: flex;
	gap: 15px;
}

.contact-social a {
	width: 50px;
	height: 50px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 20px;
	transition: all 0.3s ease;
}

.contact-social a:hover {
	background: var(--secondary);
	color: var(--white);
	transform: translateY(-5px);
}

.contact-form-card {
	background: var(--light);
	border-radius: 25px;
	padding: 50px 40px;
}

.contact-form-card h4 {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 30px;
}

.form-control-custom {
	background: var(--white);
	border: 2px solid #e9ecef;
	border-radius: 12px;
	padding: 15px 20px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control-custom:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 4px rgba(59,130,246,0.15);
	outline: none;
}

.btn-submit {
	background: var(--secondary);
	color: var(--white);
	padding: 18px 45px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-submit:hover {
	background: var(--primary);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer-main {
	background: var(--dark);
	padding: 80px 0 40px;
}

.footer-logo img {
	max-width: 280px;
	height: auto;
	margin-bottom: 20px;
}

.footer-about {
	color: rgba(255,255,255,0.85) !important;
	line-height: 1.8;
	margin-bottom: 25px;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.footer-social a {
	width: 45px;
	height: 45px;
	background: rgba(255,255,255,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: var(--secondary);
	color: var(--white);
	transform: translateY(-5px);
}

.footer-title {
	color: var(--white);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 30px;
	position: relative;
	padding-bottom: 15px;
}

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

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 15px;
}

.footer-links a {
	color: rgba(255,255,255,0.85) !important;
	text-decoration: none !important;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-links a::before {
	content: '→';
	color: var(--primary) !important;
}

.footer-links a:hover {
	color: var(--primary) !important;
	padding-left: 10px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-contact-item i {
	color: var(--primary) !important;
	font-size: 18px;
	margin-top: 3px;
}

.footer-contact-item p {
	color: rgba(255,255,255,0.85) !important;
	margin: 0;
}

.footer-contact-item a {
	color: rgba(255,255,255,0.85) !important;
	text-decoration: none !important;
	transition: color 0.3s ease;
}

.footer-contact-item a:hover {
	color: var(--primary) !important;
}

.footer-newsletter {
	color: rgba(255,255,255,0.85) !important;
	margin-bottom: 20px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form input {
	flex: 1;
	background: rgba(255,255,255,0.1);
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	color: var(--white);
}

.newsletter-form input::placeholder {
	color: rgba(255,255,255,0.5);
}

.newsletter-form button {
	background: var(--secondary);
	border: none;
	border-radius: 50px;
	padding: 15px 25px;
	color: var(--white);
	cursor: pointer;
	transition: all 0.3s ease;
}

.newsletter-form button:hover {
	background: var(--white);
}

.footer-bottom {
	background: #050508;
}

.footer-bottom p {
	color: rgba(255,255,255,0.85) !important;
	margin: 0;
	font-size: 0.9rem;
}

.footer-bottom a {
	color: var(--primary) !important;
	text-decoration: none !important;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199.98px) {
	.hero-content h1 { font-size: 3.5rem; }
	.section-header h2 { font-size: 2.5rem; }
}

@media (max-width: 991.98px) {
	.hero-content h1 { font-size: 2.8rem; }
	.hero-content p { font-size: 1.1rem; }
	.about-content { padding-left: 0; margin-top: 80px; }
	.about-experience-badge { left: 20px; }
	.feature-box-bar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
	.section-header h2 { font-size: 2.2rem; }
	.features-bar { margin-top: 0; }
}

@media (max-width: 767.98px) {
	.hero-content h1 { font-size: 2.2rem; }
	.hero-content p { font-size: 1rem; }
	.btn-hero { padding: 14px 30px; font-size: 0.9rem; }
	.slider-nav { bottom: 30px; }
	.slider-arrow { width: 45px; height: 45px; }
	.section-header h2 { font-size: 1.8rem; }
	.about-features { grid-template-columns: 1fr; }
	.cta-content h2 { font-size: 2rem; }
	.stat-item h2 { font-size: 3rem; }
	.contact-info-card, .contact-form-card { padding: 30px 25px; }
	.page-title-content h1 { font-size: 2.5rem; }
	.process-timeline { flex-direction: column; }
	.process-step { flex-direction: row; text-align: left; }
}

/* ============================================
   PAGE TITLE SECTION
   ============================================ */
.page-title-section {
	position: relative;
	background: url('images/slider/slide-1.jpg') center/cover;
	padding: 150px 0 100px;
	margin-top: -1px;
}

.page-title-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(31,58,95,0.95) 0%, rgba(31,58,95,0.8) 100%);
}

.page-title-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-title-content h1 {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 20px;
}

.page-title-content .breadcrumb {
	justify-content: center;
	background: none;
	padding: 0;
	margin: 0;
}

.page-title-content .breadcrumb-item {
	color: rgba(255,255,255,0.7);
}

.page-title-content .breadcrumb-item a {
	color: var(--primary);
	text-decoration: none;
}

.page-title-content .breadcrumb-item.active {
	color: rgba(255,255,255,0.7);
}

.page-title-content .breadcrumb-item + .breadcrumb-item::before {
	color: rgba(255,255,255,0.5);
}

/* ============================================
   MISSION VISION VALUES CARDS
   ============================================ */
.mvv-card {
	background: var(--white);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 15px 50px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	height: 100%;
	border: 2px solid transparent;
}

.mvv-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.mvv-card.featured {
	background: var(--secondary);
	border-color: var(--primary);
}

.mvv-card.featured h4,
.mvv-card.featured p {
	color: var(--white);
}

.mvv-card.featured .mvv-icon {
	background: var(--secondary);
	color: var(--white);
}

.mvv-icon {
	width: 80px;
	height: 80px;
	background: rgba(59,130,246,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 35px;
	color: var(--primary);
}

.mvv-card h4 {
	font-size: 1.4rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 15px;
}

.mvv-card p {
	color: #666;
	line-height: 1.7;
	margin: 0;
}

/* ============================================
   WHY CHOOSE US GRID
   ============================================ */
.why-choose-grid {
	margin-top: 30px;
}

.why-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 25px;
	padding: 20px;
	background: var(--light);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.why-item:hover {
	background: var(--white);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transform: translateX(10px);
}

.why-icon {
	width: 50px;
	height: 50px;
	background: var(--secondary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.why-icon i {
	font-size: 22px;
	color: var(--white);
}

.why-content h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--secondary);
	margin: 0 0 5px 0;
}

.why-content p {
	color: #666;
	margin: 0;
	font-size: 0.95rem;
}

/* ============================================
   ABOUT GALLERY
   ============================================ */
.about-gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 20px;
}

.gallery-item {
	border-radius: 15px;
	overflow: hidden;
}

.gallery-item.large {
	grid-row: span 2;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

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

/* ============================================
   PRODUCT CARD DETAILED
   ============================================ */
.product-card-detailed {
	background: var(--white);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 15px 50px rgba(0,0,0,0.08);
	transition: all 0.4s ease;
	height: 100%;
}

.product-card-detailed:hover {
	transform: translateY(-10px);
	box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.product-image-wrapper {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.product-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card-detailed:hover .product-image-wrapper img {
	transform: scale(1.1);
}

.product-overlay-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(31,58,95,0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-card-detailed:hover .product-overlay-content {
	opacity: 1;
}

.btn-product {
	background: var(--secondary);
	color: var(--white);
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.btn-product:hover {
	background: var(--primary);
	color: var(--white);
}

.product-details {
	padding: 30px;
}

.product-category {
	display: inline-block;
	background: rgba(59,130,246,0.1);
	color: var(--primary);
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
	margin-bottom: 15px;
}

.product-details h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 15px;
}

.product-details > p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 20px;
}

.product-features {
	list-style: none;
	padding: 0;
	margin: 0;
}

.product-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #555;
	margin-bottom: 8px;
	font-size: 0.95rem;
}

.product-features li i {
	color: var(--primary);
}

/* ============================================
   APPLICATION CARDS
   ============================================ */
.application-card {
	background: var(--white);
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 10px 40px rgba(0,0,0,0.06);
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.application-card:hover {
	border-color: var(--primary);
	transform: translateY(-5px);
}

.app-icon {
	width: 70px;
	height: 70px;
	background: rgba(59,130,246,0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 30px;
	color: var(--primary);
	transition: all 0.3s ease;
}

.application-card:hover .app-icon {
	background: var(--secondary);
	color: var(--white);
}

.application-card h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 10px;
}

.application-card p {
	color: #666;
	margin: 0;
	font-size: 0.9rem;
}

/* ============================================
   SERVICE CARD LARGE
   ============================================ */
.service-card-large {
	background: #fff;
	border-radius: 20px;
	padding: 0;
	overflow: hidden;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
	border: 1px solid rgba(0,0,0,0.05);
}

.service-card-large:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(31,58,95,0.15);
}

.service-card-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.service-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.service-card-large:hover .service-card-image img {
	transform: scale(1.05);
}

.service-card-large .service-card-content {
	padding: 30px;
}

.service-card-icon {
	width: 80px;
	height: 80px;
	background: var(--secondary);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.service-card-icon i {
	font-size: 35px;
	color: var(--white);
}

.service-card-content h4 {
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 15px;
}

.service-card-content > p {
	color: #555;
	margin-bottom: 20px;
	line-height: 1.7;
}

.service-card-content ul {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.service-card-content ul li {
	color: #444;
	margin-bottom: 10px;
	padding-left: 25px;
	position: relative;
	font-size: 0.95rem;
}

.service-card-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--secondary);
	font-weight: bold;
}

.service-link {
	color: var(--secondary);
	font-weight: 600;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.service-link:hover {
	color: var(--primary);
	gap: 12px;
}

/* ============================================
   SERVICE CARD MINI
   ============================================ */
.service-card-mini {
	background: var(--light);
	border-radius: 15px;
	padding: 35px 25px;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(0,0,0,0.05);
}

.service-card-mini:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(31,58,95,0.1);
	background: #fff;
}

.mini-icon {
	width: 70px;
	height: 70px;
	background: var(--primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	font-size: 26px;
	color: #fff;
}

.service-card-mini h5 {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 12px;
}

.service-card-mini p {
	color: #555;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-top: 50px;
}

.process-timeline::before {
	content: '';
	position: absolute;
	top: 40px;
	left: 0;
	width: 100%;
	height: 3px;
	background: rgba(255,255,255,0.3);
}

.process-step {
	text-align: center;
	position: relative;
	flex: 1;
}

.step-number {
	width: 80px;
	height: 80px;
	background: var(--secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin: 0 auto 20px;
	position: relative;
	z-index: 1;
}

.step-content h5 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 8px;
}

.step-content p {
	color: rgba(255,255,255,0.8);
	font-size: 0.9rem;
	margin: 0;
}

/* ============================================
   CONTACT INFO BOX
   ============================================ */
.contact-info-box {
	background: var(--white);
	border-radius: 20px;
	padding: 40px 30px;
	text-align: center;
	box-shadow: 0 15px 50px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	height: 100%;
	border: 2px solid transparent;
}

.contact-info-box:hover {
	border-color: var(--primary);
	transform: translateY(-5px);
}

.info-icon {
	width: 80px;
	height: 80px;
	background: var(--secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 32px;
	color: var(--white);
}

.contact-info-box h5 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 15px;
}

.contact-info-box p {
	color: #666;
	line-height: 1.8;
	margin: 0;
}

.contact-info-box a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-info-box a:hover {
	color: var(--primary);
}

/* ============================================
   CONTACT FORM WRAPPER
   ============================================ */
.contact-form-wrapper {
	background: var(--white);
	border-radius: 25px;
	padding: 50px 40px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.contact-form-premium .form-group {
	margin-bottom: 5px;
}

.contact-form-premium label {
	font-weight: 500;
	color: var(--secondary);
	margin-bottom: 8px;
	display: block;
}

/* ============================================
   MAP WRAPPER
   ============================================ */
.map-wrapper {
	background: var(--white);
	border-radius: 25px;
	padding: 50px 40px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.08);
	height: 100%;
}

.map-container {
	margin-bottom: 20px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-container iframe {
	display: block;
}

.working-hours {
	background: var(--secondary);
	border-radius: 15px;
	padding: 20px 25px;
}

.working-hours h5 {
	color: var(--white);
	font-size: 1.1rem;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.working-hours h5 i {
	color: var(--primary);
}

.hours-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	color: rgba(255,255,255,0.8);
}

/* ============================================
   QUICK CONTACT
   ============================================ */
.quick-contact-options {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.quick-contact-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	background: var(--secondary);
	color: var(--white);
}

.quick-contact-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(59,130,246,0.25);
	color: var(--white);
}

.quick-contact-btn.whatsapp {
	background: #25D366;
	color: #fff;
}

.quick-contact-btn.whatsapp:hover {
	box-shadow: 0 10px 30px rgba(37,211,102,0.3);
	color: #fff;
}

.quick-contact-btn.email {
	background: var(--secondary);
	color: var(--white);
}

.quick-contact-btn.email:hover {
	box-shadow: 0 10px 30px rgba(31,58,95,0.3);
	color: var(--white);
}

.quick-contact-btn i {
	font-size: 20px;
}

/* ============================================
   FAQ MINI
   ============================================ */
.faq-mini {
	background: var(--light);
	border-radius: 20px;
	padding: 30px;
}

.faq-mini h5 {
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 25px;
}

.faq-item {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-item h6 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--secondary);
	margin-bottom: 10px;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.faq-item h6 i {
	color: var(--primary);
	margin-top: 3px;
}

.faq-item p {
	color: #666;
	margin: 0;
	padding-left: 28px;
	font-size: 0.95rem;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.floating-whatsapp {
	position: fixed;
	bottom: 100px;
	right: 20px;
	z-index: 9999;
	width: 55px;
	height: 55px;
	background: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
}

.floating-whatsapp:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp i {
	font-size: 32px;
	color: #fff;
}

.floating-whatsapp::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #25D366;
	animation: whatsapp-pulse 2s infinite;
	z-index: -1;
}

@keyframes whatsapp-pulse {
	0% {
		transform: scale(1);
		opacity: 0.7;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}
