* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #121212;
	color: #e0e0e0;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Inter', sans-serif;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3rem;
	line-height: 1.2;
}

h2 {
	font-size: 2.5rem;
	line-height: 1.3;
}

h3 {
	font-size: 1.8rem;
	line-height: 1.4;
}

h4 {
	font-size: 1.5rem;
	line-height: 1.4;
}

p {
	margin-bottom: 1rem;
	color: #e0e0e0;
}

a {
	color: #1e88e5;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #00e676;
}

/* ===== LAYOUT & CONTAINERS ===== */
.ccl-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.ccl-section {
	padding: 80px 0;
}

.ccl-section-alt {
	background-color: #1a1a1a;
}

.ccl-grid {
	display: grid;
	gap: 2rem;
}

.ccl-grid-2 {
	grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.ccl-grid-3 {
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.ccl-grid-4 {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.ccl-text-center {
	text-align: center;
}

/* ===== HEADER ===== */
.ccl-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(18, 18, 18, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
}

.ccl-header.scrolled {
	background: rgba(18, 18, 18, 0.98);
	box-shadow: 0 2px 20px rgba(0, 230, 118, 0.2);
}

.ccl-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ccl-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	color: #1e88e5;
	cursor: pointer;
}

.ccl-logo i {
	color: #00e676;
}

.ccl-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.ccl-nav-link {
	color: #e0e0e0;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
}

.ccl-nav-link:hover {
	color: #00e676;
	background: rgba(0, 230, 118, 0.1);
}

.ccl-nav-link.active {
	color: #00e676;
	background: rgba(0, 230, 118, 0.2);
}

.ccl-mobile-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	padding: 0.5rem;
	background: none;
	border: none;
	z-index: 1005;
}

.ccl-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #e0e0e0;
	margin: 3px 0;
	transition: 0.3s;
}

.ccl-mobile-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: #121212;
	padding: 80px 2rem 2rem;
	transition: all 0.3s ease;
	z-index: 999;
	border-left: 1px solid rgba(30, 136, 229, 0.2);
}

.ccl-mobile-nav.active {
	right: 0;
}

.ccl-mobile-nav .ccl-nav-link {
	display: block;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(224, 224, 224, 0.1);
}

/* ===== HERO SECTION ===== */
.ccl-hero {
	background: linear-gradient(
			135deg,
			rgba(18, 18, 18, 0.8),
			rgba(30, 136, 229, 0.1)
		),
		url('assets/ccl-hero.webp') center/cover;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ccl-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(18, 18, 18, 0.7),
		rgba(30, 136, 229, 0.3)
	);
	z-index: 1;
}

.ccl-hero-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
}

.ccl-hero h1 {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ccl-hero p {
	font-size: 1.3rem;
	margin-bottom: 2rem;
	opacity: 0.9;
}

/* ===== BUTTONS ===== */
.ccl-btn {
	display: inline-block;
	padding: 1rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.ccl-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.2),
		transparent
	);
	transition: left 0.5s;
}

.ccl-btn:hover::before {
	left: 100%;
}

.ccl-btn-primary {
	background: linear-gradient(135deg, #1e88e5, #00e676);
	color: #121212;
}

.ccl-btn-primary:hover {
	background: linear-gradient(135deg, #00e676, #1e88e5);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(0, 230, 118, 0.3);
}

.ccl-btn-secondary {
	background: transparent;
	color: #e0e0e0;
	border: 2px solid #1e88e5;
}

.ccl-btn-secondary:hover {
	background: #1e88e5;
	color: #121212;
	border-color: #00e676;
}

/* ===== CARDS ===== */
.ccl-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ccl-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1e88e5, #00e676);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ccl-card:hover::before {
	transform: scaleX(1);
}

.ccl-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
}

.ccl-card-icon {
	font-size: 3rem;
	color: #1e88e5;

	text-align: center;
	width: 100%;
	margin: 0 auto 1rem;
}

.ccl-card h3 {
	color: #1e88e5;
	margin-bottom: 1rem;
	text-align: center;
}

.ccl-card p {
	text-align: center;
	opacity: 0.9;
}

/* ===== FEATURE CARDS ===== */
.ccl-feature-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 2.5rem 2rem;
	text-align: center;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.ccl-feature-card:hover {
	transform: translateY(-8px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	box-shadow: 0 25px 50px rgba(0, 230, 118, 0.15);
}

.ccl-feature-icon {
	font-size: 4rem;
	color: #00e676;
	margin-bottom: 1.5rem;
	display: block;
}

.ccl-feature-card h3 {
	color: #ffffff;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.ccl-feature-card p {
	color: #e0e0e0;
	opacity: 0.9;
}

/* ===== CASE STUDY CARDS ===== */
.ccl-case-study-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ccl-case-study-card::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 100px;
	background: linear-gradient(135deg, #1e88e5, #00e676);
	border-radius: 50%;
	transform: translate(50%, -50%);
	opacity: 0.1;
	transition: all 0.3s ease;
}

.ccl-case-study-card:hover::after {
	transform: translate(30%, -30%) scale(1.2);
	opacity: 0.2;
}

.ccl-case-study-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
}

.ccl-case-study-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ccl-case-study-icon {
	font-size: 2.5rem;
	color: #1e88e5;
}

.ccl-case-study-title {
	color: #ffffff;
	font-size: 1.3rem;
	margin: 0;
}

.ccl-case-study-description {
	color: #e0e0e0;
	opacity: 0.9;
	margin-bottom: 1rem;
}

.ccl-case-study-tag {
	display: inline-block;
	background: rgba(0, 230, 118, 0.2);
	color: #00e676;
	padding: 0.3rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	margin-right: 0.5rem;
	margin-bottom: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.ccl-faq {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	margin-bottom: 1rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	overflow: hidden;
	transition: all 0.3s ease;
}

.ccl-faq:hover {
	border-color: #00e676;
}

.ccl-faq.active {
	border-color: #1e88e5;
	background: rgba(30, 136, 229, 0.1);
}

.ccl-faq-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem 2rem;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ccl-faq-header:hover {
	background: rgba(255, 255, 255, 0.05);
}

.ccl-faq-header h3 {
	color: #ffffff;
	margin: 0;
	font-size: 1.1rem;
}

.ccl-faq-icon {
	font-size: 1.2rem;
	color: #1e88e5;
	transition: transform 0.3s ease;
}

.ccl-faq.active .ccl-faq-icon {
	transform: rotate(180deg);
	color: #00e676;
}

.ccl-faq-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.3);
}

.ccl-faq-content.active {
	max-height: 1000px;
	padding: 2rem;
}

.ccl-faq-content p {
	color: #e0e0e0;
	margin: 0;
	opacity: 0.9;
}

/* ===== ARTICLE PREVIEW ===== */
.ccl-article-preview {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ccl-article-preview::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1e88e5, #00e676);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ccl-article-preview:hover::before {
	transform: scaleX(1);
}

.ccl-article-preview:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
}

.ccl-article-meta {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: #00e676;
}

.ccl-article-title {
	color: #ffffff;
	font-size: 1.3rem;
	margin-bottom: 1rem;
}

.ccl-article-excerpt {
	color: #e0e0e0;
	opacity: 0.9;
	margin-bottom: 1.5rem;
}

.ccl-article-link {
	color: #1e88e5;
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.ccl-article-link:hover {
	color: #00e676;
	gap: 1rem;
}

/* ===== FORMS ===== */
.ccl-form {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
}

.ccl-form-group {
	margin-bottom: 1.5rem;
}

.ccl-form-label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e0e0e0;
	font-weight: 500;
}

.ccl-form-input,
.ccl-form-textarea {
	width: 100%;
	padding: 1rem;
	border: 2px solid rgba(30, 136, 229, 0.3);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.1);
	color: #e0e0e0;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.ccl-form-input:focus,
.ccl-form-textarea:focus {
	outline: none;
	border-color: #1e88e5;
	background: rgba(255, 255, 255, 0.15);
	box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.2);
}

.ccl-form-input.error,
.ccl-form-textarea.error {
	border-color: #f44336;
}

.ccl-form-error {
	color: #f44336;
	font-size: 0.9rem;
	margin-top: 0.5rem;
	opacity: 0;
	transition: all 0.3s ease;
}

.ccl-form-error.show {
	opacity: 1;
}

.ccl-form-textarea {
	height: 120px;
	resize: vertical;
}

/* Map Section */
.ccl-map {
	height: 100%;
	min-height: 400px;
	border-radius: 1rem;
	overflow: hidden;
}

@media (max-width: 768px) {
	.ccl-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.ccl-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	/* border-radius: 10px; */
	/* overflow: hidden; */
}

.ccl-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 1rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ===== COOKIE POPUP ===== */
.ccl-cookie-popup {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	background: rgba(18, 18, 18, 0.95);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-top: 1px solid rgba(30, 136, 229, 0.2);
	z-index: 10000;
	transition: all 0.3s ease;
}

.ccl-cookie-popup.show {
	bottom: 0;
}

.ccl-cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.ccl-cookie-text {
	color: #e0e0e0;
}

.ccl-cookie-text a {
	color: #1e88e5;
}

.ccl-cookie-actions {
	display: flex;
	gap: 1rem;
}

.ccl-cookie-btn {
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ccl-cookie-accept {
	background: linear-gradient(135deg, #1e88e5, #00e676);
	color: #121212;
}

.ccl-cookie-accept:hover {
	background: linear-gradient(135deg, #00e676, #1e88e5);
	transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.ccl-footer {
	background: #0a0a0a;
	padding: 60px 0 20px;
	border-top: 1px solid rgba(30, 136, 229, 0.2);
}

.ccl-footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4rem;
	margin-bottom: 3rem;
}

.ccl-footer-section h3 {
	color: #1e88e5;
	margin-bottom: 1.5rem;
	font-size: 1.3rem;
}

.ccl-footer-section ul {
	list-style: none;
}

.ccl-footer-section ul li {
	margin-bottom: 0.8rem;
}

.ccl-footer-section ul li a {
	color: #e0e0e0;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.ccl-footer-section ul li a:hover {
	color: #00e676;
	opacity: 1;
}

.ccl-footer-contact p {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.ccl-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(224, 224, 224, 0.1);
	color: #e0e0e0;
	opacity: 0.8;
}

/* ===== SERVICES PAGE SPECIFIC ===== */
.ccl-service-hero {
	background: linear-gradient(
			135deg,
			rgba(18, 18, 18, 0.9),
			rgba(30, 136, 229, 0.2)
		),
		url('assets/ccl-hero.webp') center/cover;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.ccl-service-section {
	padding: 80px 0;
}

.ccl-service-section:nth-child(even) {
	background: #1a1a1a;
}

.ccl-service-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

.ccl-service-text h2 {
	color: #1e88e5;
	margin-bottom: 1.5rem;
}

.ccl-service-text p {
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
	line-height: 1.8;
}

.ccl-service-features {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.ccl-service-feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
}

.ccl-service-feature:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	transform: translateX(10px);
}

.ccl-service-feature-icon {
	font-size: 2rem;
	color: #00e676;
	margin-top: 0.5rem;
}

.ccl-service-feature h4 {
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.ccl-service-feature p {
	color: #e0e0e0;
	opacity: 0.9;
	margin: 0;
}

.ccl-service-image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
}

.ccl-service-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: 16px;
}

/* ===== TROUBLESHOOTING PAGE SPECIFIC ===== */
.ccl-troubleshooting-hero {
	background: linear-gradient(
			135deg,
			rgba(18, 18, 18, 0.9),
			rgba(255, 0, 0, 0.2)
		),
		url('https://images.unsplash.com/photo-1609731346288-4d5a2d9fd574?w=1920&h=1080&fit=crop')
			center/cover;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.ccl-problem-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2.5rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.ccl-problem-card:hover::before {
	transform: scaleX(1);
}

.ccl-problem-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	box-shadow: 0 20px 40px rgba(255, 87, 34, 0.1);
}

.ccl-problem-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ccl-problem-icon {
	font-size: 2.5rem;
	color: #ff5722;
}

.ccl-problem-title {
	color: #ffffff;
	margin: 0;
}

.ccl-problem-symptoms {
	background: rgba(255, 87, 34, 0.1);
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.ccl-problem-symptoms h4 {
	color: #ff5722;
	margin-bottom: 0.5rem;
}

.ccl-problem-symptoms ul {
	list-style: none;
	padding-left: 0;
}

.ccl-problem-symptoms li {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.ccl-problem-symptoms li::before {
	content: '⚠️';
	position: absolute;
	left: 0;
	top: 0;
}

.ccl-problem-solutions {
	background: rgba(0, 230, 118, 0.1);
	border-radius: 8px;
	padding: 1rem;
}

.ccl-problem-solutions h4 {
	color: #00e676;
	margin-bottom: 0.5rem;
}

.ccl-problem-solutions ul {
	list-style: none;
	padding-left: 0;
}

.ccl-problem-solutions li {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.ccl-problem-solutions li::before {
	content: '✅';
	position: absolute;
	left: 0;
	top: 0;
}

/* ===== EFFICIENCY PAGE SPECIFIC ===== */
.ccl-efficiency-hero {
	background: linear-gradient(
			135deg,
			rgba(18, 18, 18, 0.9),
			rgba(76, 175, 80, 0.2)
		),
		url('assets/ccl-hero.webp') center/cover;
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.ccl-efficiency-card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	padding: 2.5rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	transition: all 0.3s ease;
	position: relative;
}

.ccl-efficiency-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #4caf50, #8bc34a);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ccl-efficiency-card:hover::before {
	transform: scaleX(1);
}

.ccl-efficiency-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	border-color: #00e676;
	box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

.ccl-efficiency-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.ccl-efficiency-icon {
	font-size: 2.5rem;
	color: #4caf50;
}

.ccl-efficiency-title {
	color: #ffffff;
	margin: 0;
}

.ccl-efficiency-tips {
	background: rgba(76, 175, 80, 0.1);
	border-radius: 8px;
	padding: 1rem;
	margin-bottom: 1.5rem;
}

.ccl-efficiency-tips h4 {
	color: #4caf50;
	margin-bottom: 0.5rem;
}

.ccl-efficiency-tips ul {
	list-style: none;
	padding-left: 0;
}

.ccl-efficiency-tips li {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.ccl-efficiency-tips li::before {
	content: '💡';
	position: absolute;
	left: 0;
	top: 0;
}

.ccl-efficiency-benefits {
	background: rgba(0, 230, 118, 0.1);
	border-radius: 8px;
	padding: 1rem;
}

.ccl-efficiency-benefits h4 {
	color: #00e676;
	margin-bottom: 0.5rem;
}

.ccl-efficiency-benefits ul {
	list-style: none;
	padding-left: 0;
}

.ccl-efficiency-benefits li {
	color: #e0e0e0;
	margin-bottom: 0.5rem;
	position: relative;
	padding-left: 1.5rem;
}

.ccl-efficiency-benefits li::before {
	content: '🌱';
	position: absolute;
	left: 0;
	top: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.ccl-fade-in {
	animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
	.ccl-nav {
		gap: 0;
	}
}

@media (max-width: 768px) {
	.ccl-container {
		padding: 0 1rem;
	}

	.ccl-header-content {
		padding: 0;
	}

	.ccl-nav {
		display: none;
	}

	.ccl-mobile-toggle {
		display: flex;
	}

	.ccl-hero h1 {
		font-size: 2.5rem;
	}

	.ccl-hero p {
		font-size: 1.1rem;
	}
	.ccl-grid-1,
	.ccl-grid-2,
	.ccl-grid-3,
	.ccl-grid-4 {
		grid-template-columns: 1fr;
	}

	.ccl-service-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ccl-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.ccl-cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.ccl-cookie-actions {
		width: 100%;
		justify-content: center;
	}

	.ccl-service-feature {
		flex-direction: column;
		text-align: center;
		justify-content: center;
		align-items: center;
	}

	.ccl-service-feature-icon {
		margin-top: 0;
	}

	.ccl-problem-header,
	.ccl-efficiency-header {
		flex-direction: column;
		text-align: center;
	}

	.ccl-case-study-header {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.ccl-hero h1 {
		font-size: 2rem;
	}

	.ccl-service-text h2 {
		font-size: 1.5rem;
	}
	.ccl-grid-1,
	.ccl-grid-2,
	.ccl-grid-3,
	.ccl-grid-4 {
		grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	}

	.ccl-hero p {
		font-size: 1rem;
	}

	.ccl-section {
		padding: 60px 0;
	}

	.ccl-card,
	.ccl-feature-card,
	.ccl-case-study-card,
	.ccl-article-preview {
		padding: 1.5rem;
	}

	.ccl-form {
		padding: 1.5rem;
	}

	.ccl-btn {
		padding: 0.8rem 1.5rem;
		font-size: 0.9rem;
	}

	.ccl-service-image img {
		height: 250px;
	}
}

.ccl-contact-hero {
	background: linear-gradient(
		135deg,
		rgba(18, 18, 18, 0.95),
		rgba(30, 136, 229, 0.1)
	);
	padding: 120px 0 80px;
	position: relative;
	overflow: hidden;
}

.ccl-contact-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(18, 18, 18, 0.7);
	z-index: 1;
}

.ccl-contact-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.ccl-contact-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	color: #e0e0e0;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.ccl-contact-hero h1 i {
	color: #00e676;
	margin-right: 1rem;
	font-size: 3rem;
}

.ccl-contact-hero p {
	font-size: 1.3rem;
	color: #b0b0b0;
	line-height: 1.6;
	opacity: 0.9;
}

/* Contact Info Grid */
.ccl-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-bottom: 4rem;
}

.ccl-contact-card {
	background: rgba(30, 136, 229, 0.05);
	border: 1px solid rgba(30, 136, 229, 0.2);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ccl-contact-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #1e88e5, #00e676);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.ccl-contact-card:hover {
	transform: translateY(-5px);
	background: rgba(30, 136, 229, 0.08);
	border-color: rgba(0, 230, 118, 0.3);
	box-shadow: 0 20px 40px rgba(0, 230, 118, 0.1);
}

.ccl-contact-card:hover::before {
	opacity: 1;
}

.ccl-contact-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #1e88e5, #00e676);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #121212;
	transition: transform 0.3s ease;
}

.ccl-contact-card:hover .ccl-contact-icon {
	transform: scale(1.1) rotate(5deg);
}

.ccl-contact-card h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 1.5rem;
}

.ccl-contact-details p {
	color: #b0b0b0;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.ccl-contact-details strong {
	color: #00e676;
	font-weight: 600;
}

.ccl-contact-details a {
	color: #1e88e5;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.ccl-contact-details a:hover {
	color: #00e676;
}

.ccl-contact-details em {
	font-size: 0.9rem;
	opacity: 0.8;
}

/* Contact Main Section */
.ccl-contact-main {
	background: rgba(30, 136, 229, 0.02);
}

.ccl-contact-main-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
}

.ccl-contact-form-container h2 {
	font-size: 2rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ccl-contact-form-container h2 i {
	color: #00e676;
	font-size: 1.8rem;
}

/* Enhanced Form Styles */
.ccl-contact-form {
	background: rgba(18, 18, 18, 0.8);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid rgba(30, 136, 229, 0.2);
	backdrop-filter: blur(10px);
}

.ccl-form-group {
	margin-bottom: 2rem;
	position: relative;
}

.ccl-form-label {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	color: #00e676;
	margin-bottom: 0.8rem;
	transition: color 0.3s ease;
}

.ccl-form-input,
.ccl-form-select,
.ccl-form-textarea {
	width: 100%;
	padding: 1rem 1.2rem;
	font-size: 1rem;
	font-family: 'Inter', sans-serif;
	background: rgba(224, 224, 224, 0.05);
	border: 2px solid rgba(30, 136, 229, 0.3);
	border-radius: 12px;
	color: #e0e0e0;
	transition: all 0.3s ease;
	outline: none;
}

.ccl-form-input::placeholder,
.ccl-form-textarea::placeholder {
	color: rgba(224, 224, 224, 0.5);
}

.ccl-form-input:focus,
.ccl-form-select:focus,
.ccl-form-textarea:focus {
	border-color: #00e676;
	background: rgba(0, 230, 118, 0.05);
	box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.1);
}

.ccl-form-textarea {
	min-height: 120px;
	resize: vertical;
	line-height: 1.6;
}

.ccl-form-select {
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300E676' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2em;
	padding-right: 3rem;
}

.ccl-form-error {
	position: absolute;
	bottom: -1.5rem;
	left: 0;
	font-size: 0.85rem;
	color: #ff5252;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.3s ease;
}

.ccl-form-group.error .ccl-form-input,
.ccl-form-group.error .ccl-form-select,
.ccl-form-group.error .ccl-form-textarea {
	border-color: #ff5252;
	background: rgba(255, 82, 82, 0.05);
}

.ccl-form-group.error .ccl-form-error {
	opacity: 1;
	transform: translateY(0);
}

.ccl-form-group.error .ccl-form-label {
	color: #ff5252;
}

.ccl-btn-full {
	width: 100%;
	margin-top: 1rem;
}

/* Contact Aside */
.ccl-contact-aside {
	display: flex;
	height: 100%;
	flex-direction: column;
	min-height: 200px;
	gap: 2.5rem;
}

.ccl-map-container {
	background: rgba(18, 18, 18, 0.8);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
	display: flex;
	flex-direction: column;
	min-height: 200px;
	height: 100%;
}

.ccl-map-container h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.ccl-map-container h3 i {
	color: #00e676;
}

.ccl-map {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(30, 136, 229, 0.3);
}

.ccl-map iframe {
	filter: grayscale(30%) contrast(1.2);
	transition: filter 0.3s ease;
}

.ccl-map:hover iframe {
	filter: grayscale(0%) contrast(1);
}

/* Contact FAQ */
.ccl-contact-faq {
	background: rgba(18, 18, 18, 0.8);
	border-radius: 20px;
	padding: 2rem;
	border: 1px solid rgba(30, 136, 229, 0.2);
}

.ccl-contact-faq h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.ccl-contact-faq h3 i {
	color: #00e676;
}

.ccl-contact-faq-item {
	margin-bottom: 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.ccl-contact-faq-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.ccl-contact-faq-item h4 {
	font-size: 1rem;
	font-weight: 600;
	color: #00e676;
	margin-bottom: 0.8rem;
	line-height: 1.4;
}

.ccl-contact-faq-item p {
	font-size: 0.95rem;
	color: #b0b0b0;
	line-height: 1.6;
	margin: 0;
}

/* Team Section */
.ccl-team-section {
	background: rgba(0, 230, 118, 0.02);
}

.ccl-team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.ccl-team-card {
	background: rgba(18, 18, 18, 0.8);
	border: 1px solid rgba(30, 136, 229, 0.2);
	border-radius: 20px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ccl-team-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(0, 230, 118, 0.1),
		transparent
	);
	transition: left 0.6s ease;
}

.ccl-team-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 230, 118, 0.4);
	box-shadow: 0 25px 50px rgba(0, 230, 118, 0.15);
}

.ccl-team-card:hover::before {
	left: 100%;
}

.ccl-team-avatar {
	width: 100px;
	height: 100px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #1e88e5, #00e676);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.5rem;
	color: #121212;
	transition: transform 0.3s ease;
	position: relative;
}

.ccl-team-card:hover .ccl-team-avatar {
	transform: scale(1.1);
}

.ccl-team-card h4 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #e0e0e0;
	margin-bottom: 0.5rem;
}

.ccl-team-role {
	font-size: 1rem;
	color: #00e676;
	font-weight: 500;
	margin-bottom: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ccl-team-card p {
	font-size: 0.95rem;
	color: #b0b0b0;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Design for Contact Page */
@media (max-width: 1024px) {
	.ccl-contact-main-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.ccl-contact-info-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 1.5rem;
	}

	.ccl-team-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.ccl-contact-hero h1 {
		font-size: 2.5rem;
	}

	.ccl-contact-hero h1 i {
		font-size: 2rem;
	}

	.ccl-contact-hero p {
		font-size: 1.1rem;
	}

	.ccl-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ccl-contact-card {
		padding: 2rem 1.5rem;
	}

	.ccl-contact-form {
		padding: 2rem;
		border-radius: 16px;
	}

	.ccl-contact-form-container h2 {
		font-size: 1.6rem;
	}

	.ccl-map-container,
	.ccl-contact-faq {
		padding: 1.5rem;
		border-radius: 16px;
	}

	.ccl-team-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.ccl-team-card {
		padding: 2rem 1.5rem;
	}

	.ccl-hero-content h1 {
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.ccl-problem-card {
		padding: 2rem;
	}

	.ccl-section h2 {
		font-size: 1.5rem;
	}

	.ccl-contact-hero h1 {
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.ccl-contact-hero h1 i {
		font-size: 1.5rem;
		margin-right: 0.5rem;
	}

	.ccl-contact-hero p {
		font-size: 1rem;
	}

	.ccl-contact-card {
		padding: 1.5rem 1rem;
	}

	.ccl-contact-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
		margin-bottom: 1rem;
	}

	.ccl-contact-card h3 {
		font-size: 1.3rem;
		margin-bottom: 1rem;
	}

	.ccl-contact-form {
		padding: 1.5rem;
		border-radius: 12px;
	}

	.ccl-contact-form-container h2 {
		font-size: 1.4rem;
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}

	.ccl-form-group {
		margin-bottom: 1.5rem;
	}

	.ccl-form-input,
	.ccl-form-select,
	.ccl-form-textarea {
		padding: 0.8rem 1rem;
		font-size: 0.95rem;
	}

	.ccl-form-textarea {
		min-height: 100px;
	}

	.ccl-map-container,
	.ccl-contact-faq {
		padding: 1.2rem;
	}

	.ccl-contact-faq-item {
		margin-bottom: 1.5rem;
		padding-bottom: 1rem;
	}

	.ccl-team-card {
		padding: 1.5rem 1rem;
	}

	.ccl-team-avatar {
		width: 80px;
		height: 80px;
		font-size: 2rem;
		margin-bottom: 1rem;
	}

	.ccl-team-card h4 {
		font-size: 1.2rem;
	}

	.ccl-team-role {
		font-size: 0.9rem;
	}

	.ccl-team-card p {
		font-size: 0.9rem;
	}
}

.ccl-legal-hero {
	background: linear-gradient(
		135deg,
		rgba(30, 136, 229, 0.1) 0%,
		rgba(0, 230, 118, 0.05) 100%
	);
	padding: 120px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.ccl-legal-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(30,136,229,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
	opacity: 0.3;
}

.ccl-legal-title {
	font-size: 3rem;
	font-weight: 700;
	color: var(--ccl-primary);
	margin-bottom: 1rem;
	position: relative;
	z-index: 1;
}

.ccl-legal-title i {
	margin-right: 1rem;
	color: var(--ccl-accent);
}

.ccl-legal-subtitle {
	font-size: 1.2rem;
	color: var(--ccl-text-light);
	position: relative;
	z-index: 1;
}

.ccl-legal-content {
	padding: 80px 0;
	background: var(--ccl-background);
}

.ccl-legal-document {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.02);
	padding: 40px;
	border-radius: 15px;
	border: 1px solid rgba(30, 136, 229, 0.1);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ccl-legal-date {
	text-align: center;
	font-style: italic;
	color: var(--ccl-text-light);
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(30, 136, 229, 0.2);
}

.ccl-legal-section {
	margin-bottom: 40px;
	padding: 20px 0;
}

.ccl-legal-section h2 {
	font-size: 1.5rem;
	color: var(--ccl-primary);
	margin-bottom: 20px;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.ccl-legal-section h2 i {
	margin-right: 12px;
	color: var(--ccl-accent);
	font-size: 1.2rem;
}

.ccl-legal-section p {
	color: var(--ccl-text-light);
	line-height: 1.7;
	margin-bottom: 15px;
}

.ccl-legal-section ul {
	margin: 15px 0;
	padding-left: 20px;
}

.ccl-legal-section li {
	color: var(--ccl-text-light);
	line-height: 1.6;
	margin-bottom: 8px;
	position: relative;
}

.ccl-legal-section li::marker {
	color: var(--ccl-accent);
}

.ccl-contact-info-legal {
	background: rgba(30, 136, 229, 0.05);
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
	border-left: 4px solid var(--ccl-primary);
}

.ccl-contact-info-legal p {
	margin-bottom: 8px;
	color: var(--ccl-text-light);
}

.ccl-contact-info-legal strong {
	color: var(--ccl-primary);
}

/* Cookie Table Styles */
.ccl-cookie-table {
	margin-top: 40px;
	background: rgba(30, 136, 229, 0.03);
	padding: 30px;
	border-radius: 10px;
	border: 1px solid rgba(30, 136, 229, 0.1);
}

.ccl-cookie-table h3 {
	color: var(--ccl-primary);
	margin-bottom: 20px;
	font-size: 1.3rem;
	display: flex;
	align-items: center;
}

.ccl-cookie-table h3 i {
	margin-right: 10px;
	color: var(--ccl-accent);
}

.ccl-legal-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 15px;
	background: rgba(255, 255, 255, 0.02);
	border-radius: 8px;
	overflow: hidden;
}

.ccl-legal-table th {
	background: rgba(30, 136, 229, 0.1);
	color: var(--ccl-primary);
	padding: 15px;
	text-align: left;
	font-weight: 600;
	border-bottom: 2px solid var(--ccl-primary);
}

.ccl-legal-table td {
	padding: 12px 15px;
	color: var(--ccl-text-light);
	border-bottom: 1px solid rgba(30, 136, 229, 0.1);
}

.ccl-legal-table tr:hover {
	background: rgba(30, 136, 229, 0.05);
	transition: background-color 0.3s ease;
}

/* Mobile Responsive for Legal Pages */
@media (max-width: 768px) {
	.ccl-legal-title {
		font-size: 2rem;
	}

	.ccl-legal-subtitle {
		font-size: 1rem;
	}

	.ccl-legal-document {
		padding: 20px;
		margin: 0 20px;
	}

	.ccl-legal-section h2 {
		font-size: 1.2rem;
	}

	.ccl-legal-table {
		font-size: 0.85rem;
	}

	.ccl-legal-table th,
	.ccl-legal-table td {
		padding: 10px 8px;
	}

	.ccl-contact-info-legal {
		padding: 15px;
	}

	.ccl-cookie-table {
		padding: 20px;
		margin: 20px 0;
	}
}

@media (max-width: 480px) {
	.ccl-legal-hero {
		padding: 100px 0 60px;
	}

	.ccl-legal-title {
		font-size: 1.5rem;
	}

	.ccl-legal-document {
		margin: 0 10px;
		padding: 15px;
	}

	.ccl-legal-table {
		display: block;
		overflow-x: auto;
		white-space: nowrap;
	}

	.ccl-legal-table tr {
		border: 1px solid rgba(30, 136, 229, 0.2);
		margin-bottom: 10px;

		border-radius: 5px;
		background: rgba(255, 255, 255, 0.02);
	}

	.ccl-legal-table td {
		border: none;
		padding: 8px;
		position: relative;
		white-space: normal;
	}
}
