/* ==============================
   CSS RESET
============================== */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* ==============================
   BASE STYLES
============================== */

body {
	font-family: 'Outfit', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #111;
	background-color: #fff;
}

body.menu-open {
	overflow: hidden;
}


/* ==============================
   UTILITIES
============================== */

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

:root {
	--brand-orange: #f47c20;
	--brand-orange-dark: #d86512;
	--text-dark: #0f172a;
	--bg-light: #ffffff;
	--hero-accent: #ff6b00;

}

/* =============================
   HEADER
============================= */

.site-header {
	background: var(--bg-light);
	border-bottom: 1px solid #eee;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 80px;
	position: relative;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 80px;
}

.site-logo {
	display: flex;
	align-items: center;
	max-height: 80px;
}

.site-logo a {
	display: inline-flex;
	align-items: center;
}

.site-logo img,
.custom-logo {
	max-height: 42px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}


/* Search Button */

.header-search {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: transparent;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.header-search span {
	display: block;
	width: 16px;
	height: 16px;
	border: 2px solid var(--brand-orange);
	/* ORANGE ICON */
	border-radius: 50%;
	position: relative;
}

.header-search span::after {
	content: '';
	width: 8px;
	height: 2px;
	background: var(--brand-orange);
	/* ORANGE HANDLE */
	position: absolute;
	right: -6px;
	bottom: -4px;
	transform: rotate(45deg);
}



/* Hamburger */
.header-menu-toggle {
	width: 40px;
	height: 40px;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 0;
	z-index: 2;
}


.header-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text-dark);
	display: block;
}

/* =============================
   MENU OVERLAY
============================= */

.menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
	z-index: 9999;
	display: none;
}

.menu-overlay.active {
	display: block;
}

/* Overlay Header */
.menu-overlay-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 1rem;
	border-bottom: 1px solid #eee;
	z-index: 10000;
}

/* Overlay Content Area */
.menu-overlay-inner {
	padding-top: 120px;
	/* space below fixed header */
	padding-left: 1rem;
	padding-right: 1rem;
	max-width: 1200px;
	margin: 0 auto;
}

.site-header {
	position: relative;
	background: var(--bg-light);
	border-bottom: 1px solid #eee;
	z-index: 200;
}

.menu-close {
	font-size: 32px;
	background: none;
	border: none;
	cursor: pointer;
}

.overlay-menu {
	list-style: none;
	padding: 40px 0;
}

.overlay-menu li {
	margin-bottom: 24px;
	font-size: 24px;
	font-weight: 600;
}

.overlay-menu a {
	color: var(--text-dark);
	text-decoration: none;
}

.overlay-cta {
	margin-top: 40px;
}

.btn-primary {
	display: inline-block;
	background: var(--brand-orange);
	color: #fff;
	padding: 6px 20px;
	text-decoration: none;
	font-weight: 600;
	border-radius: 50px;
}

/* =============================
   DESKTOP NAVIGATION
============================= */
.desktop-navigation {
	display: flex;
	align-items: center;
	margin-left: auto;
	margin-right: 2rem;
}

.desktop-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 32px;
}

.desktop-menu li {
	font-weight: 500;
	font-size: 16px;
}

.desktop-menu a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

/* Dropdown Arrow (Linear Chevron) */
.desktop-menu .dropdown-icon {
	display: inline-block;
	width: 6px;
	height: 6px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	/* Point down */
	margin-bottom: 2px;
	/* Visual alignment */
	transition: transform 0.3s ease;
	margin-left: 6px;
}

/* Hover State: Rotate Arrow */
.desktop-menu li:hover>a .dropdown-icon {
	transform: rotate(-135deg);
	/* Point up */
	border-color: var(--brand-orange);
	margin-bottom: 2px;
	/* Keep same margin to prevent shift */
}

.desktop-menu a:hover {
	color: var(--brand-orange);
}

.desktop-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	background: #0284c7;
	/* Blue from screenshot? */
	background: var(--brand-orange);
	color: #fff;
	padding: 8px 20px;
	border-radius: 4px;
	font-weight: 600;
}

/* Hide Hamburger on Desktop */
@media (min-width: 1025px) {
	.header-menu-toggle {
		display: none;
	}
}


/* Animation Support */
.menu-overlay {
	display: block !important;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-20px);
	transition: all 0.3s ease-in-out;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


/* Refined Animation Support */
.menu-overlay {
	pointer-events: none;
}

.menu-overlay.active {
	pointer-events: auto;
}

.header-menu-toggle span {
	transition: all 0.3s ease;
}

body.menu-open .header-menu-toggle span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .header-menu-toggle span:nth-child(2) {
	opacity: 0;
}

body.menu-open .header-menu-toggle span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* ==============================
   FOOTER
============================== */

.site-footer {
	background-color: #fffaf5;
	/* Light Orange */
	padding: 80px 0 40px;
	border-top: 1px solid rgba(244, 124, 32, 0.2);
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

.footer-col h4 {
	color: #d86512;
	/* Darker Brand Orange */
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 24px;
	border-bottom: 2px solid transparent;
	/* Align visually */
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 12px;
}

.footer-col ul li a {
	color: #475569;
	/* Dark Gray */
	text-decoration: none;
	font-size: 14px;
	transition: color 0.2s ease;
}

.footer-col ul li a:hover {
	color: var(--brand-orange);
}

/* Footer Bottom */

.footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	border-top: 1px solid rgba(244, 124, 32, 0.1);
	padding-top: 40px;
	gap: 24px;
}

.footer-branding {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.footer-logo {
	height: 32px;
	width: auto;
}

.footer-company-name {
	font-size: 20px;
	font-weight: 700;
	color: #0f172a;
	margin: 0;
}

.footer-legal p {
	font-size: 13px;
	color: #64748b;
	margin: 0;
}

.footer-legal a {
	color: #64748b;
	text-decoration: none;
}

.footer-legal a:hover {
	text-decoration: underline;
}

.footer-socials {
	display: flex;
	gap: 20px;
	margin-top: 8px;
}

.footer-socials a {
	color: #0f172a;
	transition: color 0.3s ease, transform 0.2s ease;
	display: inline-block;
}

.footer-socials a:hover {
	color: var(--brand-orange);
	transform: translateY(-3px);
}

/* ==============================
   MEGA MENU (Desktop)
============================== */
@media (min-width: 1025px) {
	.desktop-navigation {
		position: relative;
	}

	.desktop-menu>li {
		position: relative;
		/* Dropdown positions relative to parent */
	}

	/* Dropdown Container */
	.mega-menu-dropdown {
		position: absolute;
		top: 100%;
		margin-top: 24px;
		left: 0;
		min-width: 320px;
		max-width: 420px;
		background: #fff;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		padding: 0;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: all 0.3s ease;
		z-index: 1000;
		border-top: 3px solid var(--brand-orange);
		border-radius: 0 0 8px 8px;
		overflow: hidden;
	}

	/* Hover State */
	.desktop-menu>li:hover .mega-menu-dropdown {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}

	/* Hide parent menu item link (About Us →) */
	.mega-menu-dropdown>li.mega-menu-parent {
		display: none;
	}

	/* Featured Image Banner - Full Width at Top */
	.mega-menu-dropdown>li:first-child .menu-item-image,
	.mega-menu-featured-image {
		width: 100%;
		height: 160px;
		border-radius: 0;
		margin-bottom: 0;
		background: #f1f5f9;
	}

	.mega-menu-dropdown>li:first-child .menu-item-image img,
	.mega-menu-featured-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 0;
	}

	/* Hide first item link if it's just the featured image */
	.mega-menu-dropdown>li:first-child>a {
		display: block;
		padding: 0;
		pointer-events: none;
	}

	/* Submenu Items Container */
	.mega-menu-dropdown>li {
		list-style: none;
		margin-bottom: 0;
	}

	/* Submenu Items - Below Featured Image */
	.mega-menu-dropdown>li:not(:first-child)>a {
		display: flex;
		align-items: center;
		gap: 12px;
		text-decoration: none;
		color: var(--text-dark);
		padding: 12px 20px;
		border-radius: 0;
		transition: background 0.2s ease;
		border-bottom: 1px solid #f1f5f9;
	}

	.mega-menu-dropdown>li:last-child>a {
		border-bottom: none;
	}

	.mega-menu-dropdown>li:not(:first-child)>a:hover {
		background: #fffaf5;
	}

	/* SVG Icons - On the Side */
	.mega-menu-dropdown>li:not(:first-child) .menu-item-image {
		width: 32px;
		height: 32px;
		flex-shrink: 0;
		border-radius: 50%;
		overflow: hidden;
		background: #e0f2fe;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.mega-menu-dropdown>li:not(:first-child) .menu-item-image img {
		width: 20px;
		height: 20px;
		object-fit: contain;
		display: block;
	}

	/* Text - Smaller Font */
	.menu-title {
		font-weight: 500;
		font-size: 14px;
		color: var(--text-dark);
		display: block;
	}

	.mega-menu-dropdown>li>a:hover .menu-title {
		color: var(--brand-orange);
	}
}

/* Menu Description */
.menu-description {
	display: block;
	font-size: 11px;
	color: #64748b;
	margin-top: 2px;
	line-height: 1.3;
	font-weight: 400;
}


/* ==============================
   SIMPLE DROPDOWN MENU
============================== */
@media (min-width: 1025px) {

	/* Simple Dropdown Layout */
	.mega-menu-dropdown {
		display: block !important;
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 280px;
		max-width: 400px;
		background: #fff;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
		padding: 20px;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: all 0.3s ease;
		z-index: 1000;
		border-top: 3px solid var(--brand-orange);
		border-radius: 0 0 8px 8px;
	}
}

/* ==============================
   HERO SLIDER — LEANGROUP STYLE
============================== */

/* --- Hero Slider Container --- */
.hero-slider {
	position: relative;
	width: 100%;
	height: 60vh;
	min-height: 480px;
	overflow: hidden;
	background: #fff;
}

.hero-split-container {
	display: flex;
	width: 100%;
	height: 100%;
}

/* --- LEFT: Text Panel (50%) --- */
.hero-text-panel {
	position: relative;
	width: 50%;
	flex: 0 0 50%;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.hero-text-swiper {
	width: 100%;
	height: 100%;
}

.hero-text-slide {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 80px 60px 80px 80px;
}

.hero-text-inner {
	max-width: 520px;
}

/* Text element initial (hidden) state */
.hero-text-inner .hero-eyebrow,
.hero-text-inner .hero-title,
.hero-text-inner .hero-subtitle,
.hero-text-inner .hero-cta {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1),
		transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Text element visible (animated-in) state */
.hero-text-inner.is-visible .hero-eyebrow {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.hero-text-inner.is-visible .hero-title {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.3s;
}

.hero-text-inner.is-visible .hero-subtitle {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.hero-text-inner.is-visible .hero-cta {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.7s;
}

/* Eyebrow / Small Label */
.hero-eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #FF6700;
	margin-bottom: 20px;
	padding: 6px 16px;
	background: #FFF3E0;
	border-radius: 30px;
	border: 1px solid rgba(255, 103, 0, 0.2);
}

/* Title */
.hero-title {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.12;
	color: #333333;
	margin-bottom: 24px;
}

.hero-title span {
	color: #FF6700;
}

/* Subtitle */
.hero-subtitle {
	font-size: 18px;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 36px;
	max-width: 460px;
}

/* CTA Button */
/* Multi-color hard-stop gradient */
.hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg,
			#FFC107 0%, #FFC107 20%,
			#FF9800 20%, #FF9800 40%,
			#FF5722 40%, #FF5722 60%,
			#F44336 60%, #F44336 80%,
			#D32F2F 80%, #D32F2F 100%);
	color: #FFFFFF;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 6px 25px rgba(255, 103, 0, 0.3);
}

.hero-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 35px rgba(255, 103, 0, 0.4);
	filter: brightness(1.1);
	color: #FFFFFF;
}

.hero-cta:active {
	transform: translateY(-1px);
}

.hero-cta svg {
	width: 18px;
	height: 18px;
	transition: transform 0.3s ease;
}

.hero-cta:hover svg {
	transform: translateX(4px);
}

/* --- RIGHT: Image Panel (50%) --- */
.hero-image-panel {
	position: relative;
	width: 50%;
	flex: 0 0 50%;
	overflow: hidden;
	z-index: 1;
}

.hero-image-swiper {
	width: 100%;
	height: 100%;
}

.hero-image-slide {
	overflow: hidden;
}

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

/* --- Orange Curtain Overlay --- */
.hero-curtain {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			#FFC107 0%, #FFC107 20%,
			#FF9800 20%, #FF9800 40%,
			#FF5722 40%, #FF5722 60%,
			#F44336 60%, #F44336 80%,
			#D32F2F 80%, #D32F2F 100%);
	z-index: 10;
	transform: translateX(-101%);
	will-change: transform;
	pointer-events: none;
}

.hero-curtain.sweeping-in {
	animation: curtainIn 0.55s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

.hero-curtain.sweeping-out {
	animation: curtainOut 0.55s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes curtainIn {
	from {
		transform: translateX(-101%);
	}

	to {
		transform: translateX(0%);
	}
}

@keyframes curtainOut {
	from {
		transform: translateX(0%);
	}

	to {
		transform: translateX(101%);
	}
}

/* --- Slide Indicators --- */
.hero-indicators {
	position: absolute;
	bottom: 40px;
	left: 80px;
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 10px;
}

.hero-indicator {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #ccc;
	border: 2px solid transparent;
	cursor: pointer;
	padding: 0;
	transition: all 0.35s ease;
}

.hero-indicator:hover {
	background: #FF6700;
	opacity: 0.7;
}

.hero-indicator.active {
	background: linear-gradient(90deg,
			#FFC107 0%, #FFC107 20%,
			#FF9800 20%, #FF9800 40%,
			#FF5722 40%, #FF5722 60%,
			#F44336 60%, #F44336 80%,
			#D32F2F 80%, #D32F2F 100%);
	width: 30px;
	border-radius: 20px;
	box-shadow: 0 0 12px rgba(255, 103, 0, 0.5);
}

/* --- Swiper overrides --- */
.hero-text-swiper .swiper-wrapper,
.hero-image-swiper .swiper-wrapper {
	transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-text-swiper .swiper-slide,
.hero-image-swiper .swiper-slide {
	height: auto;
}

.hero-image-swiper .swiper-slide {
	height: 100%;
}

/* ==============================
   PRODUCT SECTION
============================== */

.product-section {
	padding: 100px 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.product-grid {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 60px;
	align-items: center;
}

.product-image {
	position: relative;
}

.product-image img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	display: block;
}

.product-content {
	padding-left: 20px;
}

.product-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--brand-orange);
	margin-bottom: 16px;
	background: rgba(244, 124, 32, 0.1);
	padding: 8px 20px;
	border-radius: 30px;
	border: 1px solid rgba(244, 124, 32, 0.3);
}

.product-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: 24px;
}

.product-description {
	font-size: 18px;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 32px;
	max-width: 600px;
}

.product-btn {
	display: inline-block;
	background: var(--brand-orange);
	color: #fff;
	padding: 16px 40px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 124, 32, 0.3);
}

.product-btn:hover {
	background: var(--brand-orange-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(244, 124, 32, 0.4);
}

.product-btn:active {
	transform: translateY(0);
}

/* ==============================
   SERVICES SECTION
============================== */

.services-section {
	padding: 100px 0;
	background: #fffbf7;
	position: relative;
}

.services-header {
	text-align: left;
	margin-bottom: 60px;
	max-width: 600px;
}

.services-heading {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--brand-orange);
	margin-bottom: 16px;
}

.services-description {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.services-subdescription {
	font-size: 18px;
	line-height: 1.6;
	color: #64748b;
	margin-bottom: 0;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.service-card {
	background: #fff;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	position: relative;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	background: linear-gradient(135deg, #fffaf5 0%, #fff5ed 100%);
}

.service-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fff5ed;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	border: 2px solid var(--brand-orange);
	transition: all 0.4s ease;
}

.service-card:hover .service-icon {
	transform: rotate(8deg);
	background: var(--brand-orange);
	border-color: var(--brand-orange-dark);
}

.service-icon img {
	width: 32px;
	height: 32px;
	object-fit: contain;
	transition: all 0.4s ease;
}

.service-card:hover .service-icon img {
	filter: brightness(0) invert(1);
}

.service-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 16px;
	line-height: 1.3;
}

.service-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #64748b;
	margin-bottom: 24px;
}

.service-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--brand-orange);
	color: #fff;
	padding: 12px 28px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 124, 32, 0.25);
}

.service-btn:hover {
	background: var(--brand-orange-dark);
	transform: translateX(4px);
	box-shadow: 0 6px 20px rgba(244, 124, 32, 0.35);
}

.service-btn .btn-arrow {
	transition: transform 0.3s ease;
	font-size: 18px;
}

.service-btn:hover .btn-arrow {
	transform: translateX(4px);
}

/* ==============================
   DESIGN SECTION (INDUSTRIES)
============================== */

.design-section {
	padding: 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.design-container {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.design-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 600px;
}

/* Left Side - Orange Panel */
.design-left {
	background: linear-gradient(135deg, #f47c20 0%, #ff6b00 50%, #ff8c42 100%);
	position: relative;
	display: flex;
	align-items: flex-start;
	padding: 80px 60px;
	overflow: hidden;
}

.design-left::before {
	content: '';
	position: absolute;
	top: 0;
	right: -100px;
	width: 300px;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 140, 66, 0.3) 0%, transparent 100%);
	transform: skewX(-15deg);
}

.design-left-content {
	position: relative;
	z-index: 2;
	max-width: 500px;
}

.design-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2.5px;
	color: #fff;
	margin-bottom: 24px;
	opacity: 0.95;
}

.design-title {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	margin-bottom: 40px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.design-image-wrapper {
	position: relative;
	margin-top: 40px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.design-warehouse-img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
}

/* Right Side - White Panel */
.design-right {
	background: #fff;
	display: flex;
	align-items: center;
	padding: 80px 60px;
}

.design-right-content {
	max-width: 600px;
}

.design-description {
	font-size: 16px;
	line-height: 1.7;
	color: #334155;
	margin-bottom: 40px;
}

/* Industries Grid */
.design-industries-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px 40px;
	margin-bottom: 40px;
}

.design-industry-item {
	position: relative;
}

.design-industry-link {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--brand-orange);
	text-decoration: none;
	padding: 12px 0;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
	position: relative;
}

.design-industry-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--brand-orange);
	transition: width 0.3s ease;
}

.design-industry-link:hover {
	color: var(--brand-orange-dark);
	padding-left: 8px;
}

.design-industry-link:hover::after {
	width: 60px;
}

/* CTA Button */
.design-cta-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
}

.design-cta-btn {
	display: inline-block;
	background: var(--brand-orange);
	color: #fff;
	padding: 14px 32px;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 124, 32, 0.3);
}

.design-cta-btn:hover {
	background: var(--brand-orange-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(244, 124, 32, 0.4);
}

.design-cta-btn:active {
	transform: translateY(0);
}

/* ==============================
   AGENTEDGE SECTION
============================== */

.agentedge-section {
	padding: 0;
	background: #f8f9fa;
	position: relative;
	overflow: hidden;
}

.agentedge-container {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.agentedge-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 700px;
}

/* Left Side - Stacked Images */
.agentedge-left {
	background: #e8ecef;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
}

.agentedge-images {
	display: grid;
	grid-template-rows: auto auto;
	gap: 20px;
	max-width: 550px;
	width: 100%;
}

.agentedge-image-top,
.agentedge-image-bottom {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.agentedge-image-top img,
.agentedge-image-bottom img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* Right Side - Orange Gradient Panel */
.agentedge-right {
	background: linear-gradient(135deg, #f47c20 0%, #ff6b00 50%, #ff8c42 100%);
	display: flex;
	align-items: center;
	padding: 80px 60px;
	position: relative;
}

.agentedge-right::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100px;
	width: 300px;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 140, 66, 0.3) 0%, transparent 100%);
	transform: skewX(-15deg);
}

.agentedge-content {
	position: relative;
	z-index: 2;
	max-width: 600px;
}

.agentedge-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #fff;
	margin-bottom: 32px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.agentedge-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 40px;
}

.agentedge-btn {
	display: inline-block;
	background: rgba(15, 23, 42, 0.9);
	color: #fff;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.agentedge-btn:hover {
	background: rgba(15, 23, 42, 1);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.agentedge-btn:active {
	transform: translateY(0);
}

/* ==============================
   TEAM SECTION
============================== */

.team-section {
	padding: 100px 0;
	background: #f8f9fa;
	position: relative;
	overflow: hidden;
}

.team-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(244, 124, 32, 0.03) 0%, rgba(255, 140, 66, 0.05) 100%);
	pointer-events: none;
}

.team-container {
	position: relative;
	z-index: 2;
}

.team-grid {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 60px;
	align-items: center;
}

/* Left Side - Content */
.team-left {
	padding-right: 20px;
}

.team-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	margin-bottom: 24px;
}

.team-description {
	font-size: 18px;
	line-height: 1.7;
	color: #64748b;
	margin-bottom: 32px;
	max-width: 600px;
}

.team-btn {
	display: inline-block;
	background: var(--brand-orange);
	color: #fff;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(244, 124, 32, 0.3);
}

.team-btn:hover {
	background: var(--brand-orange-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(244, 124, 32, 0.4);
}

.team-btn:active {
	transform: translateY(0);
}

/* Right Side - Team Image */
.team-right {
	position: relative;
}

.team-image-wrapper {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.team-image {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 12px;
}

/* ==============================
   NEWS ANNOUNCEMENT SECTION
============================== */

.news-section {
	padding: 0;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.news-container {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

.news-grid {
	display: grid;
	grid-template-columns: 35% 65%;
	min-height: 600px;
}

/* Left Side - Orange Gradient Panel */
.news-left {
	background: linear-gradient(180deg, #f47c20 0%, #ff6b00 50%, #ff8c42 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 60px;
}

.news-left-content {
	position: relative;
	z-index: 2;
}

.news-accent {
	width: 80px;
	height: 6px;
	background: #fff;
	margin-bottom: 32px;
	border-radius: 3px;
}

.news-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Right Side - News Items */
.news-right {
	background: #f8f9fa;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 80px 60px;
}

.news-items {
	margin-bottom: 40px;
}

.news-item {
	padding: 32px 0;
	border-bottom: 1px solid #e2e8f0;
}

.news-item:first-child {
	padding-top: 0;
}

.news-item:last-child {
	border-bottom: none;
}

.news-date {
	display: block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--brand-orange);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.news-headline {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

.news-headline a {
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-headline a:hover {
	color: var(--brand-orange);
}

/* See All News Link */
.news-cta {
	padding-top: 20px;
}

.news-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--brand-orange);
	text-decoration: none;
	transition: all 0.3s ease;
}

.news-link:hover {
	color: var(--brand-orange-dark);
	gap: 12px;
}

.news-link svg {
	transition: transform 0.3s ease;
}

.news-link:hover svg {
	transform: translateX(4px);
}

/* ==============================
   CUSTOMER STORIES SECTION
============================== */

.stories-section {
	padding: 100px 0;
	background: #fff;
	position: relative;
}

.stories-container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Section Header */
.stories-header {
	text-align: center;
	margin-bottom: 60px;
}

.stories-label {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--brand-orange);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.stories-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-dark);
	max-width: 900px;
	margin: 0 auto;
}

/* Stories Grid */
.stories-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

/* Story Card */
.story-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper with Dynamic Accent Line */
.story-image-wrapper {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/3;
}

.story-accent-line {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 5px;
	background: linear-gradient(90deg, var(--brand-orange) 0%, #ff8c42 100%);
	z-index: 2;
	transition: width 0.4s ease;
}

.story-card:hover .story-accent-line {
	width: 100%;
}

.story-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.story-card:hover .story-image {
	transform: scale(1.05);
}

/* Story Content */
.story-content {
	padding: 32px 28px;
}

.story-category {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: var(--brand-orange);
	margin-bottom: 12px;
	text-transform: uppercase;
}

.story-heading {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-dark);
	margin-bottom: 16px;
	min-height: 84px;
}

.story-excerpt {
	font-size: 15px;
	line-height: 1.6;
	color: #64748b;
	margin-bottom: 20px;
}

.story-link {
	display: inline-flex;
	align-items: center;
	font-size: 15px;
	font-weight: 600;
	color: var(--brand-orange);
	text-decoration: none;
	transition: all 0.3s ease;
}

.story-link:hover {
	color: var(--brand-orange-dark);
	gap: 6px;
}

/* ==============================
   CAREERS SECTION
============================== */

.careers-section {
	padding: 80px 40px;
	background: #fff;
	position: relative;
	overflow: hidden;
}

.careers-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.careers-grid {
	display: grid;
	grid-template-columns: 50% 50%;
	min-height: 700px;
}

/* Left Side - Orange Gradient with Content */
.careers-left {
	background: linear-gradient(135deg, #f47c20 0%, #ff6b00 50%, #ff8c42 100%);
	position: relative;
	display: flex;
	align-items: center;
	padding: 80px 60px;
}

.careers-left::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background: linear-gradient(90deg, #ff8c42 0%, #f47c20 50%, #ff6b00 100%);
}

.careers-content {
	position: relative;
	z-index: 2;
	max-width: 550px;
}

.careers-label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 16px;
	text-transform: uppercase;
}

.careers-title {
	font-size: 52px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 24px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.careers-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 28px;
}

.careers-questions {
	margin-bottom: 24px;
}

.careers-question {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.6;
	color: #fff;
	margin-bottom: 8px;
}

.careers-tagline {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 32px;
}

.careers-btn {
	display: inline-block;
	background: rgba(15, 23, 42, 0.95);
	color: #fff;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.careers-btn:hover {
	background: rgba(15, 23, 42, 1);
	transform: translateY(-2px);
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.careers-btn:active {
	transform: translateY(0);
}

/* Right Side - Stacked Images */
.careers-right {
	position: relative;
	background: #1e293b;
}

.careers-images {
	display: grid;
	grid-template-rows: 1fr 1fr;
	height: 100%;
}

.careers-image-top,
.careers-image-bottom {
	position: relative;
	overflow: hidden;
}

.careers-image-top img,
.careers-image-bottom img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ==============================
   CTA SECTION
============================== */

.cta-section {
	padding: 100px 0;
	background: linear-gradient(135deg, #f47c20 0%, #ff6b00 50%, #ff8c42 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
		linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
	pointer-events: none;
}

/* Decorative Orange Bars at Bottom */
.cta-section::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: linear-gradient(90deg,
			#ff8c42 0%,
			#ff8c42 25%,
			rgba(147, 112, 219, 0.6) 25%,
			rgba(147, 112, 219, 0.6) 50%,
			rgba(100, 181, 246, 0.5) 50%,
			rgba(100, 181, 246, 0.5) 75%,
			rgba(255, 182, 193, 0.4) 75%,
			rgba(255, 182, 193, 0.4) 100%);
	z-index: 1;
}

.cta-container {
	position: relative;
	z-index: 2;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}

.cta-content {
	text-align: center;
	position: relative;
}

.cta-title {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 24px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-description {
	font-size: 20px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 40px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cta-btn {
	display: inline-block;
	background: rgba(15, 23, 42, 0.95);
	color: #fff;
	padding: 18px 48px;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.cta-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.cta-btn:hover::before {
	width: 300px;
	height: 300px;
}

.cta-btn:hover {
	background: rgba(15, 23, 42, 1);
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn:active {
	transform: translateY(-1px);
}

/* ==============================
   SCROLL ENTRANCE ANIMATIONS
============================== */

/* Initial state - hidden */
.section-animate {
	opacity: 0;
	transform: translateY(60px) scale(0.95);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
	will-change: opacity, transform;
}

/* Visible state - animated in */
.section-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* Disable animations on first section (hero) */
section:first-of-type {
	opacity: 1 !important;
	transform: none !important;
}

/* Reduce motion for users who prefer it (accessibility) */
@media (prefers-reduced-motion: reduce) {
	.section-animate {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
/* ==============================
   CONTACT PAGE
============================== */

.contact-page-wrapper {
	padding: 80px 0;
	background: #fff;
}

.contact-layout {
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

.contact-column-left {
	flex: 1;
}

.contact-column-right {
	width: 400px;
	flex-shrink: 0;
}

/* Page Header */
.contact-page-header {
	margin-bottom: 40px;
}

.contact-page-header .page-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 16px;
}

.contact-page-header .page-description p {
	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
}

/* Contact Form Styling */
.contact-form {
	width: 100%;
}

.contact-form .form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.contact-form .form-group {
	margin-bottom: 20px;
	width: 100%;
}

.contact-form .form-row .form-group {
	width: 50%;
}

.contact-form label {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	font-size: 15px;
	color: var(--text-dark);
	transition: all 0.3s ease;
	background: #fff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
	border-color: var(--brand-orange);
	outline: none;
	box-shadow: 0 0 0 3px rgba(244, 124, 32, 0.1);
}

.contact-form textarea {
	height: 150px;
	resize: vertical;
}

.contact-form .submit-wrap {
	margin-top: 10px;
}

.contact-form input[type="submit"] {
	background: var(--brand-orange);
	color: #fff;
	border: none;
	padding: 16px 36px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.3s ease;
	width: auto;
	display: inline-block;
}

.contact-form input[type="submit"]:hover {
	background: var(--brand-orange-dark);
}

/* Get In Touch Box */
.get-in-touch-box {
	background: var(--brand-orange);
	color: #fff;
	border-radius: 16px;
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.get-in-touch-box .box-title {
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 30px;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 30px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.contact-info-item .icon-wrapper {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-info-item .icon-wrapper svg {
	width: 20px;
	height: 20px;
	color: rgba(255, 255, 255, 0.9);
}

.contact-info-item .info-content {
	font-size: 16px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.95);
}

.contact-info-item .info-content a {
	color: #fff;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.contact-info-item .info-content a:hover {
	opacity: 0.8;
}

/* Office Image Wrapper inside the box */
.office-image-wrapper {
	margin-top: 20px;
	height: auto;
	border-radius: 8px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
	line-height: 0;
}

.office-image-wrapper img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}