* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
	overflow-x: hidden;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
		sans-serif;
	background-color: #f8fafc;
	color: #1e293b;
	line-height: 1.6;
	overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: #1e293b;
}

h1 {
	font-size: clamp(2rem, 4vw, 3.5rem);
	margin-bottom: 1.5rem;
}

h2 {
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	margin-bottom: 1.25rem;
}

h3 {
	font-size: clamp(1.5rem, 2.5vw, 2.25rem);
	margin-bottom: 1rem;
}

h4 {
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	margin-bottom: 0.75rem;
}

p {
	margin-bottom: 1rem;
	font-size: 1rem;
	color: #475569;
}

a {
	color: #3b82f6;
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: #2563eb;
}

ul,
ol {
	padding-left: 1.2rem;
}

/* ========================================
   LAYOUT CONTAINERS
======================================== */

.is-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.is-container-wide {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.is-container-narrow {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ========================================
   HEADER STYLES
======================================== */

.is-header {
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.is-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}

.is-logo {
	display: flex;
	align-items: center;
	font-size: 1.75rem;
	font-weight: 700;
	color: #1e293b;
	text-decoration: none;
}

.is-logo i {
	font-size: 2rem;
	color: #3b82f6;
	margin-right: 0.5rem;
}

.is-nav {
	display: flex;
}

.is-nav-list {
	display: flex;
	list-style: none;
	align-items: center;
	gap: 2rem;
}

.is-nav-link {
	font-weight: 500;
	color: #475569;
	padding: 0.5rem 0;
	position: relative;
	transition: color 0.3s ease;
}

.is-nav-link:hover,
.is-nav-link.is-active {
	color: #3b82f6;
	text-decoration: none;
}

.is-nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: #3b82f6;
	transition: width 0.3s ease;
}

.is-nav-link:hover::after,
.is-nav-link.is-active::after {
	width: 100%;
}

/* Mobile Navigation */
.is-mobile-toggle {
	display: none;
	flex-direction: column;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.is-mobile-toggle span {
	width: 25px;
	height: 3px;
	background: #1e293b;
	margin: 3px 0;
	transition: all 0.3s ease;
}

.is-mobile-nav {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: translateY(-100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 999;
}

.is-mobile-nav.is-active {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.is-mobile-nav-list {
	list-style: none;
	padding: 2rem 0;
}

.is-mobile-nav-link {
	display: block;
	padding: 1rem 2rem;
	color: #475569;
	font-weight: 500;
	border-bottom: 1px solid #e2e8f0;
	transition: all 0.3s ease;
}

.is-mobile-nav-link:hover,
.is-mobile-nav-link.is-active {
	background: #f1f5f9;
	color: #3b82f6;
	text-decoration: none;
}

/* ========================================
   HERO SECTION
======================================== */

.is-hero {
	background: linear-gradient(
			rgba(255, 255, 255, 0.7),
			rgba(255, 255, 255, 0.7)
		),
		url('assets/is-hero.webp');
	background-size: cover;
	background-position: center;
	padding: 120px 0 80px;
	min-height: 100vh;
	display: flex;
	align-items: center;
}

.is-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.is-hero-text h1 {
	color: #1e293b;
	margin-bottom: 1.5rem;
}

.is-hero-text p {
	font-size: 1.25rem;
	color: #475569;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.is-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.is-hero-widget {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.is-hero-widget h3 {
	color: #3b82f6;
	margin-bottom: 1rem;
}

.is-fact-text {
	font-style: italic;
	color: #64748b;
	font-size: 1.1rem;
}

/* ========================================
   BUTTONS
======================================== */

.is-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 8px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	font-size: 1rem;
}

.is-btn-primary {
	background: #3b82f6;
	color: #ffffff;
	border-color: #3b82f6;
}

.is-btn-primary:hover {
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.is-btn-secondary {
	background: #ffffff;
	color: #3b82f6;
	border-color: #3b82f6;
}

.is-btn-secondary:hover {
	background: #3b82f6;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.is-btn-outline {
	background: transparent;
	color: #475569;
	border-color: #cbd5e1;
}

.is-btn-outline:hover {
	background: #f1f5f9;
	border-color: #94a3b8;
	color: #1e293b;
	text-decoration: none;
}

.is-btn-large {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

/* ========================================
   SECTIONS
======================================== */

.is-section {
	padding: 80px 0;
}

.is-section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.is-section-title {
	color: #1e293b;
	margin-bottom: 1rem;
}

.is-section-subtitle {
	font-size: 1.25rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

.is-section-bg {
	background: #ffffff;
}

.is-section-light {
	background: #f8fafc;
}

/* ========================================
   CARDS AND GRIDS
======================================== */

.is-card {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 2rem;
	transition: all 0.3s ease;
	height: 100%;
}

.is-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.is-card-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.is-card-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.is-card-title {
	color: #1e293b;
	font-size: 1.5rem;
	word-wrap: break-word;
	margin-bottom: 1rem;
}

.is-card-text {
	color: #64748b;
	line-height: 1.6;
}

.is-grid-1 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 2rem;
}

.is-grid-2 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.is-grid-3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.is-grid-4 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

/* ========================================
   TEAM SECTION
======================================== */

.is-team-member {
	text-align: center;
	background: #ffffff;
	border-radius: 12px;
	padding: 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.is-team-member:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.is-team-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
	margin: 0 auto 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #64748b;
}

.is-team-photo img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.is-team-name {
	font-size: 1.25rem;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.is-team-role {
	color: #3b82f6;
	font-weight: 500;
	margin-bottom: 1rem;
}

.is-team-bio {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ========================================
   FORMS
======================================== */

.is-form-section {
	background: #ffffff;
	padding: 80px 0;
}

.is-form-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.is-form {
	background: #f8fafc;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.is-form-group {
	margin-bottom: 1.5rem;
}

.is-form-label {
	display: block;
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.is-form-input,
.is-form-textarea,
.is-form-select {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
}

.is-form-input:focus,
.is-form-textarea:focus,
.is-form-select:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.is-form-textarea {
	resize: vertical;
	min-height: 120px;
}

.is-form-error {
	color: #ef4444;
	font-size: 0.875rem;
	margin-top: 0.25rem;
	display: none;
}

.is-form-input.is-error,
.is-form-textarea.is-error,
.is-form-select.is-error {
	border-color: #ef4444;
	background: #fef2f2;
}

.is-form-input.is-error + .is-form-error,
.is-form-textarea.is-error + .is-form-error,
.is-form-select.is-error + .is-form-error {
	display: block;
}

.is-checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.is-checkbox-group input[type='checkbox'] {
	margin-top: 0.25rem;
	width: 1.25rem;
	height: 1.25rem;
	accent-color: #3b82f6;
}

.is-checkbox-group label {
	font-size: 0.95rem;
	color: #475569;
	line-height: 1.5;
}

/* ========================================
   MAP SECTION
======================================== */

.is-map-container {
	background: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	height: 100%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Map Section */
.is-map {
	height: 100%;
	min-height: 400px;

	border-radius: 0;
	overflow: hidden;
}

@media (max-width: 768px) {
	.is-map {
		height: 400px;
		/* min-width: auto; */
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.is-contact-map {
	position: relative;
	height: 100%;
	min-height: 400px;

	/* flex: 1; */

	/* margin-top: 2rem; */
	border-radius: 0;
	/* overflow: hidden; */
}

.is-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	border-radius: 0;

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}

.is-contact-info {
	padding: 2rem;
}

.is-contact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
}

.is-contact-icon {
	width: 40px;
	height: 40px;
	background: #3b82f6;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #ffffff;
}

.is-contact-details h4 {
	color: #1e293b;
	margin-bottom: 0.25rem;
	font-size: 1rem;
}

.is-contact-details p {
	color: #64748b;
	margin-bottom: 0;
	font-size: 0.95rem;
}

/* ========================================
   FOOTER
======================================== */

.is-footer {
	background: #f1f5f9;
	padding: 60px 0 30px;
	border-top: 1px solid #e2e8f0;
}

.is-footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.is-footer-section h4 {
	color: #1e293b;
	margin-bottom: 1.5rem;
	font-size: 1.125rem;
}

.is-footer-logo {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.is-footer-logo i {
	color: #3b82f6;
}

.is-footer-slogan {
	color: #64748b;
	font-size: 1rem;
	margin-bottom: 0;
}

.is-footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.is-footer-links a {
	color: #64748b;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.is-footer-links a:hover {
	color: #3b82f6;
	text-decoration: none;
}

.is-footer-contacts p {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.75rem;
	color: #64748b;
	font-size: 0.95rem;
}

.is-footer-contacts i {
	color: #3b82f6;
	width: 16px;
}

.is-footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

.is-footer-bottom p {
	color: #64748b;
	font-size: 0.9rem;
	margin-bottom: 0;
}

/* ========================================
   COOKIE POPUP
======================================== */

.is-cookie-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
	padding: 2rem;
	z-index: 10000;
	transform: translateY(100px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	max-width: 500px;
	margin: 0 auto;
}

.is-cookie-popup.is-show {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.is-cookie-content h3 {
	color: #1e293b;
	margin-bottom: 1rem;
	font-size: 1.125rem;
}

.is-cookie-content p {
	color: #64748b;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.is-cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.is-cookie-accept {
	background: #3b82f6;
	color: #ffffff;
	border: none;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.is-cookie-accept:hover {
	background: #2563eb;
}

.is-cookie-decline {
	background: transparent;
	color: #64748b;
	border: 2px solid #e2e8f0;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.is-cookie-decline:hover {
	border-color: #cbd5e1;
	background: #f8fafc;
}

/* ========================================
   ANIMATIONS
======================================== */

.is-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease;
}

.is-fade-in.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.is-slide-in-left {
	opacity: 0;
	transform: translateX(-30px);
	transition: all 0.6s ease;
}

.is-slide-in-left.is-visible {
	opacity: 1;
	transform: translateX(0);
}

.is-slide-in-right {
	opacity: 0;
	transform: translateX(30px);
	transition: all 0.6s ease;
}

.is-slide-in-right.is-visible {
	opacity: 1;
	transform: translateX(0);
}

/* ========================================
   PROGRESS BAR
======================================== */

.is-progress-bar {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 4px;
	background: linear-gradient(90deg, #3b82f6, #10b981);
	z-index: 10001;
	transition: width 0.1s ease;
}

/* ========================================
   TABS AND ACCORDIONS
======================================== */

.is-tabs {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.is-tab-nav {
	display: flex;
	background: #f8fafc;
	border-bottom: 1px solid #e2e8f0;
}

.is-tab-btn {
	flex: 1;
	padding: 1rem 1.5rem;
	background: none;
	border: none;
	font-weight: 600;
	color: #64748b;
	cursor: pointer;
	transition: all 0.3s ease;
	border-bottom: 3px solid transparent;
}

.is-tab-btn.is-active {
	color: #3b82f6;
	background: #ffffff;
	border-bottom-color: #3b82f6;
}

.is-tab-content {
	padding: 2rem;
	display: none;
}

.is-tab-content.is-active {
	display: block;
	animation: fadeIn 0.3s ease;
}

.is-accordion {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.is-accordion-item {
	border-bottom: 1px solid #e2e8f0;
}

.is-accordion-item:last-child {
	border-bottom: none;
}

.is-accordion-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 2rem;
	cursor: pointer;
	background: #f8fafc;
	transition: background 0.3s ease;
}

.is-accordion-header:hover {
	background: #f1f5f9;
}

.is-accordion-header h3 {
	margin: 0;
	font-size: 1.125rem;
	color: #1e293b;
}

.is-accordion-icon {
	font-size: 1.25rem;
	color: #64748b;
	transition: transform 0.3s ease;
}

.is-accordion-item.is-active .is-accordion-icon {
	transform: rotate(180deg);
}

.is-accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.is-accordion-item.is-active .is-accordion-content {
	max-height: 1500px !important;
}

.is-accordion-body {
	padding: 1rem 2rem 2rem;
	color: #64748b;
	line-height: 1.6;
}

/* ========================================
   HISTORY TIMELINE
======================================== */

.is-timeline {
	position: relative;
	padding: 2rem 0;
}

.is-timeline::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #e2e8f0;
	transform: translateX(-50%);
}

.is-timeline-item {
	position: relative;
	margin-bottom: 3rem;
	display: flex;
	align-items: center;
}

.is-timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.is-timeline-content {
	background: #ffffff;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	width: 40%;
	position: relative;
}

.is-timeline-content::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border: 10px solid transparent;
	top: 20px;
}

.is-timeline-date {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #3b82f6;
	color: #ffffff;
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-weight: 600;
	font-size: 0.875rem;
	z-index: 1;
}

.is-timeline-title {
	color: #1e293b;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.is-timeline-text {
	color: #64748b;
	margin-bottom: 0;
}

/* ========================================
   INFOGRAPHICS
======================================== */

.is-infographic {
	background: #ffffff;
	border-radius: 12px;
	padding: 3rem 2rem;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.is-infographic-title {
	color: #1e293b;
	margin-bottom: 2rem;
	font-size: 2rem;
}

.is-infographic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.is-infographic-item {
	text-align: center;
}

.is-infographic-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.is-infographic-icon i {
	font-size: 2rem;
	color: #ffffff;
}

.is-infographic-label {
	font-weight: 600;
	color: #1e293b;
	font-size: 1.125rem;
}

/* ========================================
   STYLE COMPARISON SLIDER
======================================== */

.is-slider-container {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin: 2rem 0;
}

.is-slider-header {
	background: #f8fafc;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #e2e8f0;
}

.is-slider-title {
	margin: 0;
	color: #1e293b;
	font-size: 1.5rem;
}

.is-slider-nav {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
}

.is-slider-btn {
	padding: 0.5rem 1rem;
	background: #e2e8f0;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.is-slider-btn.is-active {
	background: #3b82f6;
	color: #ffffff;
}

.is-slider-content {
	padding: 2rem;
}

.is-slider-item {
	display: none;
}

.is-slider-item.is-active {
	display: block;
	animation: fadeIn 0.3s ease;
}

.is-style-comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
}

.is-style-card {
	background: #f8fafc;
	padding: 2rem;
	border-radius: 8px;
	text-align: center;
}

.is-style-image {
	width: 100%;
	height: 200px;
	background: #e2e8f0;
	border-radius: 8px;
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #94a3b8;
}

.is-style-name {
	font-weight: 600;
	color: #1e293b;
	margin-bottom: 0.5rem;
}

.is-style-desc {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 0;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
	.is-container {
		padding: 0 30px;
	}

	.is-hero-buttons {
		justify-content: center;
	}

	.is-hero-content {
		grid-template-columns: 1fr;
		gap: 3rem;
		text-align: center;
	}

	.is-form-wrapper {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.is-timeline::before {
		display: none;
	}

	.is-timeline-item {
		padding-left: 0;
	}

	.is-timeline-item:nth-child(odd) {
		flex-direction: row;
	}

	.is-timeline-content {
		width: 100%;
	}

	.is-timeline-date {
		left: 50%;
		top: -20px;
	}
}

@media (max-width: 820px) {
	.is-nav {
		display: none;
	}

	.is-mobile-toggle {
		display: flex;
	}
}

@media (max-width: 768px) {
	.is-hero {
		padding: 100px 0 60px;
		min-height: auto;
	}

	.is-section {
		padding: 60px 0;
	}
	.is-grid-1,
	.is-grid-2,
	.is-grid-3,
	.is-grid-4 {
		grid-template-columns: 1fr;
	}

	.is-footer-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.is-hero-buttons {
		justify-content: center;
	}

	.is-style-comparison {
		grid-template-columns: 1fr;
	}

	.is-tab-nav {
		flex-direction: column;
	}

	.is-cookie-popup {
		left: 10px;
		right: 10px;
		bottom: 10px;
	}
}

@media (max-width: 480px) {
	.is-container {
		padding: 0 20px;
	}

	.is-card {
		padding: 1.5rem;
	}

	.is-grid-1,
	.is-grid-2,
	.is-grid-3,
	.is-grid-4 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}

	.is-form {
		padding: 2rem;
	}

	.is-hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	.is-btn {
		width: 100%;
		justify-content: center;
	}

	.is-accordion-header {
		padding: 1rem 1.5rem;
	}

	.is-accordion-body {
		padding: 1rem 1.5rem 1.5rem;
	}

	.is-cookie-buttons {
		flex-direction: column;
	}

	.is-cookie-accept,
	.is-cookie-decline {
		width: 100%;
		text-align: center;
	}

	.is-infographic-title {
		font-size: 1.5rem;
		word-wrap: break-word;
	}

	.is-slider-nav {
		flex-direction: column;
	}

	.is-slider-content,
	.is-tab-content,
	.is-card {
		padding: 1rem;
	}

	.is-section-title {
		font-size: 1.8rem;
		word-wrap: break-word;
	}
}

/* ========================================
   KEYFRAME ANIMATIONS
======================================== */

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideIn {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	40%,
	43% {
		transform: translate3d(0, -30px, 0);
	}
	70% {
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
	}
}

/* ========================================
   UTILITY CLASSES
======================================== */

.is-text-center {
	text-align: center;
}

.is-text-left {
	text-align: left;
}

.is-text-right {
	text-align: right;
}

.is-mb-0 {
	margin-bottom: 0;
}
.is-mb-1 {
	margin-bottom: 0.5rem;
}
.is-mb-2 {
	margin-bottom: 1rem;
}
.is-mb-3 {
	margin-bottom: 1.5rem;
}
.is-mb-4 {
	margin-bottom: 2rem;
}

.is-mt-0 {
	margin-top: 0;
}
.is-mt-1 {
	margin-top: 0.5rem;
}
.is-mt-2 {
	margin-top: 1rem;
}
.is-mt-3 {
	margin-top: 1.5rem;
}
.is-mt-4 {
	margin-top: 2rem;
}

.is-hidden {
	display: none;
}

.is-visible {
	display: block;
}

.is-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ========================================
   SUCCESS MESSAGE
======================================== */

.is-success-message {
	background: linear-gradient(135deg, #10b981, #059669);
	color: #ffffff;
	padding: 3rem 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 8px 30px rgba(16, 185, 129, 0.2);
}

.is-success-message h3 {
	color: #ffffff;
	margin-bottom: 1rem;
}

.is-success-message p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
	font-size: 1.125rem;
}

.is-contact-hero {
	background: linear-gradient(
			135deg,
			rgba(59, 130, 246, 0.1),
			rgba(16, 185, 129, 0.1)
		),
		#ffffff;
	padding: 140px 0 80px;
	text-align: center;
	border-bottom: 1px solid #e2e8f0;
}

.is-contact-hero-content h1 {
	font-size: clamp(2.5rem, 5vw, 4rem);
	color: #1e293b;
	margin-bottom: 1.5rem;
	font-weight: 700;
}

.is-contact-hero-content h1 span {
	color: #3b82f6;
	position: relative;
}

.is-contact-hero-content h1 span::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #3b82f6, #10b981);
	border-radius: 2px;
}

.is-contact-hero-content p {
	font-size: 1.25rem;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

/* Contact Information Cards */
.is-contact-info-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.is-contact-card {
	background: #ffffff;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: all 0.3s ease;
	border: 1px solid #f1f5f9;
}

.is-contact-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	border-color: #3b82f6;
}

.is-contact-card .is-contact-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, #3b82f6, #10b981);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: all 0.3s ease;
}

.is-contact-card:hover .is-contact-icon {
	transform: scale(1.1);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.is-contact-card .is-contact-icon i {
	font-size: 1.5rem;
	color: #ffffff;
}

.is-contact-card .is-contact-details h3 {
	color: #1e293b;
	font-size: 1.25rem;
	margin-bottom: 1rem;
	font-weight: 600;
}

.is-contact-card .is-contact-details p {
	color: #64748b;
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.is-contact-card .is-contact-details p:last-child {
	margin-bottom: 0;
}

.is-contact-card .is-contact-details a {
	color: #3b82f6;
	font-weight: 500;
	transition: color 0.3s ease;
}

.is-contact-card .is-contact-details a:hover {
	color: #2563eb;
	text-decoration: none;
}

/* Contact Form Content */
.is-contact-form-content {
	background: #ffffff;
	padding: 3rem 2.5rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
}

.is-contact-form-content h2 {
	color: #1e293b;
	font-size: 2rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.is-contact-form-content > p {
	color: #64748b;
	font-size: 1.1rem;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.is-contact-note {
	margin-top: 1.5rem;
	padding: 1rem;
	background: #f8fafc;
	border-radius: 8px;
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.5;
	border-left: 4px solid #3b82f6;
}

.is-contact-note a {
	color: #3b82f6;
	font-weight: 500;
}

/* Newsletter Section */
.is-newsletter-section {
	display: flex;
	align-items: center;
	gap: 3rem;
	background: #ffffff;
	padding: 3rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
}

.is-newsletter-content {
	flex: 1;
}

.is-newsletter-content h2 {
	color: #1e293b;
	font-size: 1.75rem;
	margin-bottom: 0.75rem;
	font-weight: 700;
}

.is-newsletter-content p {
	color: #64748b;
	font-size: 1.1rem;
	margin-bottom: 0;
	line-height: 1.6;
}

.is-newsletter-form {
	display: flex;
	gap: 1rem;
	min-width: 350px;
	flex-shrink: 0;
}

.is-newsletter-input {
	flex: 1;
	padding: 0.875rem 1.25rem;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #ffffff;
}

.is-newsletter-input:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.is-newsletter-form .is-btn {
	white-space: nowrap;
	padding: 0.875rem 1.5rem;
}

/* Enhanced Map Container */
.is-map-container {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
}

.is-map-container h2 {
	color: #1e293b;
	font-size: 1.75rem;
	margin-bottom: 2rem;
	font-weight: 700;
	padding: 2.5rem 2.5rem 0;
}

.is-map-container iframe {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
	.is-newsletter-section {
		flex-direction: column;
		text-align: center;
		gap: 2rem;
	}

	.is-newsletter-form {
		min-width: auto;
		width: 100%;
		max-width: 400px;
	}

	.is-contact-form-content {
		padding: 2.5rem 2rem;
	}

	.is-map-container h2 {
		padding: 2rem 2rem 0;
	}
}

@media (max-width: 768px) {
	.is-contact-hero {
		padding: 120px 0 60px;
	}

	.is-contact-info-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.is-contact-card {
		padding: 2rem 1.5rem;
	}

	.is-newsletter-form {
		flex-direction: column;
	}

	.is-newsletter-form .is-btn {
		width: 100%;
		justify-content: center;
	}

	.is-contact-form-content {
		padding: 2rem 1.5rem;
	}

	.is-map-container h2 {
		padding: 1.5rem 1.5rem 0;
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	.is-contact-hero-content h1 {
		font-size: 2rem;
	}

	.is-contact-hero-content p {
		font-size: 1.1rem;
	}

	.is-contact-card {
		padding: 1.5rem 1rem;
	}

	.is-contact-card .is-contact-icon {
		width: 60px;
		height: 60px;
	}

	.is-contact-card .is-contact-icon i {
		font-size: 1.25rem;
	}

	.is-newsletter-section {
		padding: 2rem 1.5rem;
	}

	.is-newsletter-content h2 {
		font-size: 1.5rem;
	}

	.is-newsletter-content p {
		font-size: 1rem;
	}

	.is-contact-form-content {
		padding: 1.5rem 1rem;
	}

	.is-contact-form-content h2 {
		font-size: 1.75rem;
	}
}

.is-legal-hero {
	background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
	padding: 120px 0 80px;
	text-align: center;
}

.is-legal-hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.is-legal-title {
	font-family: 'Poppins', sans-serif;
	font-size: 3rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
	line-height: 1.2;
}

.is-legal-subtitle {
	font-size: 1.125rem;
	color: #64748b;
	font-weight: 500;
}

/* Legal Content */
.is-legal-content {
	padding: 80px 0;
	background-color: #f8fafc;
}

.is-legal-document {
	max-width: 900px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 12px;
	padding: 60px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.is-legal-section {
	margin-bottom: 48px;
}

.is-legal-section:last-child {
	margin-bottom: 0;
}

.is-legal-heading {
	font-family: 'Poppins', sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	color: #3b82f6;
	margin-bottom: 20px;
	padding-bottom: 8px;
	border-bottom: 2px solid #e2e8f0;
}

.is-legal-section p {
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 16px;
}

.is-legal-section p:last-child {
	margin-bottom: 0;
}

.is-legal-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.is-legal-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 1rem;
	line-height: 1.6;
	color: #475569;
}

.is-legal-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	color: #10b981;
	font-weight: bold;
	font-size: 1.2rem;
}

.is-legal-list li strong {
	color: #1e293b;
	font-weight: 600;
}

/* Company Info Box */
.is-company-info {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	border: 1px solid #bae6fd;
	border-radius: 8px;
	padding: 24px;
	margin: 20px 0;
}

.is-company-info p {
	margin-bottom: 8px;
	font-size: 0.95rem;
	color: #0f172a;
}

.is-company-info p:last-child {
	margin-bottom: 0;
}

.is-company-info strong {
	color: #1e40af;
	font-weight: 600;
}

/* Legal Table Styles */
.is-cookie-table {
	margin: 24px 0;
	overflow-x: auto;
}

.is-legal-table {
	width: 100%;
	border-collapse: collapse;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.is-legal-table th {
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	padding: 16px 12px;
	text-align: left;
	font-weight: 600;
	font-size: 0.9rem;
}

.is-legal-table td {
	padding: 14px 12px;
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.9rem;
	color: #475569;
}

.is-legal-table tr:last-child td {
	border-bottom: none;
}

.is-legal-table tr:nth-child(even) {
	background: #f8fafc;
}

.is-legal-table tr:hover {
	background: #f1f5f9;
}

/* Footer Legal Links */
.is-footer-legal {
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
}

.is-footer-legal a {
	color: #64748b;
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.3s ease;
}

.is-footer-legal a:hover {
	color: #3b82f6;
}

/* Responsive Design for Legal Pages */
@media (max-width: 768px) {
	.is-legal-title {
		font-size: 2.25rem;
	}

	.is-legal-document {
		padding: 40px 24px;
		margin: 0;
	}

	.is-legal-heading {
		font-size: 1.25rem;
	}

	.is-legal-table {
		font-size: 0.8rem;
	}

	.is-legal-table th,
	.is-legal-table td {
		padding: 12px 8px;
	}

	.is-footer-legal {
		justify-content: center;
		gap: 16px;
	}

	.is-company-info {
		padding: 20px 16px;
	}
}

@media (max-width: 480px) {
	.is-legal-title {
		font-size: 1.5rem;
	}

	.is-legal-document {
		padding: 32px 16px;
	}

	.is-legal-section {
		margin-bottom: 36px;
	}

	.is-legal-list li {
		padding-left: 20px;
		margin-bottom: 10px;
	}

	.is-footer-legal {
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
}
