/**
 * Main Stylesheet for Ym it solutions Theme
 * 
 * Table of Contents:
 * 1. CSS Variables
 * 2. Reset & Base Styles
 * 3. Typography
 * 4. Layout & Grid
 * 5. Header & Navigation
 * 6. Footer
 * 7. Buttons
 * 8. Forms
 * 9. Cards
 * 10. Sections
 * 11. Hero
 * 12. Services
 * 13. Portfolio
 * 14. Testimonials
 * 15. Blog
 * 16. Utility Classes
 * 17. Animations
 * 18. Responsive
 */

/* ===========================
   1. CSS Variables
   =========================== */
:root {
	/* Colors */
	--color-primary: #0d6efd;
	--color-primary-dark: #0a58ca;
	--color-primary-light: #e7f1ff;
	--color-dark: #212529;
	--color-medium-gray: #6c757d;
	--color-light-gray: #f8f9fa;
	--color-white: #ffffff;
	--color-success: #198754;
	--color-warning: #ffc107;
	--color-danger: #dc3545;

	/* Typography */
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-size-base: 1rem;
	--font-size-sm: 0.875rem;
	--font-size-lg: 1.125rem;
	--font-size-xl: 1.5rem;
	--line-height-base: 1.6;
	--line-height-heading: 1.3;

	/* Spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 3rem;
	--spacing-xl: 4rem;
	--spacing-2xl: 6rem;

	/* Layout */
	--container-width: 1200px;
	--container-padding: 1.5rem;

	/* Border Radius */
	--radius-sm: 0.25rem;
	--radius-md: 0.5rem;
	--radius-lg: 1rem;

	/* Shadows */
	--shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);

	/* Transitions */
	--transition-base: all 0.3s ease;
	--transition-fast: all 0.15s ease;
}

/* ===========================
   2. Reset & Base Styles
   =========================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	color: var(--color-dark);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: var(--transition-base);
}

a:hover {
	color: var(--color-primary-dark);
}

/* ===========================
   3. Typography
   =========================== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: var(--line-height-heading);
	margin-bottom: var(--spacing-sm);
	color: var(--color-dark);
}

h1 {
	font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h3 {
	font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

p {
	margin-bottom: var(--spacing-sm);
}

.lead {
	font-size: var(--font-size-lg);
	font-weight: 400;
	color: var(--color-medium-gray);
}

/* ===========================
   4. Layout & Grid
   =========================== */
.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
	width: 100%;
}

.container-fluid {
	width: 100%;
	padding: 0 var(--container-padding);
}

.section {
	padding: var(--spacing-2xl) 0;
}

.section-sm {
	padding: var(--spacing-xl) 0;
}

.section-gray {
	background-color: var(--color-light-gray);
}

.grid {
	display: grid;
	gap: var(--spacing-md);
}

.grid-2 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
	.grid-2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}

	.grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* ===========================
   5. Header & Navigation
   =========================== */
.site-header {
	background: #1a1a2e;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.site-header.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.site-header.not-sticky {
	position: relative;
}

/* Header Inner Container */
.header-inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 75px;
	gap: 2rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
	.header-inner {
		padding: 0 1.5rem;
		gap: 1.5rem;
	}
}

@media (min-width: 769px) and (max-width: 991px) {
	.nav-menu {
		gap: 1.5rem;
	}

	.nav-menu > li > a {
		font-size: 0.9rem;
	}

	.cta-button {
		padding: 0.65rem 1.5rem;
		font-size: 0.85rem;
	}
}

/* Logo */
.header-logo {
	flex-shrink: 0;
}

.header-logo .custom-logo-link {
	display: block;
	line-height: 0;
}

.header-logo .custom-logo {
	max-width: 150px;
	height: auto;
	width: auto;
	filter: brightness(0) invert(1);
	transition: all 0.3s ease;
}

.header-logo .logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: -0.5px;
	transition: opacity 0.3s ease;
}

.header-logo .logo-text:hover {
	opacity: 0.85;
}

/* Desktop Navigation */
.header-nav {
	flex: 1;
	display: flex !important;
	justify-content: center;
}

@media (max-width: 768px) {
	.header-nav {
		display: none !important;
	}
}

.nav-menu,
#primary-menu {
	display: flex !important;
	flex-direction: row !important;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 2.5rem;
	align-items: center;
}

.nav-menu li,
#primary-menu li {
	position: relative;
	display: block;
}

.nav-menu > li > a,
#primary-menu > li > a {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	padding: 0.5rem 0;
	transition: color 0.3s ease;
	display: block;
	white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
#primary-menu > li > a:hover,
#primary-menu > li.current-menu-item > a {
	color: #ffffff;
}

/* Dropdown Submenu */
.nav-menu .sub-menu,
#primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #2a2a3e;
	min-width: 220px;
	padding: 0.75rem 0;
	margin: 0.5rem 0 0 0;
	list-style: none;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: block !important;
	flex-direction: column !important;
}

.nav-menu li:hover > .sub-menu,
#primary-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu li,
#primary-menu .sub-menu li {
	display: block;
}

.nav-menu .sub-menu a,
#primary-menu .sub-menu a {
	color: rgba(255, 255, 255, 0.85);
	padding: 0.65rem 1.25rem;
	font-size: 0.9rem;
	display: block;
	transition: all 0.3s ease;
	border-left: 3px solid transparent;
}

.nav-menu .sub-menu a:hover,
#primary-menu .sub-menu a:hover {
	color: #ffffff;
	background: rgba(13, 110, 253, 0.15);
	border-left-color: #0d6efd;
	padding-left: 1.5rem;
}

/* Dropdown Arrow */
.nav-menu .menu-item-has-children > a::after,
#primary-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 6px;
	vertical-align: middle;
	transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

/* Header CTA Button */
.header-cta {
	flex-shrink: 0;
	display: block !important;
}

@media (max-width: 768px) {
	.header-cta {
		display: none !important;
	}
}

.cta-button {
	display: inline-block;
	padding: 0.75rem 1.75rem;
	background: #ffffff;
	color: #1a1a2e;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 600;
	border-radius: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
	white-space: nowrap;
}

.cta-button:hover {
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
}

/* Mobile Toggle Button */
.mobile-toggle {
	display: none !important;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.mobile-toggle {
		display: block !important;
	}
}

.hamburger {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.hamburger .line {
	width: 25px;
	height: 2px;
	background: #ffffff;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-toggle.active .hamburger .line:nth-child(1) {
	transform: rotate(45deg) translateY(7px);
}

.mobile-toggle.active .hamburger .line:nth-child(2) {
	opacity: 0;
}

.mobile-toggle.active .hamburger .line:nth-child(3) {
	transform: rotate(-45deg) translateY(-7px);
}

/* Mobile Menu */
.mobile-menu {
	display: none;
	background: #1a1a2e;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.mobile-menu.active {
	display: block;
	max-height: 80vh;
	overflow-y: auto;
}

.mobile-nav-menu {
	list-style: none;
	margin: 0;
	padding: 1.5rem;
}

.mobile-nav-menu li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-menu li:last-child {
	border-bottom: none;
}

.mobile-nav-menu a {
	display: block;
	color: rgba(255, 255, 255, 0.9);
	padding: 1rem 0;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .current-menu-item > a {
	color: #ffffff;
	padding-left: 1rem;
}

/* Mobile Submenu */
.mobile-nav-menu .sub-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	background: rgba(13, 110, 253, 0.1);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.active > .sub-menu {
	max-height: 500px;
	padding: 0.5rem 0;
}

.mobile-nav-menu .sub-menu a {
	padding: 0.75rem 0 0.75rem 1.5rem;
	font-size: 0.9rem;
}

.mobile-nav-menu .sub-menu a:hover {
	padding-left: 2rem;
}

.mobile-nav-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	margin-left: 6px;
	float: right;
	margin-top: 6px;
	transition: transform 0.3s ease;
}

.mobile-nav-menu .menu-item-has-children.active > a::after {
	transform: rotate(180deg);
}

.mobile-cta {
	padding: 1.5rem;
	text-align: center;
}

.mobile-cta .cta-button {
	display: block;
	width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.header-inner {
		padding: 0 1.5rem;
		height: 70px;
	}

	.mobile-toggle {
		display: block;
	}

	.mobile-menu {
		display: block;
	}
}

/* ===========================
   6. Footer
   =========================== */
.site-footer {
	background-color: #18203c;
	color: #ffffff;
	margin-top: 3rem;
}

.footer-main {
	padding: 5rem 0 3rem;
}

.footer-logo {
	margin-bottom: 1.5rem;
}

.footer-logo img {
	max-width: 180px;
	height: auto;
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
	gap: 3rem;
}

.footer-column h4 {
	color: #ffffff;
	margin-bottom: 1.5rem;
	font-size: 1.25rem;
	font-weight: 600;
}

.footer-column p,
.footer-column a {
	color: #ffffff;
	font-size: 1rem;
	opacity: 0.9;
	line-height: 1.8;
}

.footer-column a:hover {
	color: #0d6efd;
	opacity: 1;
}

.footer-menu,
.footer-services,
.footer-contact {
	list-style: none;
}

.footer-menu li,
.footer-services li,
.footer-contact li {
	margin-bottom: 0.75rem;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-contact svg {
	flex-shrink: 0;
	color: #ffffff;
	width: 20px;
	height: 20px;
}

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: var(--transition-base);
	color: #ffffff;
}

.social-link:hover {
	background-color: #0d6efd;
	transform: translateY(-3px);
}

.footer-bottom {
	background-color: #0f1628;
	padding: 1.5rem 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-sm);
}

.copyright {
	margin: 0;
	font-size: 0.875rem;
	color: #ffffff;
	opacity: 0.9;
}

.copyright a {
	color: #ffffff;
}

.copyright a:hover {
	color: #0d6efd;
}

.footer-bottom-nav {
	display: flex;
	gap: var(--spacing-md);
}

.footer-bottom-nav a {
	font-size: 0.875rem;
	color: #ffffff;
	opacity: 0.9;
}

.footer-bottom-nav a:hover {
	color: #0d6efd;
	opacity: 1;
}

/* ===========================
   7. Buttons
   =========================== */
.btn {
	display: inline-block;
	padding: 0.875rem 2rem;
	font-weight: 600;
	text-align: center;
	border-radius: var(--radius-md);
	transition: var(--transition-base);
	cursor: pointer;
	border: 2px solid transparent;
	font-size: var(--font-size-base);
	line-height: 1.5;
}

.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.btn-primary:hover {
	background-color: var(--color-primary-dark);
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
	color: var(--color-white);
}

.btn-outline {
	background-color: transparent;
	border-color: rgba(255, 255, 255, 0.3);
	color: #ffffff;
}

.btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.5);
	color: #ffffff;
}

.btn-white {
	background-color: var(--color-white);
	color: var(--color-primary);
}

.btn-white:hover {
	background-color: var(--color-light-gray);
	color: var(--color-primary-dark);
}

.btn-lg {
	padding: 1.125rem 2.5rem;
	font-size: var(--font-size-lg);
}

.btn-sm {
	padding: 0.625rem 1.5rem;
	font-size: var(--font-size-sm);
}

.btn-group {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

/* ===========================
   8. Forms
   =========================== */
.form-group {
	margin-bottom: var(--spacing-md);
}

label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 2px solid var(--color-light-gray);
	border-radius: var(--radius-md);
	font-family: inherit;
	font-size: var(--font-size-base);
	transition: var(--transition-base);
	background-color: var(--color-white);
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--color-primary);
	box-shadow: 0 0 0 3px var(--color-primary-light);
}

textarea {
	resize: vertical;
	min-height: 150px;
}

::placeholder {
	color: var(--color-medium-gray);
}

/* ===========================
   9. Cards
   =========================== */
.card {
	background-color: var(--color-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: var(--transition-base);
	box-shadow: var(--shadow-sm);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

.card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-base);
}

.card:hover .card-image img {
	transform: scale(1.05);
}

.card-content {
	padding: var(--spacing-md);
	flex: 1;
	display: flex;
	flex-direction: column;
}

.card-category {
	color: var(--color-primary);
	font-size: var(--font-size-sm);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 0.5rem;
}

.card-title {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-sm);
	color: var(--color-dark);
}

.card-title a {
	color: inherit;
}

.card-title a:hover {
	color: var(--color-primary);
}

.card-excerpt {
	color: var(--color-medium-gray);
	margin-bottom: var(--spacing-sm);
	flex: 1;
}

.card-link {
	color: var(--color-primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.card-link:hover {
	gap: 0.75rem;
}

/* ===========================
   10. Sections
   =========================== */
.section-header {
	text-align: center;
	margin-bottom: var(--spacing-xl);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.section-title {
	margin-bottom: var(--spacing-sm);
}

.section-subtitle {
	color: var(--color-primary);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: var(--font-size-sm);
	margin-bottom: 0.5rem;
}

.section-description {
	color: var(--color-medium-gray);
	font-size: var(--font-size-lg);
}

/* ===========================
   11. Hero
   =========================== */
.hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 6rem 0 4rem 0;
	min-height: 85vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
	            radial-gradient(circle at 80% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
	z-index: 0;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 3rem;
	max-width: 1100px;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.hero-content {
		gap: 3.5rem;
	}

	.hero {
		padding: 8rem 0 5rem 0;
		min-height: 90vh;
	}
}

.hero-text {
	max-width: 800px;
	margin: 0 auto;
}

.hero-text h1 {
	margin-bottom: 1.5rem;
	color: #ffffff;
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

@media (min-width: 768px) {
	.hero-text h1 {
		font-size: 3.5rem;
	}
}

@media (min-width: 992px) {
	.hero-text h1 {
		font-size: 4rem;
	}
}

.hero-text .lead {
	margin-bottom: 2.5rem;
	font-size: 1.15rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.hero-text .lead {
		font-size: 1.25rem;
	}
}

.hero-image {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	width: 100%;
}

.hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	z-index: 0;
}

.hero-slide.active {
	position: relative;
	opacity: 1;
	z-index: 1;
}

.hero-image::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	border-radius: 20px;
	opacity: 0.2;
	filter: blur(25px);
	z-index: -1;
}

.hero-slide img {
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
	border: 8px solid rgba(255, 255, 255, 0.1);
	width: 100%;
	height: auto;
	display: block;
}

.hero-slider-dots {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 2rem;
	position: relative;
	z-index: 2;
}

.hero-slider-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
}

.hero-slider-dots .dot:hover {
	background: rgba(255, 255, 255, 0.5);
	transform: scale(1.2);
}

.hero-slider-dots .dot.active {
	background: #ffffff;
	transform: scale(1.3);
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* ===========================
   Intro/About Section
   =========================== */
.intro-section {
	padding: 5rem 0;
	background: #ffffff;
}

.intro-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 3rem;
}

@media (min-width: 992px) {
	.intro-content {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.intro-text h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.intro-text h2 {
		font-size: 3rem;
	}
}

.intro-text p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #666;
	margin-bottom: 2rem;
}

.btn-outline-dark {
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	border: 2px solid transparent;
	color: #ffffff;
	padding: 0.875rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.btn-outline-dark:hover {
	background: linear-gradient(135deg, #667eea 0%, #0d6efd 100%);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

.intro-image {
	position: relative;
}

.intro-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-divider {
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
	margin: 3rem 0;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
	gap: 3rem;
	align-items: center;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 1.5rem;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-icon {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
	border-radius: 16px;
	position: relative;
}

.stat-icon::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	border-radius: 16px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.stat-item:hover .stat-icon::before {
	opacity: 0.1;
}

.stat-icon svg {
	width: 30px;
	height: 30px;
	color: #0d6efd;
	position: relative;
	z-index: 1;
}

.stat-content {
	flex: 1;
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 0.25rem 0;
	line-height: 1;
}

.stat-label {
	font-size: 0.95rem;
	color: #666;
	margin: 0;
	line-height: 1.4;
}

@media (max-width: 768px) {
	.intro-section {
		padding: 3rem 0;
	}

	.intro-text h2 {
		font-size: 2rem;
	}

	.stats-grid {
		gap: 2rem;
	}

	.stat-item {
		padding: 1rem;
	}

	.stat-number {
		font-size: 2rem;
	}
}

/* ===========================
   12. Services
   =========================== */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	text-align: left;
	padding: 2.5rem 2rem;
	background: #ffffff;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
	border: 1px solid rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
	height: 100%;
}

.service-card:hover {
	box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
	transform: translateY(-5px);
	border-color: rgba(13, 110, 253, 0.15);
}

.service-number {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(13, 110, 253, 0.08);
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 700;
	color: var(--color-primary);
	transition: all 0.3s ease;
}

.service-card:hover .service-number {
	background: linear-gradient(135deg, var(--color-primary) 0%, #667eea 100%);
	color: white;
	transform: scale(1.1);
}

.service-icon {
	width: 60px;
	height: 60px;
	margin: 0 0 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
	border-radius: 12px;
	color: var(--color-primary);
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.service-icon svg {
	width: 30px;
	height: 30px;
	stroke: var(--color-primary) !important;
	stroke-width: 2;
	fill: none !important;
	color: var(--color-primary) !important;
}

.service-card:hover .service-icon {
	background: linear-gradient(135deg, var(--color-primary) 0%, #667eea 100%);
	transform: scale(1.05);
}

.service-card:hover .service-icon svg {
	stroke: #ffffff !important;
	color: #ffffff !important;
}

.service-title {
	margin-bottom: 0.875rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-dark);
	line-height: 1.3;
	flex-shrink: 0;
}

.service-description {
	color: #666;
	margin-bottom: 1.5rem;
	line-height: 1.65;
	font-size: 0.9375rem;
	flex-grow: 0;
	flex-shrink: 0;
}

.service-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	flex-grow: 1;
}

.service-features li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.875rem;
	font-size: 0.9375rem;
	color: var(--color-dark);
	line-height: 1.6;
}

.service-features li:last-child {
	margin-bottom: 0;
}

.service-features .feature-icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-primary) 0%, #667eea 100%);
	border-radius: 50%;
	color: white;
	margin-top: 2px;
	box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
}

.service-features .feature-icon svg {
	width: 14px;
	height: 14px;
	stroke-width: 3;
}

.service-card .card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--color-primary);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.3s ease;
	padding: 0.5rem 0;
	margin-top: auto;
	flex-shrink: 0;
}

.service-card .card-link:hover {
	gap: 0.75rem;
	color: var(--color-primary-dark);
}

.service-card .card-link span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
	border-radius: 50%;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.service-card:hover .card-link span {
	background: linear-gradient(135deg, var(--color-primary) 0%, #667eea 100%);
	color: white;
	transform: translateX(4px);
}

/* ===========================
   13. Portfolio/Showcase
   =========================== */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	aspect-ratio: 4 / 3;
	background: #1a1a1a;
	transition: all 0.3s ease;
}

.portfolio-item:hover {
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
	transform: translateY(-5px);
}

.portfolio-image {
	width: 100%;
	height: 100%;
}

.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.portfolio-item:hover .portfolio-image img {
	transform: scale(1.08);
	opacity: 0.85;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
	opacity: 1;
	transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
	background: linear-gradient(to top, rgba(13, 110, 253, 0.95) 0%, rgba(102, 126, 234, 0.85) 100%);
}

.portfolio-category {
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
	display: inline-block;
}

.portfolio-title {
	color: #ffffff;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
}

.portfolio-title a {
	color: #ffffff;
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.portfolio-title a:hover {
	opacity: 0.9;
}

/* ===========================
   14. Testimonials
   =========================== */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.testimonial-card {
	background-color: #ffffff;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
	box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
	transform: translateY(-5px);
	border-color: rgba(13, 110, 253, 0.15);
}

.testimonial-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.rating-stars {
	display: flex;
	gap: 0.25rem;
}

.rating-stars svg {
	width: 18px;
	height: 18px;
	fill: #fbbf24;
	color: #fbbf24;
}

.rating-number {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
	margin-left: 0.5rem;
}

.testimonial-text {
	font-size: 1rem;
	color: #666;
	margin-bottom: 2rem;
	line-height: 1.7;
	font-style: normal;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid rgba(13, 110, 253, 0.1);
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.testimonial-info {
	flex: 1;
}

.testimonial-info h4 {
	margin: 0 0 0.25rem 0;
	font-size: 1.063rem;
	font-weight: 700;
	color: #1a1a1a;
}

.testimonial-position {
	color: #666;
	font-size: 0.875rem;
	margin: 0;
}

.testimonial-company {
	margin-top: 0.5rem;
	opacity: 0.6;
}

.testimonial-company img {
	height: 24px;
	width: auto;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-company img {
	filter: grayscale(0%);
	opacity: 1;
}

/* ===========================
   15. Blog/Journal
   =========================== */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: 2.5rem;
	margin-top: 3rem;
}

.post-card {
	background-color: #ffffff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #e9ecef;
	display: flex;
	flex-direction: column;
}

.post-card:hover {
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.post-thumbnail {
	aspect-ratio: 16 / 9;
	overflow: hidden;
	position: relative;
	background: #f5f5f5;
}

.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.08);
}

.post-content {
	padding: 1.75rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.post-category-badge {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	background: #f8f9fa;
	color: #333;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 4px;
	margin-bottom: 1rem;
	text-transform: capitalize;
}

.post-title {
	font-size: 1.2rem;
	font-weight: 700;
	color: #000;
	margin: 0 0 1rem 0;
	line-height: 1.4;
}

.post-title a {
	color: #000;
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-title a:hover {
	color: var(--color-primary);
}

.post-meta-bottom {
	display: flex;
	align-items: center;
	gap: 1rem;
	font-size: 0.85rem;
	color: #666;
	margin-top: auto;
}

.post-meta-bottom svg {
	width: 16px;
	height: 16px;
}

.post-meta-bottom span {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.post-author svg {
	color: #0d6efd;
}

.post-date svg {
	color: #666;
}

/* ===========================
   16. Footer CTA Section
   =========================== */
.footer-cta {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	padding: 5rem 0;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.footer-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 50%, rgba(13, 110, 253, 0.15) 0%, transparent 50%),
	            radial-gradient(circle at 70% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%);
	pointer-events: none;
}

.footer-cta .container {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.footer-cta-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1.5rem 0;
	line-height: 1.2;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.footer-cta-text {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 2.5rem 0;
	line-height: 1.6;
}

.footer-cta .btn {
	padding: 1rem 3rem;
	font-size: 1.0625rem;
	border-radius: 50px;
	box-shadow: 0 4px 20px rgba(13, 110, 253, 0.4);
}

@media (max-width: 768px) {
	.footer-cta {
		padding: 4rem 0;
	}

	.footer-cta-title {
		font-size: 2rem;
	}

	.footer-cta-text {
		font-size: 1rem;
	}
}

.post-title {
	font-size: 1.25rem;
	margin-bottom: var(--spacing-sm);
}

.post-title a {
	color: var(--color-dark);
}

.post-title a:hover {
	color: var(--color-primary);
}

.post-excerpt {
	color: var(--color-medium-gray);
	margin-bottom: var(--spacing-md);
}

.read-more {
	color: var(--color-primary);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

/* ===========================
   16. Utility Classes
   =========================== */
.text-center {
	text-align: center;
}

.text-primary {
	color: var(--color-primary);
}

.text-muted {
	color: var(--color-medium-gray);
}

.bg-gray {
	background-color: var(--color-light-gray);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ===========================
   17. Animations
   =========================== */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-up {
	animation: fadeInUp 0.6s ease-out;
}

/* ===========================
   18. Responsive
   =========================== */
@media (max-width: 991px) {
	.services-grid {
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 1.5rem;
	}

	.service-card {
		padding: 2rem;
		min-height: 420px;
	}

	.service-number {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.service-icon {
		width: 64px;
		height: 64px;
	}

	.service-icon svg {
		width: 32px;
		height: 32px;
		stroke: #ffffff !important;
		fill: none !important;
	}
}

@media (max-width: 767px) {
	:root {
		--spacing-xl: 3rem;
		--spacing-2xl: 4rem;
	}

	.section {
		padding: var(--spacing-xl) 0;
	}

	.hero {
		min-height: 500px;
		padding: var(--spacing-lg) 0;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.service-card {
		padding: 2rem 1.75rem;
		min-height: auto;
	}

	.service-icon {
		width: 60px;
		height: 60px;
		margin-bottom: 1.25rem;
	}

	.service-icon svg {
		width: 30px;
		height: 30px;
		stroke: #ffffff !important;
		fill: none !important;
	}

	.service-title {
		font-size: 1.25rem;
		margin-bottom: 0.875rem;
	}

	.service-description {
		font-size: 0.875rem;
		margin-bottom: 1.25rem;
	}

	.service-features li {
		font-size: 0.875rem;
		margin-bottom: 0.75rem;
	}

	.service-features .feature-icon {
		width: 22px;
		height: 22px;
	}

	.service-features .feature-icon svg {
		width: 13px;
		height: 13px;
	}

	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 575px) {
	.btn-group {
		flex-direction: column;
		align-items: stretch;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	.service-card {
		padding: 1.75rem 1.5rem;
	}

	.service-number {
		width: 36px;
		height: 36px;
		font-size: 0.9375rem;
		top: 1.25rem;
		right: 1.25rem;
	}

	.service-icon {
		width: 56px;
		height: 56px;
	}

	.service-icon svg {
		width: 28px;
		height: 28px;
		stroke: #ffffff !important;
		fill: none !important;
	}

	.service-title {
		font-size: 1.125rem;
	}
}

/* ===========================
   About Page
   =========================== */
/* About Page Styles - New Layout */
.about-hero-new {
	background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.about-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: start;
}

@media (min-width: 992px) {
	.about-hero-grid {
		grid-template-columns: 1.2fr 1fr;
		gap: 5rem;
	}
}

.about-hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 2rem 0;
	line-height: 1.15;
}

@media (min-width: 768px) {
	.about-hero-title {
		font-size: 4rem;
	}
}

.about-hero-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2rem;
}

.about-hero-image-1,
.about-hero-image-2 {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
}

.about-hero-image-1 {
	aspect-ratio: 3/4;
}

.about-hero-image-2 {
	aspect-ratio: 3/4;
	margin-top: 3rem;
}

.about-hero-image-1 img,
.about-hero-image-2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero-content {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.about-hero-description {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin: 0;
}

.btn-outline-white {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 0.875rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
}

.btn-outline-white:hover {
	background: #ffffff;
	color: #0d6efd;
	border-color: #ffffff;
}

/* Process Section */
.process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.process-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.process-card {
	background: #ffffff;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.process-card:hover {
	box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
	transform: translateY(-5px);
	border-color: rgba(13, 110, 253, 0.15);
}

.process-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	border-radius: 50%;
	margin-bottom: 1.5rem;
}

.process-icon svg {
	width: 28px;
	height: 28px;
	color: #ffffff;
}

.process-card h3 {
	font-size: 1.375rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 1rem 0;
}

.process-card p {
	color: #666;
	line-height: 1.7;
	margin: 0 0 1.5rem 0;
	font-size: 0.9375rem;
}

.btn-link {
	color: #0d6efd;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-link:hover {
	color: #667eea;
	text-decoration: underline;
}

/* Awards Section */
.awards-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
	margin-top: 3rem;
}

@media (min-width: 992px) {
	.awards-grid {
		grid-template-columns: 1fr 1.5fr;
		gap: 5rem;
	}
}

.awards-image {
	position: relative;
}

.awards-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.awards-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.award-item {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.award-item:last-child {
	border-bottom: none;
}

.award-content {
	flex: 1;
}

.award-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.5rem 0;
}

.award-desc {
	font-size: 0.9375rem;
	color: #666;
	margin: 0;
}

.award-year {
	font-size: 1rem;
	font-weight: 600;
	color: #999;
	margin-left: 2rem;
	flex-shrink: 0;
}

/* Story Section */
.story-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 992px) {
	.story-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.story-image {
	position: relative;
}

.story-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.story-content h2 {
	font-size: 2.25rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 1.5rem 0;
	line-height: 1.2;
}

.story-content p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	font-size: 1.0625rem;
}

.story-features {
	margin-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.story-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.story-feature-item svg {
	width: 20px;
	height: 20px;
	color: #0d6efd;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.story-feature-item span {
	color: #1a1a1a;
	font-size: 0.9375rem;
	line-height: 1.6;
}

/* Team Section */
.team-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-top: 3rem;
}

@media (min-width: 600px) {
	.team-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	.team-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.team-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
}

.team-card:hover {
	box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
	transform: translateY(-5px);
}

.team-card-image {
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f9fa;
}

.team-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-card-content {
	padding: 1.5rem;
	text-align: center;
}

.team-card-content h4 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.5rem 0;
}

.team-card-content p {
	font-size: 0.9375rem;
	color: #666;
	margin: 0;
}

/* CTA Section Dark */
.section-dark {
	background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
	padding: 6rem 0;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-icon {
	margin-bottom: 2rem;
}

.cta-icon svg {
	color: #0d6efd;
}

.cta-content h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1rem 0;
	line-height: 1.2;
}

.cta-content p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 2.5rem 0;
}

.btn-accent {
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	color: #ffffff;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(13, 110, 253, 0.3);
}

.btn-accent:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 30px rgba(13, 110, 253, 0.4);
	color: #ffffff;
}

.cta-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-footer p {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 0.5rem 0;
}

@media (max-width: 991px) {
	.about-hero-new {
		padding: 4rem 0 3rem;
	}
	
	.about-hero-title {
		font-size: 2.5rem;
	}
	
	.about-hero-images {
		grid-template-columns: 1fr;
	}
	
	.about-hero-image-2 {
		margin-top: 0;
	}
	
	.cta-content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.process-icon {
		width: 50px;
		height: 50px;
	}
	
	.process-icon svg {
		width: 24px;
		height: 24px;
	}
}

/* Service Page Styles */
.service-hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.service-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 992px) {
	.service-hero-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.service-hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1.5rem 0;
	line-height: 1.15;
}

@media (min-width: 768px) {
	.service-hero-title {
		font-size: 3.5rem;
	}
}

.service-hero-description {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	margin: 0 0 2rem 0;
}

.service-hero-image {
	position: relative;
}

.service-hero-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Service Description Section */
.service-description-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 992px) {
	.service-description-grid {
		grid-template-columns: 1fr 1fr;
		gap: 5rem;
	}
}

.service-description-content h2 {
	font-size: 2.25rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 1.5rem 0;
	line-height: 1.2;
}

.service-description-content p {
	color: #666;
	line-height: 1.7;
	margin-bottom: 2rem;
	font-size: 1.0625rem;
}

.service-features-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.service-feature-check {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.service-feature-check svg {
	width: 20px;
	height: 20px;
	color: #0d6efd;
	flex-shrink: 0;
}

.service-feature-check span {
	color: #1a1a1a;
	font-weight: 600;
	font-size: 1rem;
}

.service-description-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

/* Service Process Section */
.service-process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	margin-top: 3rem;
}

@media (min-width: 768px) {
	.service-process-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-process-card {
	background: #ffffff;
	padding: 2.5rem 2rem;
	border-radius: 16px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.06);
	text-align: center;
	transition: all 0.3s ease;
}

.service-process-card:hover {
	box-shadow: 0 8px 30px rgba(13, 110, 253, 0.12);
	transform: translateY(-5px);
	border-color: rgba(13, 110, 253, 0.15);
}

.service-process-number {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	border-radius: 50%;
	margin: 0 auto 1.5rem;
}

.service-process-number svg {
	width: 28px;
	height: 28px;
	color: #ffffff;
}

.service-process-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 1rem 0;
}

.service-process-card p {
	color: #666;
	line-height: 1.7;
	margin: 0;
	font-size: 0.9375rem;
}

/* Service Superpowers Section */
.service-superpowers-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	align-items: center;
}

@media (min-width: 992px) {
	.service-superpowers-grid {
		grid-template-columns: 1fr 1.5fr;
		gap: 5rem;
	}
}

.service-superpowers-image {
	position: relative;
}

.service-superpowers-image img {
	width: 100%;
	height: auto;
	border-radius: 16px;
}

.service-superpowers-content h2 {
	font-size: 2.25rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 2rem 0;
	line-height: 1.2;
}

.service-superpower-item {
	padding: 1.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-superpower-item:last-child {
	border-bottom: none;
}

.service-superpower-item h4 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 0.75rem 0;
}

.service-superpower-item p {
	color: #666;
	line-height: 1.7;
	margin: 0;
	font-size: 0.9375rem;
}

/* FAQ Section */
.service-faq-list {
	max-width: 900px;
	margin: 3rem auto 0;
}

.service-faq-item {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	transition: all 0.3s ease;
}

.service-faq-item:hover {
	border-color: rgba(13, 110, 253, 0.15);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.service-faq-question {
	padding: 1.5rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}

.service-faq-question h4 {
	font-size: 1.0625rem;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0;
	flex: 1;
}

.service-faq-toggle {
	font-size: 1.5rem;
	font-weight: 300;
	color: #0d6efd;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 1rem;
	transition: transform 0.3s ease;
}

.service-faq-item.active .service-faq-toggle {
	transform: rotate(45deg);
}

.service-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.service-faq-answer p {
	padding: 0 2rem 1.5rem 2rem;
	margin: 0;
	color: #666;
	line-height: 1.7;
	font-size: 0.9375rem;
}

@media (max-width: 991px) {
	.service-hero {
		padding: 4rem 0 3rem;
	}
	
	.service-hero-title {
		font-size: 2.5rem;
	}
	
	.service-description-content h2,
	.service-superpowers-content h2 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.service-faq-question {
		padding: 1.25rem 1.5rem;
	}
	
	.service-faq-question h4 {
		font-size: 1rem;
	}
	
	.service-faq-answer p {
		padding: 0 1.5rem 1.25rem 1.5rem;
	}
}

/* ===========================
   Get a Quote Page Styles
   =========================== */

/* Quote Hero Section */
.quote-hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
	padding: 8rem 0 4rem;
	position: relative;
	overflow: hidden;
}

.quote-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 20% 50%, rgba(13, 110, 253, 0.1), transparent 50%),
	            radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1), transparent 50%);
	pointer-events: none;
}

.quote-hero-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}

.quote-hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
	line-height: 1.2;
}

.quote-hero-subtitle {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

/* Quote Image Banner */
.quote-image-banner {
	margin: -3rem 0 4rem;
	position: relative;
	z-index: 2;
}

.quote-banner-img {
	max-width: 900px;
	margin: 0 auto;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.quote-banner-img img {
	width: 100%;
	height: auto;
	display: block;
}

/* Quote Form Section */
.quote-form-section {
	padding: 4rem 0 6rem;
	background: #ffffff;
}

.quote-form-header {
	max-width: 700px;
	margin: 0 auto 3rem;
}

.quote-form-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.quote-form-header p {
	font-size: 1rem;
	color: #666;
	line-height: 1.7;
}

/* Modern Quote Form */
.quote-form-modern {
	max-width: 700px;
	margin: 0 auto;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 16px;
	padding: 3rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1a1a2e;
	margin-bottom: 0.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
	width: 100%;
	padding: 0.875rem 1rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	font-family: var(--font-primary);
	transition: all 0.3s ease;
	background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #0d6efd;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-group textarea {
	resize: vertical;
	min-height: 120px;
}

/* Phone Input */
.phone-input {
	display: flex;
	gap: 0.5rem;
}

.phone-input .country-code {
	width: 120px;
	padding: 0.875rem 0.75rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	font-size: 1rem;
	background: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
}

.phone-input .country-code:focus {
	outline: none;
	border-color: #0d6efd;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.phone-input input[type="tel"] {
	flex: 1;
}

/* Services Grid - Checkbox Style */
.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.service-checkbox {
	position: relative;
}

.service-checkbox input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

.service-checkbox label {
	display: block;
	padding: 1rem 1.25rem;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #ffffff;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	font-weight: 500;
	margin: 0;
}

.service-checkbox input[type="checkbox"]:checked + label {
	border-color: #0d6efd;
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.service-checkbox label:hover {
	border-color: #0d6efd;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Submit Button */
.btn-quote-submit {
	width: 100%;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #0d6efd 0%, #667eea 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
}

.btn-quote-submit:hover {
	background: linear-gradient(135deg, #0a58ca 0%, #5568d3 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
}

/* Bottom CTA Section */
.quote-bottom-cta {
	background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.quote-bottom-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.1), transparent 60%);
	pointer-events: none;
}

.quote-bottom-cta .container {
	position: relative;
	z-index: 1;
}

.quote-cta-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 0 auto 2rem;
	overflow: hidden;
	border: 4px solid rgba(255, 255, 255, 0.2);
}

.quote-cta-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quote-bottom-cta h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
}

.quote-bottom-cta > .container > p {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 2rem;
}

.btn-cta-book {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: linear-gradient(135deg, #c8ff00 0%, #a8d900 100%);
	color: #1a1a2e;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(200, 255, 0, 0.3);
}

.btn-cta-book:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(200, 255, 0, 0.4);
	color: #1a1a2e;
}

.cta-email {
	margin-top: 2rem;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.6;
}

.cta-email a {
	color: #0d6efd;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.cta-email a:hover {
	color: #667eea;
	text-decoration: underline;
}

/* Responsive - Quote Page */
@media (max-width: 991px) {
	.quote-hero {
		padding: 6rem 0 3rem;
	}
	
	.quote-hero-title {
		font-size: 2.5rem;
	}
	
	.quote-form-header h2 {
		font-size: 2rem;
	}
	
	.quote-bottom-cta h2 {
		font-size: 2rem;
	}
}

@media (max-width: 767px) {
	.quote-hero {
		padding: 5rem 0 2rem;
	}
	
	.quote-hero-title {
		font-size: 2rem;
	}
	
	.quote-hero-subtitle {
		font-size: 1rem;
	}
	
	.quote-image-banner {
		margin: -2rem 0 3rem;
	}
	
	.quote-banner-img {
		border-radius: 12px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.quote-form-header h2 {
		font-size: 1.75rem;
	}
	
	.quote-form-modern {
		padding: 2rem 1.5rem;
		border-radius: 12px;
	}
	
	.quote-bottom-cta {
		padding: 4rem 0;
	}
	
	.quote-bottom-cta h2 {
		font-size: 1.75rem;
	}
}

/* ===========================
   Global CTA Section
   =========================== */

.global-cta-section {
	background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
}

.global-cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.1), transparent 60%);
	pointer-events: none;
}

.global-cta-content {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.global-cta-image {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
}

.global-cta-image img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
	opacity: 0.6;
}

.global-cta-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.global-cta-description {
	font-size: 1.125rem;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 2rem;
	line-height: 1.6;
	font-weight: 400;
}

.btn-cta-global {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: #4d9fff;
	color: #ffffff;
	font-weight: 600;
	font-size: 1rem;
	border-radius: 6px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(77, 159, 255, 0.3);
	border: none;
	text-transform: none;
}

.btn-cta-global:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(77, 159, 255, 0.4);
	color: #ffffff;
	background: #6bb0ff;
	text-decoration: none;
}

.global-cta-email {
	margin-top: 2rem;
	padding-top: 0;
	border-top: none;
}

.cta-email-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0.25rem;
	font-weight: 400;
}

.cta-email-link {
	color: #5b9aff;
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.cta-email-link:hover {
	color: #7db0ff;
	text-decoration: none;
}



/* Responsive - Global CTA */
@media (max-width: 991px) {
	.global-cta-section {
		padding: 5rem 0;
	}
	
	.global-cta-title {
		font-size: 2.125rem;
	}
	
	.global-cta-description {
		font-size: 1.0625rem;
	}
	
	.global-cta-image img {
		width: 80px;
		height: 80px;
	}
}

@media (max-width: 767px) {
	.global-cta-section {
		padding: 4rem 0;
	}
	
	.global-cta-title {
		font-size: 1.75rem;
	}
	
	.global-cta-description {
		font-size: 1rem;
		margin-bottom: 1.75rem;
	}
	
	.global-cta-image {
		margin-bottom: 1.5rem;
	}
	
	.global-cta-image img {
		width: 70px;
		height: 70px;
	}
	
	.btn-cta-global {
		padding: 0.875rem 2rem;
		font-size: 0.9375rem;
	}
	
	.global-cta-email {
		margin-top: 1.75rem;
	}
}

/* ====================================
   MOBILE RESPONSIVENESS ENHANCEMENTS
   Extra Small Devices (<480px)
   ==================================== */

@media (max-width: 480px) {
	/* Global Container Padding */
	:root {
		--container-padding: 1rem;
	}
	
	/* Header Logo */
	.header-logo .custom-logo {
		max-width: 120px;
	}
	
	/* Mobile Menu */
	.mobile-menu.active {
		max-height: 80vh;
		overflow-y: auto;
	}
	
	/* Hero Section */
	.hero {
		min-height: auto;
		padding: 3rem 0 2rem 0;
	}
	
	.hero-text h1 {
		font-size: 2.25rem;
		margin-bottom: 1rem;
	}
	
	.hero-text .lead {
		font-size: 1rem;
		margin-bottom: 1.75rem;
	}
	
	/* Stats Grid */
	.stats-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.stat-item {
		padding: 1rem;
		gap: 1rem;
	}
	
	.stat-icon {
		width: 50px;
		height: 50px;
	}
	
	.stat-icon svg {
		width: 24px;
		height: 24px;
	}
	
	/* Buttons */
	.btn-group {
		align-items: stretch;
	}

	.btn {
		width: 100%;
		text-align: center;
	}
	
	/* Service Cards */
	.service-card {
		padding: 1.5rem 1.25rem;
	}
	
	.service-number {
		width: 32px;
		height: 32px;
		font-size: 0.875rem;
		top: 1rem;
		right: 1rem;
	}
	
	.service-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 1rem;
	}
	
	.service-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.service-title {
		font-size: 1.0625rem;
	}
	
	.service-features li {
		font-size: 0.9375rem;
	}
	
	/* Portfolio */
	.portfolio-title {
		font-size: 1.125rem;
	}
	
	.portfolio-category {
		font-size: 0.8125rem;
	}
	
	.portfolio-overlay {
		padding: 1.5rem;
	}
	
	/* Blog/Posts */
	.post-content {
		padding: 1.5rem;
	}
	
	.post-title {
		font-size: 1.125rem;
	}
	
	.post-excerpt {
		font-size: 0.875rem;
		margin-bottom: 1rem;
	}
	
	/* Footer */
	.footer-main {
		padding: 3rem 0 2rem;
	}
	
	.footer-bottom {
		padding: 1rem 0;
	}
	
	.footer-widgets {
		gap: 2rem;
	}
	
	.footer-column h4 {
		font-size: 1rem;
	}
	
	/* Global CTA */
	.global-cta-section {
		padding: 3rem 0;
	}
	
	.global-cta-title {
		font-size: 1.5rem;
		margin-bottom: 0.875rem;
	}
	
	.global-cta-description {
		font-size: 0.9375rem;
		margin-bottom: 1.5rem;
	}
	
	.global-cta-image img {
		width: 60px;
		height: 60px;
	}
	
	.btn-cta-global {
		padding: 0.75rem 1.75rem;
		font-size: 0.875rem;
		width: 100%;
	}
	
	/* About Page */
	.about-hero-new {
		padding: 3rem 0 2rem;
	}
	
	.about-hero-title {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}
	
	.about-hero-description {
		font-size: 0.9375rem;
	}
	
	.about-hero-image-1,
	.about-hero-image-2 {
		aspect-ratio: 4/3;
	}
	
	.about-hero-images {
		gap: 1rem;
	}
	
	.process-card {
		padding: 2rem 1.5rem;
	}
	
	.process-card h3 {
		font-size: 1.125rem;
	}
	
	.process-card p {
		font-size: 0.875rem;
	}
}
