/* 
  D2S Utility Plus Ltd - Main Stylesheet
  Color Palette:
    Primary: Deep Purple (#401268)
    Secondary Accent: Soft Purple (#8E5ABD)
    Light Background: #F6F2FB
    Dark Text: #2B2B2B
    Border/Divider: #E5DDF1
    White: #FFFFFF
    Footer Dark Purple: #2B0A47 (Darker variation)
  Typography:
    Headings: Poppins
    Body: Inter
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
	--primary: #401268;
	--primary-rgb: 64, 18, 104;
	--secondary: #8e5abd;
	--secondary-rgb: 142, 90, 189;
	--bg-light: #f6f2fb;
	--bg-footer: #1d0633;
	--text-dark: #2b2b2b;
	--text-light: #6e627c;
	--border-color: #e5ddf1;
	--white: #ffffff;
	--success: #10b981;
	--error: #ef4444;
	--font-headings: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;
	--max-width: 1200px;
	--transition: all 0.3s ease;
	--shadow-sm: 0 2px 4px rgba(64, 18, 104, 0.04);
	--shadow-md: 0 8px 24px rgba(64, 18, 104, 0.08);
	--shadow-lg: 0 16px 40px rgba(64, 18, 104, 0.12);
	--border-radius: 12px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	background-color: var(--white);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-headings);
	color: var(--primary);
	font-weight: 700;
	line-height: 1.25;
}

h1 {
	font-size: 2.75rem;
}

h2 {
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
}

h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

p {
	margin-bottom: 1.25rem;
	color: var(--text-light);
	font-size: 1.05rem;
}

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

ul {
	list-style: none;
}

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

/* Layout Utilities */
.container {
	width: 100%;
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 2rem;
}

.section {
	padding: 6.5rem 0;
}

.section-bg {
	background-color: var(--bg-light);
}

.text-center {
	text-align: center;
}

.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	align-items: center;
}

.grid-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.grid-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

/* Header & Navigation */
.header {
	background-color: var(--white);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--border-color);
	transition: var(--transition);
}

.header.scrolled {
	box-shadow: var(--shadow-md);
	padding: 0.5rem 0;
}

.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
}

.logo-link {
	display: flex;
	align-items: center;
	/* height: 80%; */
}

.logo-img {
	height: 60px;
	/* width: auto; */
	object-fit: contain;
	/* transform: translateY(6%); */
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 2.5rem;
}

.nav-link {
	font-family: var(--font-headings);
	font-weight: 500;
	font-size: 1rem;
	color: var(--primary);
	position: relative;
	padding: 0.5rem 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--secondary);
	transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link:hover {
	color: var(--secondary);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.8rem 1.8rem;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: var(--transition);
	border: 2px solid transparent;
}

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

.btn-primary:hover {
	background-color: var(--secondary);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(142, 90, 189, 0.3);
}

.btn-secondary {
	background-color: transparent;
	border-color: var(--primary);
	color: var(--primary);
}

.btn-secondary:hover {
	background-color: rgba(64, 18, 104, 0.05);
	transform: translateY(-2px);
}

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

.btn-white:hover {
	background-color: var(--bg-light);
	color: var(--secondary);
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}

.btn-outline-white:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.nav-cta {
	padding: 0.6rem 1.4rem;
	font-size: 0.9rem;
}

/* Mobile Menu Button */
.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
	z-index: 1001;
}

.menu-toggle span {
	width: 100%;
	height: 3px;
	background-color: var(--primary);
	border-radius: 2px;
	transition: var(--transition);
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	padding: 8rem 0 7rem;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(
		circle at 80% 20%,
		rgba(255, 255, 255, 0.08) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.hero-content h1 {
	color: var(--white);
	font-size: 3.5rem;
	line-height: 1.15;
	margin-bottom: 1.5rem;
	font-weight: 800;
}

.hero-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.2rem;
	margin-bottom: 2.5rem;
	max-width: 600px;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.hero-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.hero-glow {
	position: absolute;
	width: 120%;
	height: 120%;
	background: radial-gradient(
		circle,
		rgba(142, 90, 189, 0.4) 0%,
		transparent 70%
	);
	z-index: 1;
}

.hero-illustration {
	width: 100%;
	max-width: 500px;
	border-radius: var(--border-radius);
	box-shadow: var(--shadow-lg);
	z-index: 2;
	position: relative;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
}

.hero-illustration img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Trust / Feature bar */
.trust-bar {
	background-color: var(--white);
	padding: 2.5rem 0;
	box-shadow: var(--shadow-sm);
	margin-top: -30px;
	position: relative;
	z-index: 10;
	border-radius: var(--border-radius);
	max-width: calc(var(--max-width) - 4rem);
	margin-left: auto;
	margin-right: auto;
	border: 1px solid var(--border-color);
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	text-align: center;
	gap: 1.5rem;
}

.trust-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0 1rem;
}

.trust-item:not(:last-child) {
	border-right: 1px solid var(--border-color);
}

.trust-icon {
	width: 44px;
	height: 44px;
	background-color: var(--bg-light);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	color: var(--primary);
	font-size: 1.2rem;
}

.trust-item h4 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.trust-item p {
	font-size: 0.85rem;
	margin-bottom: 0;
	color: var(--text-light);
}

/* Page Section Headers */
.section-header {
	max-width: 700px;
	margin: 0 auto 4rem;
	text-align: center;
}

.section-header h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--secondary);
	margin: 0.75rem auto 0;
	border-radius: 2px;
}

.section-header p {
	font-size: 1.15rem;
	margin-top: 1rem;
	color: var(--text-light);
}

/* Service Cards & Tabs */
.services-intro {
	margin-bottom: 3.5rem;
}

.service-card {
	background-color: var(--white);
	border-radius: var(--border-radius);
	padding: 2.5rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: var(--transition);
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 5px;
	height: 100%;
	background-color: var(--primary);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
	border-color: rgba(142, 90, 189, 0.3);
}

.service-card:hover::before {
	background-color: var(--secondary);
	width: 8px;
}

.service-icon {
	width: 60px;
	height: 60px;
	background-color: var(--bg-light);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	transition: var(--transition);
}

.service-card:hover .service-icon {
	background-color: var(--primary);
	color: var(--white);
}

.service-card h3 {
	font-size: 1.35rem;
	margin-bottom: 1rem;
}

.service-card p {
	flex-grow: 1;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.service-card .learn-more {
	display: inline-flex;
	align-items: center;
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--primary);
	gap: 0.5rem;
}

.service-card .learn-more i {
	transition: var(--transition);
}

.service-card:hover .learn-more {
	color: var(--secondary);
}

.service-card:hover .learn-more i {
	transform: translateX(4px);
}

/* Dynamic Page Headers (for subpages) */
.page-header {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	padding: 6rem 0;
	text-align: center;
	position: relative;
}

.page-header h1 {
	color: var(--white);
	font-size: 3rem;
	margin-bottom: 1rem;
}

.page-header .breadcrumbs {
	font-size: 0.95rem;
	opacity: 0.8;
}

.page-header .breadcrumbs a {
	color: var(--white);
}

.page-header .breadcrumbs a:hover {
	text-decoration: underline;
}

/* Process Section */
.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
	position: relative;
}

.process-step {
	text-align: center;
	position: relative;
	z-index: 2;
}

.process-step:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 35px;
	left: 60%;
	width: 80%;
	height: 2px;
	border-top: 2px dashed var(--border-color);
	z-index: -1;
}

.step-number {
	width: 70px;
	height: 70px;
	background-color: var(--white);
	border: 3px solid var(--primary);
	color: var(--primary);
	font-family: var(--font-headings);
	font-size: 1.75rem;
	font-weight: 700;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	transition: var(--transition);
	box-shadow: var(--shadow-sm);
}

.process-step:hover .step-number {
	background-color: var(--primary);
	color: var(--white);
	transform: scale(1.1);
	box-shadow: 0 0 0 6px rgba(64, 18, 104, 0.1);
}

.process-step h3 {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}

.process-step p {
	font-size: 0.9rem;
}

/* About Us Section Styles */
.about-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
	border-top: 1px solid var(--border-color);
	padding-top: 2.5rem;
}

.stat-item h3 {
	font-size: 2.5rem;
	color: var(--secondary);
	margin-bottom: 0.25rem;
}

.stat-item p {
	font-size: 0.9rem;
	margin-bottom: 0;
}

.sectors-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 2rem;
	margin-top: 1.5rem;
}

.sector-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 500;
	color: var(--primary);
}

.sector-item i {
	color: var(--secondary);
	font-size: 1.1rem;
}

/* Services Page Layout */
.detailed-services {
	display: flex;
	flex-direction: column;
	gap: 6rem;
}

.detailed-service-block {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 4rem;
	align-items: center;
}

.detailed-service-block:nth-child(even) {
	direction: rtl;
}

.detailed-service-block:nth-child(even) .service-detail-content {
	direction: ltr;
}

.detailed-service-block:nth-child(even) .service-detail-image {
	direction: ltr;
}

.service-detail-content h2 {
	font-size: 2.25rem;
	margin-bottom: 1.5rem;
	color: var(--primary);
}

.service-detail-content p {
	font-size: 1.05rem;
	margin-bottom: 1.5rem;
}

.service-bullets {
	margin: 1.5rem 0 2rem;
}

.service-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 0.75rem;
	font-size: 1rem;
	color: var(--text-light);
}

.service-bullets li i {
	color: var(--secondary);
	margin-top: 0.25rem;
	font-size: 1.1rem;
}

.service-detail-image {
	position: relative;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-color);
	aspect-ratio: 4 / 3;
}

.service-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-detail-image::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(64, 18, 104, 0.2) 0%,
		rgba(142, 90, 189, 0.2) 100%
	);
	pointer-events: none;
}

/* FAQs Section */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: var(--white);
	border-radius: var(--border-radius);
	margin-bottom: 1.25rem;
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
	transition: var(--transition);
}

.faq-header {
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
	transition: var(--transition);
}

.faq-header:hover {
	background-color: var(--bg-light);
}

.faq-question {
	font-family: var(--font-headings);
	font-weight: 600;
	font-size: 1.1rem;
	color: var(--primary);
	padding-right: 1.5rem;
}

.faq-icon {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.1rem;
	transition: transform 0.3s ease;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease;
	padding: 0 2rem;
}

.faq-content p {
	padding-bottom: 1.5rem;
	margin-bottom: 0;
	font-size: 0.95rem;
}

.faq-item.active {
	border-color: var(--secondary);
	box-shadow: var(--shadow-md);
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
	color: var(--secondary);
}

.faq-item.active .faq-content {
	max-height: 200px; /* Adjust dynamically with JS */
	padding: 0.5rem 2rem 1.5rem;
}

/* Contact Info & Form Layout */
.contact-layout {
	display: grid;
	grid-template-columns: 1.2fr 1.8fr;
	gap: 4rem;
}

.contact-info-panel {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-info-card {
	background-color: var(--white);
	padding: 2rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-sm);
	display: flex;
	gap: 1.5rem;
}

.contact-info-icon {
	width: 50px;
	height: 50px;
	background-color: var(--bg-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.4rem;
	flex-shrink: 0;
}

.contact-info-text h3 {
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.contact-info-text p {
	margin-bottom: 0;
	font-size: 0.95rem;
	color: var(--text-light);
}

.contact-info-text a:hover {
	color: var(--secondary);
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

.hours-row {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed var(--border-color);
	padding-bottom: 0.25rem;
}

.hours-row span:first-child {
	font-weight: 500;
	color: var(--primary);
}

/* Form Styles */
.form-panel {
	background-color: var(--white);
	padding: 3rem;
	border-radius: var(--border-radius);
	border: 1px solid var(--border-color);
	box-shadow: var(--shadow-md);
}

.form-group {
	margin-bottom: 1.5rem;
	position: relative;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.form-label {
	display: block;
	font-family: var(--font-headings);
	font-weight: 500;
	font-size: 0.9rem;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.form-label .required {
	color: var(--error);
	margin-left: 3px;
}

.form-control {
	width: 100%;
	padding: 0.85rem 1.2rem;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--text-dark);
	background-color: var(--bg-light);
	border: 2px solid transparent;
	border-radius: var(--border-radius);
	outline: none;
	transition: var(--transition);
}

.form-control:focus {
	border-color: var(--secondary);
	background-color: var(--white);
	box-shadow: 0 0 0 4px rgba(142, 90, 189, 0.15);
}

textarea.form-control {
	resize: vertical;
	min-height: 120px;
}

.form-control.is-invalid {
	border-color: var(--error);
	background-color: rgba(239, 68, 68, 0.02);
}

.form-control.is-valid {
	border-color: var(--success);
	background-color: rgba(16, 185, 129, 0.02);
}

.error-message {
	display: none;
	color: var(--error);
	font-size: 0.8rem;
	margin-top: 0.35rem;
	font-weight: 500;
}

.form-control.is-invalid + .error-message {
	display: block;
}

.form-helper {
	font-size: 0.8rem;
	color: var(--text-light);
	margin-top: 0.25rem;
	display: block;
}

.form-submit-container {
	margin-top: 2rem;
}

.form-status {
	margin-top: 1.5rem;
	padding: 1rem;
	border-radius: var(--border-radius);
	font-size: 0.95rem;
	font-weight: 500;
	display: none;
}

.form-status.success {
	display: block;
	background-color: rgba(16, 185, 129, 0.1);
	color: var(--success);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
	display: block;
	background-color: rgba(239, 68, 68, 0.1);
	color: var(--error);
	border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Call to Action Section */
.cta-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: var(--white);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-section h2 {
	color: var(--white);
	margin-bottom: 1rem;
}

.cta-section p {
	color: rgba(255, 255, 255, 0.9);
	max-width: 600px;
	margin: 0 auto 2.5rem;
	font-size: 1.15rem;
}

/* Legal Pages Styling */
.legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 4rem 0;
}

.legal-content h2 {
	font-size: 1.6rem;
	margin: 2.5rem 0 1rem;
}

.legal-content p,
.legal-content li {
	color: var(--text-light);
	font-size: 1rem;
	margin-bottom: 1rem;
}

.legal-content ul {
	list-style: disc;
	margin-left: 2rem;
	margin-bottom: 1.5rem;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

.last-updated {
	font-style: italic;
	margin-bottom: 2rem;
	display: block;
	color: var(--text-light);
	font-size: 0.9rem;
}

/* Footer Section */
.footer {
	background-color: var(--bg-footer);
	color: rgba(255, 255, 255, 0.7);
	padding: 5rem 0 2rem;
	font-size: 0.95rem;
	border-top: 4px solid var(--secondary);
}

.footer h3,
.footer h4 {
	color: var(--white);
	font-family: var(--font-headings);
}

.footer h4 {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
	position: relative;
}

.footer h4::after {
	content: '';
	display: block;
	width: 30px;
	height: 2px;
	background-color: var(--secondary);
	margin-top: 0.5rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.footer-logo-panel {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-logo-img {
	/* height: 80px; */
	width: 120px;
	/* align-self: flex-start; */
	background-color: rgba(255, 255, 255, 0.03);
	/* background-color: rgba(255, 255, 255, 225	); */
	/* background-color: rgba(255, 255, 255, 225,0.3); */

	/* colour: var(--white); */
	padding: 5px;
	border-radius: 4px;
}

.footer-logo-panel p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
	margin-bottom: 0;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-link {
	color: rgba(255, 255, 255, 0.7);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: var(--transition);
}

.footer-link:hover {
	color: var(--secondary);
	transform: translateX(3px);
}

.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-contact-item {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
}

.footer-contact-item i {
	color: var(--secondary);
	font-size: 1rem;
	margin-top: 0.2rem;
}

.footer-contact-item span,
.footer-contact-item a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
	color: var(--secondary);
}

/* Compliance Panel */
.footer-compliance {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 2rem 0;
	margin-bottom: 2rem;
}

.compliance-box {
	background-color: rgba(255, 255, 255, 0.03);
	border-left: 4px solid var(--secondary);
	padding: 1.5rem;
	border-radius: 4px;
}

.compliance-box h5 {
	color: var(--white);
	font-size: 0.95rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.compliance-box p {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.85rem;
	margin-bottom: 0;
	line-height: 1.5;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
	display: flex;
	gap: 1.5rem;
}

.footer-legal-links a:hover {
	color: var(--secondary);
}

/* Responsive Styling */
@media (max-width: 1024px) {
	h1 {
		font-size: 2.5rem;
	}
	h2 {
		font-size: 2rem;
	}
	.grid-4 {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.trust-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.trust-item:nth-child(2) {
		border-right: none;
	}
	.trust-item:nth-child(even) {
		border-right: none;
	}
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
	.process-step:not(:last-child)::after {
		display: none;
	}
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
	.contact-layout {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.detailed-service-block {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.detailed-service-block:nth-child(even) {
		direction: ltr;
	}
}

@media (max-width: 768px) {
	.section {
		padding: 4.5rem 0;
	}
	.grid-2,
	.grid-3 {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.menu-toggle {
		display: flex;
	}

	.nav-menu {
		position: fixed;
		top: 80px;
		left: -100%;
		width: 100%;
		height: calc(100vh - 80px);
		background-color: var(--white);
		flex-direction: column;
		align-items: flex-start;
		padding: 3rem 2rem;
		gap: 2rem;
		box-shadow: var(--shadow-lg);
		transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
		overflow-y: auto;
	}

	.nav-menu.open {
		left: 0;
	}

	.nav-cta {
		width: 100%;
		margin-top: 1rem;
	}

	.hero {
		padding: 6rem 0 8rem;
	}
	.hero-content {
		text-align: center;
	}
	.hero-content h1 {
		font-size: 2.5rem;
	}
	.hero-content p {
		margin: 0 auto 2rem;
	}
	.hero-buttons {
		justify-content: center;
	}
	.hero-image-container {
		display: none;
	}

	.trust-bar {
		margin-top: -40px;
		padding: 1.5rem 0;
		overflow: hidden;
	}
	.trust-grid {
		display: flex;
		flex-wrap: nowrap;
		gap: 0 !important;
		width: max-content;
		transition: transform 0.5s ease;
	}
	.trust-grid.no-transition {
		transition: none !important;
	}
	.trust-item {
		flex: 0 0 100vw;
		/* display: flex; */
		width: 85vw;
		transform: translate(-7%);
		/* max-width: 100vw; */
		border-right: none !important;
		padding: 1rem 1.5rem;
		box-sizing: border-box;
	}
	.trust-item:not(:last-child) {
		border-right: none;
		border-bottom: none;
		padding-bottom: 1rem;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.form-panel {
		padding: 2rem 1.5rem;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.footer-bottom {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.about-stats {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.sectors-list {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 769px) {
	.trust-grid {
		transform: none !important;
	}
}

/* Scroll Animation Hooks */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
	opacity: 1;
	transform: translateY(0);
}
