* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	/* Color Palette */
	--cf-bg-primary: #f8fafc;
	--cf-bg-content: #ffffff;
	--cf-accent-blue: #0078d7;
	--cf-accent-orange: #ff7a00;
	--cf-divider: #e1e4e8;
	--cf-text-primary: #1a1f23;
	--cf-text-secondary: #5e6b74;
	--cf-text-heading: #0d1117;
	--cf-footer-bg: #f1f3f5;
	--cf-header-border: #0078d7;

	/* Transitions */
	--cf-transition: 0.35s ease;

	/* Shadows */
	--cf-shadow-sm: 0 2px 8px rgba(0, 120, 215, 0.08);
	--cf-shadow-md: 0 4px 16px rgba(0, 120, 215, 0.12);
	--cf-shadow-lg: 0 8px 32px rgba(0, 120, 215, 0.16);
	--cf-glow-blue: 0 0 20px rgba(0, 120, 215, 0.3);
	--cf-glow-orange: 0 0 20px rgba(255, 122, 0, 0.3);
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: var(--cf-text-primary);
	background-color: var(--cf-bg-primary);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Orbitron', sans-serif;
	font-weight: 600;
	color: var(--cf-text-heading);
	line-height: 1.3;
	margin-bottom: 1rem;
}

h1 {
	font-size: 3.5rem;
	letter-spacing: -0.02em;
}

h2 {
	font-size: 2.75rem;
	letter-spacing: -0.01em;
}

h3 {
	font-size: 2rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1.25rem;
	color: var(--cf-text-secondary);
	font-size: 1.0625rem;
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--cf-transition);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul,
ol {
	list-style: none;
}

button {
	border: none;
	background: none;
	cursor: pointer;
	font-family: inherit;
	transition: var(--cf-transition);
}

input,
textarea,
select {
	font-family: inherit;
	font-size: 1rem;
	border: none;
	outline: none;
}

/* ==========================================================================
   2. UTILITY CLASSES
   ========================================================================== */

.cf-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cf-container-wide {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cf-container-narrow {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 2rem;
}

.cf-section {
	padding: 6rem 0;
	position: relative;
}

.cf-section-lg {
	padding: 8rem 0;
}

.cf-section-sm {
	padding: 4rem 0;
}

.cf-text-center {
	text-align: center;
}

.cf-text-blue {
	color: var(--cf-accent-blue);
}

.cf-text-orange {
	color: var(--cf-accent-orange);
}

.cf-bg-white {
	background-color: var(--cf-bg-content);
}

.cf-bg-light {
	background-color: var(--cf-bg-primary);
}

.cf-mb-1 {
	margin-bottom: 1rem;
}

.cf-mb-2 {
	margin-bottom: 2rem;
}

.cf-mb-3 {
	margin-bottom: 3rem;
}

.cf-mt-1 {
	margin-top: 1rem;
}

.cf-mt-2 {
	margin-top: 2rem;
}

.cf-mt-3 {
	margin-top: 3rem;
}

/* ==========================================================================
   3. ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes cf-fade-up {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cf-fade-down {
	from {
		opacity: 0;
		transform: translateY(-40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes cf-fade-left {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cf-fade-right {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes cf-rotate-in {
	from {
		opacity: 0;
		transform: rotate(-10deg) scale(0.9);
	}
	to {
		opacity: 1;
		transform: rotate(0) scale(1);
	}
}

@keyframes cf-zoom-fade {
	from {
		opacity: 0;
		transform: scale(0.85);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes cf-pulse-glow {
	0%,
	100% {
		box-shadow: 0 0 0 rgba(0, 120, 215, 0);
	}
	50% {
		box-shadow: 0 0 20px rgba(0, 120, 215, 0.4);
	}
}

@keyframes cf-slide-up {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.cf-animate-fade-up {
	animation: cf-fade-up 0.8s ease-out forwards;
}

.cf-animate-fade-down {
	animation: cf-fade-down 0.8s ease-out forwards;
}

.cf-animate-fade-left {
	animation: cf-fade-left 0.8s ease-out forwards;
}

.cf-animate-fade-right {
	animation: cf-fade-right 0.8s ease-out forwards;
}

.cf-animate-rotate-in {
	animation: cf-rotate-in 0.9s ease-out forwards;
}

.cf-animate-zoom-fade {
	animation: cf-zoom-fade 0.7s ease-out forwards;
}

.cf-animate-delay-1 {
	animation-delay: 0.1s;
	opacity: 0;
}

.cf-animate-delay-2 {
	animation-delay: 0.2s;
	opacity: 0;
}

.cf-animate-delay-3 {
	animation-delay: 0.3s;
	opacity: 0;
}

.cf-animate-delay-4 {
	animation-delay: 0.4s;
	opacity: 0;
}

.cf-animate-delay-5 {
	animation-delay: 0.5s;
	opacity: 0;
}

/* ==========================================================================
   4. HEADER STYLES
   ========================================================================== */

.cf-header {
	background-color: var(--cf-bg-content);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--cf-shadow-sm);
	border-bottom: 3px solid var(--cf-header-border);
}

.cf-header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 2rem;
	max-width: 1440px;
	margin: 0 auto;
}

.cf-logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--cf-text-heading);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cf-logo-accent {
	color: var(--cf-accent-orange);
}

.cf-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.cf-nav-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--cf-text-primary);
	padding: 0.5rem 0;
	position: relative;
}

.cf-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		var(--cf-accent-blue),
		var(--cf-accent-orange)
	);
	transition: width var(--cf-transition);
}

.cf-nav-link:hover {
	color: var(--cf-accent-blue);
}

.cf-nav-link:hover::after {
	width: 100%;
}

.cf-nav-link.active {
	color: var(--cf-accent-blue);
}

.cf-nav-link.active::after {
	width: 100%;
}

.cf-nav-icon {
	font-size: 1rem;
}

/* Mobile Menu Button */
.cf-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0.5rem;
}

.cf-menu-bar {
	width: 28px;
	height: 3px;
	background-color: var(--cf-text-heading);
	border-radius: 2px;
	transition: var(--cf-transition);
}

.cf-menu-toggle.active .cf-menu-bar:nth-child(1) {
	transform: rotate(45deg) translateY(8px);
}

.cf-menu-toggle.active .cf-menu-bar:nth-child(2) {
	opacity: 0;
}

.cf-menu-toggle.active .cf-menu-bar:nth-child(3) {
	transform: rotate(-45deg) translate(3px, -12px);
}

/* ==========================================================================
   5. FOOTER STYLES
   ========================================================================== */

.cf-footer {
	background-color: var(--cf-footer-bg);
	padding: 4rem 0 2rem;
	border-top: 1px solid var(--cf-divider);
}

.cf-footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}

.cf-footer-section h4 {
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
	color: var(--cf-text-heading);
}

.cf-footer-section p {
	font-size: 0.9375rem;
	line-height: 1.7;
}

.cf-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.cf-footer-link {
	font-size: 0.9375rem;
	color: var(--cf-text-secondary);
	transition: var(--cf-transition);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.cf-footer-link:hover {
	color: var(--cf-accent-blue);
	transform: translateX(5px);
}

.cf-footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.cf-footer-contact-icon {
	color: var(--cf-accent-blue);
	font-size: 1.125rem;
	margin-top: 0.25rem;
}

.cf-footer-contact-text {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.cf-footer-bottom {
	border-top: 1px solid var(--cf-divider);
	padding-top: 2rem;
	text-align: center;
}

.cf-footer-bottom p {
	font-size: 0.875rem;
	color: var(--cf-text-secondary);
	margin-bottom: 0;
}

/* ==========================================================================
   6. BUTTON STYLES
   ========================================================================== */

.cf-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	transition: var(--cf-transition);
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.cf-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.3),
		transparent
	);
	transition: left 0.5s;
}

.cf-btn:hover::before {
	left: 100%;
}

.cf-btn-primary {
	background: linear-gradient(135deg, var(--cf-accent-blue), #0056a3);
	color: #ffffff;
	box-shadow: var(--cf-shadow-md);
}

.cf-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: var(--cf-shadow-lg), var(--cf-glow-blue);
}

.cf-btn-secondary {
	background: linear-gradient(135deg, var(--cf-accent-orange), #e66b00);
	color: #ffffff;
	box-shadow: var(--cf-shadow-md);
}

.cf-btn-secondary:hover {
	transform: translateY(-3px);
	box-shadow: var(--cf-shadow-lg), var(--cf-glow-orange);
}

.cf-btn-outline {
	background: transparent;
	border: 2px solid var(--cf-accent-blue);
	color: var(--cf-accent-blue);
}

.cf-btn-outline:hover {
	background: var(--cf-accent-blue);
	color: #ffffff;
	transform: translateY(-3px);
}

.cf-btn-large {
	padding: 1.25rem 2.5rem;
	font-size: 1.125rem;
}

.cf-btn-small {
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.cf-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: linear-gradient(
		135deg,
		rgba(0, 120, 215, 0.05),
		rgba(255, 122, 0, 0.05)
	);
}

.cf-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;

	z-index: 0;
}

.cf-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(0, 120, 215, 0.9),
		rgba(255, 122, 0, 0.7)
	);
	z-index: 1;
}

.cf-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 3rem 2rem;
}

.cf-hero-title {
	font-size: 4.5rem;
	color: #ffffff;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cf-hero-subtitle {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 2.5rem;
	line-height: 1.6;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
}

.cf-hero-cta {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
}

/* ==========================================================================
   8. CARD STYLES
   ========================================================================== */

.cf-card {
	background: var(--cf-bg-content);
	border-radius: 12px;
	padding: 2rem;
	box-shadow: var(--cf-shadow-sm);
	transition: var(--cf-transition);
	border: 1px solid var(--cf-divider);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.cf-card a {
	margin-top: auto;
}

.cf-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cf-shadow-lg);
	border-color: var(--cf-accent-blue);
}

.cf-card-icon {
	width: 60px;
	height: 60px;
	border-radius: 12px;
	background: linear-gradient(
		135deg,
		var(--cf-accent-blue),
		var(--cf-accent-orange)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.cf-card-title {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--cf-text-heading);
}

.cf-card-text {
	font-size: 1rem;
	color: var(--cf-text-secondary);
	line-height: 1.7;
	margin-bottom: 1.5rem;
}

.cf-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--cf-accent-blue);
	font-weight: 600;
	font-size: 0.9375rem;
}

.cf-card-link:hover {
	gap: 0.75rem;
}

.cf-card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 1.5rem;
}

/* ==========================================================================
   9. GRID LAYOUTS
   ========================================================================== */

.cf-grid {
	display: grid;
	gap: 2rem;
}

.cf-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.cf-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.cf-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

.cf-grid-auto {
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ==========================================================================
   10. FORM STYLES
   ========================================================================== */

.cf-form {
	background: var(--cf-bg-content);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: var(--cf-shadow-md);
}

.cf-form-group {
	margin-bottom: 1.75rem;
}

.cf-form-label {
	display: block;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--cf-text-heading);
	margin-bottom: 0.5rem;
}

.cf-form-input,
.cf-form-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 1rem;
	border: 2px solid var(--cf-divider);
	border-radius: 8px;
	background: var(--cf-bg-primary);
	color: var(--cf-text-primary);
	transition: var(--cf-transition);
}

.cf-form-input:focus,
.cf-form-textarea:focus {
	border-color: var(--cf-accent-blue);
	box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.1);
	background: var(--cf-bg-content);
}

.cf-form-textarea {
	min-height: 150px;
	resize: vertical;
}

.cf-form-error {
	color: #dc2626;
	font-size: 0.875rem;
	margin-top: 0.5rem;
	display: none;
}

.cf-form-error.active {
	display: block;
}

.cf-form-input.error,
.cf-form-textarea.error {
	border-color: #dc2626;
}

.cf-form-success {
	background: #10b981;
	color: #ffffff;
	padding: 1rem;
	border-radius: 8px;
	text-align: center;
	font-weight: 600;
	display: none;
}

.cf-form-success.active {
	display: block;
}

/* ==========================================================================
   11. SECTION TITLE STYLES
   ========================================================================== */

.cf-section-title {
	text-align: center;
	margin-bottom: 4rem;
}

.cf-section-label {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--cf-accent-orange);
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	background: rgba(255, 122, 0, 0.1);
	border-radius: 20px;
}

.cf-section-heading {
	font-size: 2.75rem;
	margin-bottom: 1.25rem;
}

.cf-section-description {
	font-size: 1.125rem;
	color: var(--cf-text-secondary);
	max-width: 700px;
	margin: 0 auto;
}

/* ==========================================================================
   12. IMAGE BLOCK STYLES
   ========================================================================== */

.cf-image-block {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4rem;
	align-items: center;
	margin-bottom: 6rem;
}

.cf-image-block:nth-child(even) .cf-image-block-image {
	order: 2;
}
.cf-image-block-image {
	width: 100%;
	height: 100%;
}

.cf-image-block-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: var(--cf-shadow-lg);
}

.cf-image-block-content h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.cf-image-block-content p {
	font-size: 1.0625rem;
	line-height: 1.8;
	margin-bottom: 1.25rem;
}

.cf-image-block-content ul {
	list-style: none;
	margin-top: 1.5rem;
}

.cf-image-block-content ul li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
	font-size: 1rem;
	color: var(--cf-text-secondary);
}

.cf-image-block-content ul li i {
	color: var(--cf-accent-blue);
	font-size: 1.25rem;
	margin-top: 0.25rem;
}

/* ==========================================================================
   13. SLIDER/CAROUSEL STYLES
   ========================================================================== */

.cf-slider-container {
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.cf-slider {
	display: flex;
	gap: 2rem;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.cf-slider::-webkit-scrollbar {
	display: none;
}

.cf-slider-item {
	flex: 0 0 350px;
	scroll-snap-align: start;
}

.cf-slider-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.cf-slider-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--cf-accent-blue);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	box-shadow: var(--cf-shadow-md);
}

.cf-slider-btn:hover {
	background: var(--cf-accent-orange);
	transform: scale(1.1);
}

/* ==========================================================================
   14. TEAM/PROFILE CARDS
   ========================================================================== */

.cf-team-card {
	background: var(--cf-bg-content);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--cf-shadow-sm);
	transition: var(--cf-transition);
}

.cf-team-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--cf-shadow-lg);
}

.cf-team-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

.cf-team-content {
	padding: 2rem;
	text-align: center;
}

.cf-team-name {
	font-size: 1.5rem;
	color: var(--cf-text-heading);
	margin-bottom: 0.5rem;
}

.cf-team-role {
	font-size: 1rem;
	color: var(--cf-accent-blue);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.cf-team-location {
	font-size: 0.9375rem;
	color: var(--cf-text-secondary);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.cf-team-quote {
	font-size: 0.9375rem;
	font-style: italic;
	color: var(--cf-text-secondary);
	line-height: 1.6;
	border-left: 3px solid var(--cf-accent-orange);
	padding-left: 1rem;
	text-align: left;
}

/* ==========================================================================
   15. CONTACT SECTION STYLES
   ========================================================================== */

.cf-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.cf-contact-info {
	background: var(--cf-bg-content);
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: var(--cf-shadow-md);
}

.cf-contact-info h3 {
	font-size: 1.75rem;
	margin-bottom: 2rem;
}

.cf-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--cf-divider);
}

.cf-contact-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cf-contact-icon {
	width: 50px;
	height: 50px;
	border-radius: 10px;
	background: linear-gradient(
		135deg,
		var(--cf-accent-blue),
		var(--cf-accent-orange)
	);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.25rem;
	flex-shrink: 0;
}

.cf-contact-details h4 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
	color: var(--cf-text-heading);
}

.cf-contact-details p {
	font-size: 1rem;
	color: var(--cf-text-secondary);
	margin-bottom: 0;
}

.cf-map-container {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--cf-shadow-lg);
}

.cf-map {
	width: 100%;
	height: 100%;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cf-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0.5rem;

	overflow: hidden;
}

@media (max-width: 768px) {
	.cf-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.cf-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0.5rem;
	/* overflow: hidden; */
}

.cf-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0.5rem;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

/* ==========================================================================
   16. COOKIE POPUP STYLES
   ========================================================================== */

.cf-cookie-popup {
	position: fixed;
	bottom: -200px;
	display: none;
	left: 50%;
	transform: translateX(-50%);
	max-width: 600px;
	width: 90%;
	background: var(--cf-bg-content);
	padding: 2rem;
	border-radius: 12px;
	box-shadow: var(--cf-shadow-lg);
	z-index: 10000;
	transition: bottom 0.5s ease;
	border: 2px solid var(--cf-accent-blue);
}

.cf-cookie-popup.show {
	bottom: 2rem;
	display: block;
}

.cf-cookie-popup h4 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
	color: var(--cf-text-heading);
}

.cf-cookie-popup p {
	font-size: 0.9375rem;
	margin-bottom: 1.5rem;
	color: var(--cf-text-secondary);
}

.cf-cookie-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.cf-cookie-link {
	color: var(--cf-accent-blue);
	font-weight: 600;
	text-decoration: underline;
}

/* ==========================================================================
   17. BREADCRUMB STYLES
   ========================================================================== */

.cf-breadcrumb {
	padding: 2rem 0;
	background: var(--cf-bg-primary);
}

.cf-breadcrumb-list {
	display: flex;
	gap: 0.75rem;
	align-items: center;
	flex-wrap: wrap;
}

.cf-breadcrumb-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
}

.cf-breadcrumb-link {
	color: var(--cf-text-secondary);
	transition: var(--cf-transition);
}

.cf-breadcrumb-link:hover {
	color: var(--cf-accent-blue);
}

.cf-breadcrumb-separator {
	color: var(--cf-text-secondary);
}

.cf-breadcrumb-current {
	color: var(--cf-text-heading);
	font-weight: 600;
}

/* ==========================================================================
   18. ACCORDION STYLES
   ========================================================================== */

.cf-accordion {
	background: var(--cf-bg-content);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: var(--cf-shadow-sm);
}

.cf-accordion-item {
	border-bottom: 1px solid var(--cf-divider);
}

.cf-accordion-item:last-child {
	border-bottom: none;
}

.cf-accordion-header {
	width: 100%;
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--cf-bg-content);
	cursor: pointer;
	transition: var(--cf-transition);
}

.cf-accordion-header:hover {
	background: var(--cf-bg-primary);
}

.cf-accordion-title {
	font-size: 1.125rem;
	text-align: left;
	font-weight: 600;
	margin-bottom: 0;
	color: var(--cf-text-heading);
}

.cf-accordion-icon {
	font-size: 1.25rem;
	color: var(--cf-accent-blue);
	transition: transform var(--cf-transition);
}

.cf-accordion-header.active .cf-accordion-icon {
	transform: rotate(180deg);
}

.cf-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.cf-accordion-content.active {
	max-height: 2000px;
}

.cf-accordion-body {
	padding: 1rem 2rem 1.5rem;
	color: var(--cf-text-secondary);
	line-height: 1.7;
}

/* ==========================================================================
   19. TAB STYLES
   ========================================================================== */

.cf-tabs {
	margin-bottom: 3rem;
}

.cf-tab-list {
	display: flex;
	gap: 1rem;
	border-bottom: 2px solid var(--cf-divider);
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.cf-tab-button {
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--cf-text-secondary);
	background: transparent;
	border: none;
	border-bottom: 3px solid transparent;
	cursor: pointer;
	transition: var(--cf-transition);
	position: relative;
	bottom: -2px;
}

.cf-tab-button:hover {
	color: var(--cf-accent-blue);
}

.cf-tab-button.active {
	color: var(--cf-accent-blue);
	border-bottom-color: var(--cf-accent-blue);
}

.cf-tab-content {
	display: none;
	animation: cf-fade-up 0.5s ease;
}

.cf-tab-content.active {
	display: block;
}

/* ==========================================================================
   20. FEATURE LIST STYLES
   ========================================================================== */

.cf-feature-list {
	display: grid;
	gap: 2rem;
}

.cf-feature-item {
	display: flex;
	gap: 1.5rem;
	padding: 2rem;
	background: var(--cf-bg-content);
	border-radius: 12px;
	box-shadow: var(--cf-shadow-sm);
	transition: var(--cf-transition);
	border-left: 4px solid var(--cf-accent-blue);
}

.cf-feature-item:hover {
	transform: translateX(8px);
	box-shadow: var(--cf-shadow-md);
}

.cf-feature-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(
		135deg,
		var(--cf-accent-blue),
		var(--cf-accent-orange)
	);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: 'Orbitron', sans-serif;
	flex-shrink: 0;
}

.cf-feature-content h4 {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.cf-feature-content p {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 0;
}

/* ==========================================================================
   21. STATISTICS SECTION
   ========================================================================== */

.cf-stats {
	background: linear-gradient(
		135deg,
		var(--cf-accent-blue),
		var(--cf-accent-orange)
	);
	padding: 5rem 0;
	color: #ffffff;
}

.cf-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3rem;
}

.cf-stat-item {
	text-align: center;
}

.cf-stat-number {
	font-size: 3.5rem;
	font-family: 'Orbitron', sans-serif;
	font-weight: 700;
	margin-bottom: 0.5rem;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cf-stat-label {
	font-size: 1.125rem;
	opacity: 0.95;
}

/* ==========================================================================
   22. CONTENT PAGE STYLES
   ========================================================================== */

.cf-page-header {
	background: linear-gradient(
		135deg,
		rgba(0, 120, 215, 0.1),
		rgba(255, 122, 0, 0.1)
	);
	padding: 5rem 0 3rem;
	text-align: center;
}

.cf-page-title {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}

.cf-page-subtitle {
	font-size: 1.25rem;
	color: var(--cf-text-secondary);
	max-width: 800px;
	margin: 0 auto;
}

.cf-content-section {
	background: var(--cf-bg-content);
	padding: 3rem;
	border-radius: 12px;
	box-shadow: var(--cf-shadow-sm);
	margin-bottom: 3rem;
}

.cf-content-section h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 3px solid var(--cf-accent-blue);
}

.cf-content-section h4 {
	font-size: 1.5rem;
	/* margin-top: 2rem;
	margin-bottom: 1rem; */
	color: var(--cf-accent-blue);
}

.cf-content-section p {
	font-size: 1.0625rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.cf-content-section ul,
.cf-content-section ol {
	margin: 1.5rem 0;
}

.cf-content-section ul {
	list-style: none;
}

.cf-content-section ul li {
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1rem;
	color: var(--cf-text-secondary);
}

.cf-content-section ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6em;
	width: 8px;
	height: 8px;
	background: var(--cf-accent-blue);
	border-radius: 50%;
}

.cf-content-section ol {
	list-style: decimal;
	list-style-position: outside;
}

.cf-content-section ol li {
	margin-bottom: 1rem;
	color: var(--cf-text-secondary);
	padding-left: 0.5rem;
}

/* ==========================================================================
   23. LEGAL PAGES STYLES
   ========================================================================== */

.cf-legal-page {
	padding: 6rem 0;
}

.cf-legal-content {
	max-width: 900px;
	margin: 0 auto;
	background: var(--cf-bg-content);
	padding: 4rem;
	border-radius: 12px;
	box-shadow: var(--cf-shadow-md);
}

.cf-legal-content h1 {
	font-size: 3rem;
	margin-bottom: 1rem;
	color: var(--cf-text-heading);
}

.cf-legal-date {
	font-size: 0.9375rem;
	color: var(--cf-text-secondary);
	margin-bottom: 3rem;
	display: block;
}

.cf-legal-content h2 {
	font-size: 2rem;
	margin-top: 3rem;
	margin-bottom: 1.5rem;
	color: var(--cf-accent-blue);
}

.cf-legal-content h3 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.cf-legal-content p {
	font-size: 1.0625rem;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.cf-legal-content ul {
	margin: 1.5rem 0;
	padding-left: 2rem;
}

.cf-legal-content ul li {
	margin-bottom: 1rem;
	color: var(--cf-text-secondary);
	line-height: 1.7;
}

.cf-legal-content a {
	color: var(--cf-accent-blue);
	text-decoration: underline;
}

.cf-legal-content a:hover {
	color: var(--cf-accent-orange);
}

/* ==========================================================================
   24. RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
	h1 {
		font-size: 3rem;
	}

	h2 {
		font-size: 2.25rem;
	}

	.cf-hero-title {
		font-size: 3.5rem;
	}

	.cf-footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.cf-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.cf-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.cf-contact-wrapper {
		gap: 3rem;
	}

	.cf-nav {
		position: fixed;
		top: 84px;
		right: -100%;
		width: 280px;
		height: calc(100vh - 80px);
		background: var(--cf-bg-content);
		flex-direction: column;
		padding: 2rem;
		box-shadow: var(--cf-shadow-lg);
		transition: right var(--cf-transition);
		gap: 1.5rem;
		align-items: flex-start;
		z-index: 999;
	}

	.cf-nav.active {
		right: 0;
	}

	.cf-menu-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.cf-section {
		padding: 4rem 0;
	}

	.cf-section-lg {
		padding: 5rem 0;
	}

	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	.cf-hero {
		min-height: 600px;
	}

	.cf-hero-title {
		font-size: 2.75rem;
	}

	.cf-hero-subtitle {
		font-size: 1.25rem;
	}

	.cf-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cf-grid-2,
	.cf-grid-3,
	.cf-grid-4 {
		grid-template-columns: 1fr;
	}

	.cf-image-block {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cf-image-block:nth-child(even) .cf-image-block-image {
		order: 1;
	}

	.cf-contact-wrapper {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cf-stats-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.cf-slider-item {
		flex: 0 0 280px;
	}

	.cf-legal-content {
		padding: 2rem;
	}

	.cf-page-title {
		font-size: 2.5rem;
	}

	.cf-tab-list {
		flex-direction: column;
		scrollbar-width: thin;
	}
}

@media (max-width: 480px) {
	.cf-container,
	.cf-container-wide,
	.cf-container-narrow {
		padding: 0 1rem;
	}

	.cf-hero-title {
		font-size: 2rem;
	}

	.cf-hero-subtitle {
		font-size: 1.125rem;
	}

	.cf-btn {
		padding: 0.875rem 1.5rem;
		font-size: 0.9375rem;
	}

	.cf-card {
		padding: 1.5rem;
	}

	.cf-form {
		padding: 1.5rem;
	}

	.cf-section-heading {
		font-size: 2rem;
	}

	.cf-cookie-popup {
		padding: 1.5rem;
	}

	.cf-stat-number {
		font-size: 2.5rem;
	}

	.cf-logo {
		font-size: 1.2rem;
	}

	.cf-header-content {
		padding: 1rem 20px;
	}

	.cf-nav {
		top: 70px;
	}

	.cf-feature-item {
		flex-direction: column;
	}

	.cf-content-section h3 {
		font-size: 1.2rem;
	}

	.cf-page-title {
		font-size: 1.5rem;
	}

	.cf-content-section {
		padding: 2rem;
	}

	.cf-accordion-title {
		font-size: 1rem;
	}
	.cf-content-section ul {
		padding: 0 !important;
	}

	.cf-content-section ul li {
		word-break: break-all;
	}
	.cf-grid-small {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}

	.cf-image-block-content ul li {
		display: block;
	}

	.cf-content-section h4 {
		font-size: 1rem;
	}

	.cf-contact-item {
		flex-direction: column;
	}
}

.cf-legal-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 20px;
}

.cf-legal-content {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 60px;
	position: relative;
}

.cf-legal-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #0078d7 0%, #ff7a00 100%);
	border-radius: 12px 12px 0 0;
}

/* Header Styles */
.cf-legal-header {
	margin-bottom: 50px;
	text-align: center;
}

.cf-legal-title {
	font-size: 48px;
	font-weight: 700;
	color: #0d1117;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.cf-legal-subtitle {
	font-size: 16px;
	color: #5e6b74;
	font-weight: 500;
	margin-bottom: 30px;
}

.cf-legal-divider {
	width: 80px;
	height: 3px;
	background: linear-gradient(90deg, #0078d7, #ff7a00);
	margin: 0 auto;
	border-radius: 2px;
}

/* Section Styles */
.cf-legal-section {
	margin-bottom: 50px;
	position: relative;
	padding-left: 80px;
}

.cf-legal-section-number {
	position: absolute;
	left: 0;
	top: 5px;
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #0078d7 0%, #0056a3 100%);
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	box-shadow: 0 4px 12px rgba(0, 120, 215, 0.25);
}

.cf-legal-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #0d1117;
	margin-bottom: 20px;
	line-height: 1.3;
}

.cf-legal-text {
	font-size: 16px;
	color: #1a1f23;
	margin-bottom: 18px;
	line-height: 1.8;
	text-align: justify;
}

.cf-legal-text:last-child {
	margin-bottom: 0;
}

/* Contact Section Styles */
.cf-legal-contact {
	background: linear-gradient(135deg, #f8fafc 0%, #e8f0f7 100%);
	border: 2px solid #e1e4e8;
	border-radius: 12px;
	padding: 40px;
	margin-top: 60px;
}

.cf-legal-contact-title {
	font-size: 24px;
	font-weight: 700;
	color: #0d1117;
	margin-bottom: 20px;
	text-align: center;
}

.cf-legal-contact-details {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.cf-legal-contact-item {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background: #ffffff;
	border-radius: 8px;
	border-left: 4px solid #0078d7;
	transition: all 0.3s ease;
}

.cf-legal-contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 120, 215, 0.15);
	border-left-color: #ff7a00;
}

.cf-legal-contact-label {
	font-size: 13px;
	font-weight: 600;
	color: #5e6b74;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
}

.cf-legal-contact-value {
	font-size: 16px;
	font-weight: 600;
	color: #0078d7;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
	.cf-legal-content {
		padding: 50px 40px;
	}

	.cf-legal-title {
		font-size: 40px;
	}

	.cf-legal-section-title {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	.cf-legal-container {
		padding: 40px 15px;
	}

	.cf-legal-content {
		padding: 40px 30px;
	}

	.cf-legal-title {
		font-size: 2rem;
	}

	.cf-legal-section {
		padding-left: 0;
		padding-top: 70px;
	}

	.cf-legal-section-number {
		left: 50%;
		transform: translateX(-50%);
		top: 0;
	}

	.cf-legal-section-title {
		font-size: 22px;
	}

	.cf-legal-text {
		font-size: 15px;
		text-align: left;
	}

	.cf-legal-contact {
		padding: 30px 20px;
	}

	.cf-legal-contact-details {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.cf-legal-content h1 {
		font-size: 2rem;
	}
}

@media screen and (max-width: 480px) {
	.cf-legal-content {
		padding: 30px 20px;
		border-radius: 8px;
	}

	.cf-legal-title {
		font-size: 1.3rem;
	}

	.cf-legal-content h1 {
		font-size: 1.3rem;
	}

	.cf-legal-subtitle {
		font-size: 14px;
	}

	.cf-legal-section-number {
		width: 50px;
		height: 50px;
		font-size: 20px;
	}

	.cf-legal-section-title {
		font-size: 20px;
	}

	.cf-legal-text {
		font-size: 14px;
		line-height: 1.7;
	}

	.cf-legal-contact-title {
		font-size: 20px;
	}

	.cf-legal-contact-item {
		padding: 15px;
	}

	.cf-legal-contact-label {
		font-size: 12px;
	}

	.cf-legal-contact-value {
		font-size: 14px;
	}
}
