/* ==========================================================================
   Benlys Maxbizz — Maxbizz-inspired theme styles
   Fonts: Roboto (headings/buttons), Open Sans (body), Inter (accent)
   ========================================================================== */

:root {
	--primary: #ff8523;
	--primary-hover: #e67415;
	--logo-cyan: #00e5ff;
	--header-bg: #000000;
	--dark: #0a0f2b;
	--dark-2: #051c2c;
	--dark-3: #1b1d21;
	--text: #555b6f;
	--text-light: #a0a4b5;
	--white: #ffffff;
	--border: #e8e8e8;
	--font-body: 'Open Sans', sans-serif;
	--font-heading: 'Roboto', sans-serif;
	--font-accent: 'Inter', sans-serif;
	--container: 1170px;
	--transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.75;
	color: var(--text);
	background: var(--white);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), background var(--transition), border-color var(--transition); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--dark);
	margin: 0 0 0.5em;
	font-weight: 700;
	line-height: 1.25;
}
p { margin: 0 0 1.25em; }

.container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 15px;
}

.row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}
.row-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.align-center { align-items: center; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.bg-dark { background: var(--dark); color: var(--text-light); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6 { color: var(--white); }

.section { padding: 90px 0; }
.section-padding { padding: 60px 0; }

/* Preloader */
.preloader {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: var(--header-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.preloader-spinner {
	position: relative;
	width: 72px;
	height: 72px;
}
.spinner-orbit {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: var(--logo-cyan);
	border-right-color: rgba(0, 229, 255, 0.25);
	animation: spin 1s cubic-bezier(0.6, 0.15, 0.35, 0.85) infinite;
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
}
.spinner-orbit--reverse {
	inset: 8px;
	border-top-color: var(--primary);
	border-right-color: rgba(255, 133, 35, 0.2);
	animation: spin-reverse 0.85s cubic-bezier(0.6, 0.15, 0.35, 0.85) infinite;
	box-shadow: 0 0 16px rgba(255, 133, 35, 0.18);
}
.spinner-orbit--inner {
	inset: 16px;
	border-width: 2px;
	border-top-color: rgba(255, 255, 255, 0.9);
	border-right-color: rgba(255, 255, 255, 0.15);
	animation: spin 1.4s linear infinite;
	box-shadow: none;
}
.spinner-dot {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	border-radius: 50%;
	background: var(--logo-cyan);
	box-shadow: 0 0 12px var(--logo-cyan), 0 0 24px rgba(0, 229, 255, 0.4);
	animation: pulse-dot 1.2s ease-in-out infinite;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}
@keyframes spin-reverse {
	to { transform: rotate(-360deg); }
}
@keyframes pulse-dot {
	0%, 100% { transform: scale(1); opacity: 1; }
	50% { transform: scale(0.75); opacity: 0.65; }
}

/* Buttons */
.octf-btn {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 32px;
	border: 2px solid transparent;
	border-radius: 3px;
	cursor: pointer;
	transition: all var(--transition);
}
.octf-btn-main {
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white) !important;
}
.octf-btn-main:hover {
	background: var(--dark-3);
	border-color: var(--dark-3);
}
.octf-btn-secondary {
	background: transparent;
	border-color: var(--white);
	color: var(--white) !important;
}
.octf-btn-secondary:hover {
	background: var(--primary);
	border-color: var(--primary);
}
.octf-btn-lg { padding: 20px 40px; font-size: 14px; }

/* Headings */
.ot-heading { margin-bottom: 30px; }
.ot-heading .is_highlight {
	display: inline-block;
	font-family: var(--font-accent);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--primary);
	margin-bottom: 12px;
}
.ot-heading .main-head {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.2;
}
.ot-heading.light .main-head { color: var(--white); }
.section-desc { max-width: 640px; margin: 0 auto 40px; }
.section-desc.light { color: var(--text-light); }
.section-head { margin-bottom: 50px; }

/* Header */
.site-header {
	position: relative;
	z-index: 1000;
	background: var(--header-bg);
}
.header-top {
	padding: 14px 0;
	border-bottom: 1px solid rgba(0, 229, 255, 0.15);
	background: var(--header-bg);
}
.header-top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.site-logo img {
	max-height: 100px;
	width: auto;
}
.header-top-info { display: flex; gap: 36px; }
.info-box { display: flex; align-items: center; gap: 12px; }
.info-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(0, 229, 255, 0.12);
	color: var(--logo-cyan);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	flex-shrink: 0;
}
.info-box h6 {
	font-size: 12px;
	font-weight: 600;
	margin: 0 0 2px;
	color: var(--white);
}
.info-box h6 a { color: var(--white); }
.info-box h6 a:hover { color: var(--logo-cyan); }
.info-box p { margin: 0; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.info-box p a { color: rgba(255, 255, 255, 0.75); }
.info-box p a:hover { color: var(--logo-cyan); }

.header-nav-wrap {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	transition: all var(--transition);
}
.header-nav-wrap.is-sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	animation: slideDown 0.4s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.site-header.is-sticky .header-top {
	display: none;
}
@keyframes slideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}
.header-nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 52px;
}
.main-nav {
	flex: 1;
	display: flex;
	align-items: center;
}
.primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
}
.primary-menu > li > a {
	display: block;
	padding: 14px 18px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 500;
	color: var(--dark);
	text-transform: capitalize;
	position: relative;
	line-height: 1.2;
}
.primary-menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 18px;
	right: 18px;
	height: 2px;
	background: var(--primary);
	transform: scaleX(0);
	transition: transform var(--transition);
}
.primary-menu > li > a:hover::after,
.primary-menu > li.current > a::after { transform: scaleX(1); }
.primary-menu > li > a:hover { color: var(--primary); }

.menu-item-has-children { position: relative; }
.menu-item-has-children > a i { font-size: 9px; margin-left: 4px; }
.sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--white);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
	border: 1px solid var(--border);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all var(--transition);
	z-index: 100;
}
.menu-item-has-children:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.sub-menu a {
	display: block;
	padding: 11px 20px;
	font-size: 13px;
	color: var(--dark);
	border-bottom: 1px solid var(--border);
}
.sub-menu a:hover { background: #f8f9fc; color: var(--primary); }

.header-cta {
	flex-shrink: 0;
	white-space: nowrap;
}
.cta-label-short { display: none; }
.octf-btn-header {
	padding: 9px 18px;
	font-size: 11px;
	letter-spacing: 0.8px;
	line-height: 1.2;
	background: var(--primary);
	border-color: var(--primary);
	color: var(--white) !important;
}
.octf-btn-header:hover {
	background: var(--dark);
	border-color: var(--dark);
	color: var(--white) !important;
}

.mobile-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
	margin-right: 12px;
}
.mobile-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--dark);
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

/* Hero */
.hero-section { position: relative; }
.hero-swiper { height: 820px; }
.hero-slide {
	height: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
}
.hero-slide::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(10,15,43,0.85) 0%, rgba(10,15,43,0.4) 60%, transparent 100%);
}
.hero-content {
	position: relative;
	z-index: 2;
	/* max-width: 650px; */
	color: var(--white);
	padding: 40px 0;
}
.hero-welcome {
	font-family: var(--font-body);
	font-size: 15px;
	margin-bottom: 16px;
	opacity: 0;
	animation: heroFadeUp 0.8s 0.3s forwards;
}
.hero-welcome span { color: var(--primary); font-weight: 600; }
.hero-title {
	font-size: 58px;
	color: var(--white);
	margin-bottom: 20px;
	opacity: 0;
	animation: heroFadeUp 0.8s 0.5s forwards;
}
.hero-title span { color: var(--primary); }
.hero-desc {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 32px;
	opacity: 0;
	animation: heroFadeUp 0.8s 0.7s forwards;
}
.hero-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	opacity: 0;
	animation: heroFadeUp 0.8s 0.9s forwards;
}
@keyframes heroFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}
.hero-pagination {
	bottom: 40px !important;
	text-align: left !important;
	padding-left: calc((100% - var(--container)) / 2 + 15px);
}
.hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: rgba(255,255,255,0.5);
	opacity: 1;
	margin: 0 6px !important;
	transition: all var(--transition);
}
.hero-pagination .swiper-pagination-bullet-active {
	background: var(--primary);
	transform: scale(1.2);
}
.hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	background: rgba(0,0,0,0.5);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background var(--transition);
}
.hero-nav:hover { background: var(--dark-3); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Icon boxes */
.section-services-top {
	margin-top: -60px;
	position: relative;
	z-index: 5;
	padding-top: 16px;
	padding-bottom: 50px;
	background: var(--white);
}
.section-services-top .section-head { margin-bottom: 28px; }
.section-services-top .section-desc { margin-bottom: 0; }
.services-icon-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.services-icon-grid--compact { margin-bottom: 0; }
.section-services-top .icon-box { padding: 24px; }
.icon-main.icon-property {
	background: rgba(255, 133, 35, 0.1);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	font-size: 22px;
	color: var(--primary);
}
.icon-main.icon-finance {
	background: rgba(0, 229, 255, 0.1);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	font-size: 22px;
	color: #0099b8;
}
.icon-main.icon-blended {
	background: linear-gradient(135deg, rgba(255, 133, 35, 0.12) 0%, rgba(0, 229, 255, 0.12) 100%);
	border-radius: 50%;
	width: 56px;
	height: 56px;
	font-size: 22px;
	color: var(--dark);
}
.bg-light { background: #f8f9fc; }
.section-property-services .industry-icon {
	background: rgba(255, 133, 35, 0.1);
	color: var(--primary);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
}
.section-finance-services .industry-icon {
	background: rgba(0, 229, 255, 0.1);
	color: #0099b8;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
}
.industry-item--property:hover { border-color: var(--primary); box-shadow: 0 10px 30px rgba(255, 133, 35, 0.12); }
.industry-item--finance:hover { border-color: #00e5ff; box-shadow: 0 10px 30px rgba(0, 229, 255, 0.12); }
.service-section-cta { margin-top: 40px; }
.icon-box {
	background: var(--white);
	padding: 30px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.08);
	border-radius: 3px;
	transition: transform var(--transition), box-shadow var(--transition);
}
.icon-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.icon-box-2 { display: flex; gap: 20px; align-items: flex-start; }
.icon-main {
	width: 60px;
	height: 60px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--primary);
}
.icon-main svg { width: 40px; height: 40px; fill: var(--primary); }
.title-box { font-size: 18px; margin-bottom: 6px; }
.title-box a:hover { color: var(--primary); }
.content-box p { margin: 0; font-size: 14px; }

/* About */
.section-about { background: #f8f9fc; }

/* Logos */
.section-logos { padding: 50px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	opacity: 0.6;
	transition: opacity var(--transition);
}
.logo-slide:hover { opacity: 1; }
.logo-slide img { max-height: 50px; width: auto; }

/* Accordion */
.ot-accordions { border-top: 1px solid rgba(255,255,255,0.1); }
.acc-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.acc-toggle {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	background: none;
	border: none;
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 500;
	color: var(--white);
	cursor: pointer;
	text-align: left;
}
.acc-toggle i { transition: transform var(--transition); font-size: 14px; }
.acc-item.active .acc-toggle i { transform: rotate(180deg); }
.acc-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}
.acc-item.active .acc-content { max-height: 200px; padding-bottom: 20px; }
.acc-content p { margin: 0; color: var(--text-light); }

/* Industries */
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.industry-item {
	padding: 35px 30px;
	border: 1px solid var(--border);
	border-radius: 3px;
	transition: all var(--transition);
}
.industry-item:hover {
	border-color: var(--primary);
	box-shadow: 0 10px 30px rgba(255,133,35,0.1);
	transform: translateY(-5px);
}
.industry-icon {
	font-size: 36px;
	color: var(--primary);
	margin-bottom: 20px;
}
.industry-item h6 {
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}
.industry-item p { margin: 0; font-size: 14px; }

/* Featured services */
.section-featured-services { padding: 0; }
.features-service-wrap { position: relative; }
.features-service-item {
	display: none;
	position: relative;
	min-height: 500px;
}
.features-service-item.active { display: block; }
.features-service-content {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 45%;
	background: var(--dark);
	color: var(--white);
	padding: 80px 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 2;
}
.features-service-number {
	font-family: var(--font-heading);
	font-size: 72px;
	font-weight: 700;
	color: rgba(255,133,35,0.3);
	line-height: 1;
	display: block;
	margin-bottom: 10px;
}
.features-service-title h4 {
	font-size: 32px;
	color: var(--white);
	margin-bottom: 20px;
}
.features-service-desc p { color: var(--text-light); margin-bottom: 30px; }
.btn-details {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-heading);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--primary);
}
.btn-details:hover { color: var(--white); }
.features-service-img {
	margin: 0;
	height: 500px;
	overflow: hidden;
}
.features-service-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.features-service-tabs {
	display: flex;
	background: var(--dark-3);
}
.features-service-tab {
	flex: 1;
	padding: 20px;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 14px;
	color: var(--text-light);
	cursor: pointer;
	border: none;
	background: none;
	transition: all var(--transition);
}
.features-service-tab.active,
.features-service-tab:hover {
	background: var(--primary);
	color: var(--white);
}

/* Benefits */
.section-benefits { background: #f8f9fc; }
.section-benefits .icon-box {
	background: transparent;
	box-shadow: none;
	padding: 20px 0;
}
.section-benefits .icon-box:hover { transform: none; }

/* CTA */
.section-cta {
	background: var(--dark) url('../images/slide2.jpg') center/cover no-repeat;
	position: relative;
	padding: 70px 0;
}
.section-cta::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10,15,43,0.88);
}
.section-cta .container { position: relative; z-index: 1; }
.section-cta h2 { color: var(--white); font-size: 32px; margin-bottom: 12px; }
.section-cta p { color: var(--text-light); margin: 0; }

/* Testimonials */
.testimonial-card {
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 20px;
}
.testimonial-text {
	font-size: 22px;
	font-style: italic;
	line-height: 1.6;
	color: var(--white);
	margin-bottom: 30px;
}
.testimonial-card h6 {
	color: var(--primary);
	font-size: 16px;
	margin-bottom: 4px;
}
.testimonial-card span { font-size: 13px; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.testimonial-pagination { margin-top: 30px; }
.testimonial-pagination .swiper-pagination-bullet {
	background: rgba(255,255,255,0.4);
	opacity: 1;
}
.testimonial-pagination .swiper-pagination-bullet-active { background: var(--primary); }

/* Portfolio */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	aspect-ratio: 1;
}
.portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.portfolio-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10,15,43,0.9) 0%, transparent 60%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
	opacity: 0;
	transition: opacity var(--transition);
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h5 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.portfolio-overlay span { font-size: 13px; color: var(--primary); text-transform: lowercase; }

/* Counters */
.counters-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	text-align: center;
}
.counter-number {
	font-family: var(--font-heading);
	font-size: 56px;
	font-weight: 700;
	color: var(--primary);
	line-height: 1;
}
.counter-suffix {
	font-family: var(--font-heading);
	font-size: 36px;
	color: var(--primary);
}
.counter-item h6 {
	color: var(--white);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 12px;
	font-weight: 400;
}

/* Blog */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}
.blog-thumb {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 3px;
	margin-bottom: 20px;
}
.blog-thumb img {
	width: 100%;
	aspect-ratio: 3/2;
	object-fit: cover;
	transition: transform 0.5s ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-cat {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: var(--primary);
	color: var(--white);
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 6px 14px;
	border-radius: 2px;
}
.blog-content h5 { font-size: 18px; margin-bottom: 8px; }
.blog-content h5 a:hover { color: var(--primary); }
.blog-meta { font-size: 13px; color: var(--text-light); }

/* Contact */
.section-contact {
	padding: 50px 0 55px;
	background: #f8f9fc;
}
.contact-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: center;
}
.contact-info-col {
	position: relative;
	padding: 28px 24px;
	min-height: 100%;
	overflow: hidden;
	border-radius: 4px;
}
.contact-info-bg-icons {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.contact-info-bg-icons i {
	position: absolute;
	color: rgba(255, 133, 35, 0.07);
	font-size: 120px;
	line-height: 1;
}
.contact-info-bg-icons i:nth-child(1) { top: -10px; right: 20px; font-size: 100px; }
.contact-info-bg-icons i:nth-child(2) { bottom: 30px; right: -10px; font-size: 90px; color: rgba(0, 229, 255, 0.06); }
.contact-info-bg-icons i:nth-child(3) { top: 45%; left: -20px; font-size: 110px; transform: translateY(-50%); }
.contact-info-bg-icons i:nth-child(4) { bottom: -15px; left: 40%; font-size: 80px; color: rgba(0, 229, 255, 0.05); }
.contact-info-inner {
	position: relative;
	z-index: 1;
}
.contact-heading { margin-bottom: 16px; }
.contact-heading .main-head { font-size: 30px; margin-bottom: 0; }
.contact-desc {
	margin-bottom: 20px;
	font-size: 15px;
	line-height: 1.65;
}
.contact-details { margin: 0; }
.contact-details li {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
	font-size: 15px;
}
.contact-detail-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 133, 35, 0.1);
	color: var(--primary);
	border-radius: 50%;
	font-size: 15px;
}
.contact-details a { color: var(--dark); font-weight: 500; }
.contact-details a:hover { color: var(--primary); }
.contact-form-col { align-self: stretch; }
.contact-form-wrap {
	background: var(--white);
	padding: 24px 28px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
	border-radius: 4px;
	border: 1px solid var(--border);
	height: 100%;
}
.contact-form-wrap .wpcf7-form { margin: 0; }
.contact-form-wrap .wpcf7-form p { margin-bottom: 10px; }
.contact-form-wrap label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--dark);
	margin-bottom: 4px;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--border);
	border-radius: 3px;
	font-family: var(--font-body);
	font-size: 14px;
	line-height: 1.4;
	transition: border-color var(--transition);
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
	outline: none;
	border-color: var(--primary);
}
.contact-form-wrap textarea { min-height: 80px; max-height: 100px; resize: none; }
.contact-form-wrap .wpcf7-submit,
.contact-form-wrap input[type="submit"] {
	background: var(--primary);
	border: none;
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 12px 28px;
	cursor: pointer;
	border-radius: 3px;
	transition: background var(--transition);
}
.contact-form-wrap .wpcf7-submit:hover,
.contact-form-wrap input[type="submit"]:hover { background: var(--dark-3); }
.cf7-placeholder { color: var(--text-light); font-style: italic; font-size: 14px; }

/* Footer */
.site-footer { background: var(--header-bg); color: rgba(255, 255, 255, 0.7); }
.footer-top { padding: 60px 0 45px; }
.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
	gap: 40px;
}
.footer-logo {
	display: inline-block;
	line-height: 0;
}
.footer-logo img {
	height: 90px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
	margin-bottom: 18px;
}
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: rgba(255, 255, 255, 0.65); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 14px;
}
.footer-social a:hover { background: var(--logo-cyan); border-color: var(--logo-cyan); color: var(--header-bg); }
.footer-col h5 {
	color: var(--white);
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255, 255, 255, 0.65); }
.footer-col ul a:hover { color: var(--logo-cyan); }
.contact-list strong {
	display: block;
	color: var(--white);
	font-size: 13px;
	margin-bottom: 4px;
}
.contact-list li { margin-bottom: 20px; }
.contact-list a { color: rgba(255, 255, 255, 0.65); }
.contact-list a:hover { color: var(--logo-cyan); }
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px 0;
	text-align: center;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}

/* Scroll animations */
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}
.animate-on-scroll[data-animation="fade-right"] { transform: translateX(-30px); }
.animate-on-scroll[data-animation="fade-left"] { transform: translateX(30px); }
.animate-on-scroll[data-animation="fade-right"].is-visible,
.animate-on-scroll[data-animation="fade-left"].is-visible { transform: translateX(0); }

/* Responsive */
@media (max-width: 1200px) {
	.container { max-width: 960px; }
	.hero-title { font-size: 48px; }
	.ot-heading .main-head { font-size: 32px; }
}

@media (max-width: 1024px) {
	.hero-swiper { height: 620px; }
	.hero-title { font-size: 40px; }
	.hero-desc { font-size: 16px; }
	.site-logo img { max-height: 80px; }
	.row-2, .row-3, .services-icon-grid, .industries-grid, .portfolio-grid, .blog-grid, .counters-grid, .footer-grid, .contact-layout {
		grid-template-columns: 1fr 1fr;
	}
	.features-service-content { width: 55%; padding: 50px 40px; }
	.portfolio-grid { grid-template-columns: repeat(2, 1fr); }
	.section { padding: 70px 0; }
	.primary-menu > li > a { padding: 14px 14px; }
}

@media (max-width: 768px) {
	/* Header */
	.header-top { padding: 10px 0; }
	.site-logo img { max-height: 58px; }
	.header-top-info { display: none; }

	.header-nav-inner {
		display: grid;
		grid-template-columns: 40px 1fr auto;
		grid-template-rows: auto auto;
		align-items: center;
		gap: 0 12px;
		min-height: 48px;
		padding: 8px 0;
	}

	.mobile-toggle {
		display: flex;
		grid-column: 1;
		grid-row: 1;
		align-self: center;
		justify-self: start;
		width: 40px;
		height: 40px;
		align-items: center;
		justify-content: center;
		margin: 0;
		padding: 0;
		border-radius: 4px;
	}
	.mobile-toggle.is-active span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	.mobile-toggle.is-active span:nth-child(2) {
		opacity: 0;
	}
	.mobile-toggle.is-active span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}

	.header-cta {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		align-self: center;
		margin: 0;
		padding: 8px 14px;
		font-size: 10px;
		letter-spacing: 0.4px;
		white-space: nowrap;
	}
	.cta-label-full { display: none; }
	.cta-label-short { display: inline; }

	.main-nav {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		position: relative;
		flex: none;
	}

	.primary-menu {
		display: none;
		position: absolute;
		top: 8px;
		left: -15px;
		right: -15px;
		background: var(--white);
		flex-direction: column;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
		padding: 6px 0;
		border: 1px solid var(--border);
		border-radius: 4px;
		z-index: 200;
	}
	.primary-menu.is-open { display: flex; }
	.primary-menu > li > a {
		padding: 12px 20px;
		font-size: 14px;
	}
	.primary-menu > li > a::after { display: none; }
	.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 12px;
		display: none;
		border: none;
	}
	.menu-item-has-children.open .sub-menu { display: block; }

	/* Hero */
	.hero-swiper { height: 520px; min-height: 480px; }
	.hero-slide::before {
		background: linear-gradient(180deg, rgba(10, 15, 43, 0.88) 0%, rgba(10, 15, 43, 0.55) 100%);
	}
	.hero-content {
		max-width: 100%;
		padding: 28px 0 56px;
	}
	.hero-welcome {
		font-size: 13px;
		margin-bottom: 10px;
		line-height: 1.5;
	}
	.hero-title {
		font-size: 28px;
		margin-bottom: 14px;
		line-height: 1.2;
	}
	.hero-desc {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 18px;
	}
	.hero-btns {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
		width: 100%;
		max-width: 220px;
	}
	.hero-btns .octf-btn {
		padding: 11px 18px;
		font-size: 11px;
		letter-spacing: 0.6px;
		text-align: center;
		width: 100%;
	}
	.hero-pagination {
		bottom: 20px !important;
		padding-left: 15px;
	}
	.hero-nav { display: none; }

	/* Sections */
	.section-services-top {
		margin-top: 0;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.section { padding: 50px 0; }
	.ot-heading .main-head { font-size: 26px; }
	.ot-heading { margin-bottom: 20px; }
	.section-head { margin-bottom: 32px; }
	.section-desc { margin-bottom: 24px; font-size: 15px; }

	.row-2, .row-3, .services-icon-grid, .industries-grid, .blog-grid, .counters-grid, .footer-grid, .contact-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.portfolio-grid { grid-template-columns: 1fr; }
	.contact-layout { gap: 24px; }
	.section-contact { padding: 40px 0 45px; }
	.contact-form-wrap { padding: 20px; }

	.features-service-content {
		position: relative;
		width: 100%;
		padding: 32px 20px;
	}
	.features-service-title h4 { font-size: 24px; }
	.features-service-number { font-size: 48px; }
	.features-service-img { height: 260px; }

	.section-cta h2 { font-size: 24px; }
	.section-cta .container.row-2 { gap: 20px; }
	.testimonial-text { font-size: 17px; }
	.counter-number { font-size: 42px; }
	.footer-top { padding: 45px 0 35px; }
	.footer-logo img { height: 72px; }
	.text-right { text-align: left; }
}

@media (max-width: 480px) {
	.container { padding: 0 16px; }
	.site-logo img { max-height: 50px; }
	.header-nav-inner { min-height: 44px; }
	.header-cta { padding: 7px 10px; font-size: 9px; }
	.hero-swiper { height: 470px; min-height: 440px; }
	.hero-title { font-size: 24px; }
	.hero-btns { max-width: 100%; }
	.icon-box { padding: 20px; }
	.industry-item { padding: 24px 20px; }
	.octf-btn { padding: 13px 22px; font-size: 12px; }
}
