/* ========== FONTS ========== */
body {
	font-family: Gilroy, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans",
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
		"Noto Color Emoji", -apple-system, sans-serif !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

@font-face{
	font-display:swap;
	font-family:Gilroy;
	font-style:normal;
	font-weight:300;
	src:url(../fonts/Gilroy-Light.ttf) format("truetype")
}

@font-face{
	font-display:swap;
	font-family:Gilroy;
	font-style:normal;
	font-weight:400;
	src:url(../fonts/Gilroy-Regular.ttf) format("truetype")
}

@font-face{
	font-display:swap;
	font-family:Gilroy;
	font-style:normal;
	font-weight:500;
	src:url(../fonts/Gilroy-Medium.ttf) format("truetype")
}

@font-face{
	font-display:swap;
	font-family:Gilroy;
	font-style:normal;
	font-weight:700;
	src:url(../fonts/Gilroy-Bold.ttf) format("truetype")
}

@font-face{
	font-display:swap;
	font-family:Gilroy;
	font-style:normal;
	font-weight:800;
	src:url(../fonts/Gilroy-ExtraBold.otf) format("opentype")
}
	
html{
	font-size:4.26667vw
}

@media (min-width:560px) {
	html{font-size:2.5vw}
}

@media (min-width:768px) {
	html{font-size:2.08333vw}
}
	
@media (min-width:1025px) {
	html{font-size:1.11111vw}
}

@media (min-width:1600px){
	html{font-size:inherit}
}


[data-hsfc-id=Renderer] .hsfc-Step .hsfc-Step__Content {
    padding: 0px !important;
}

.hub-iframe-padding {
  margin-left: -40px;
  margin-right: -40px;
}



/* ========== NAVIGATION ========== */
.nav-active {
	position: relative;
}

body.page-bio .nav-active {
	color: #0f4cf5;
}

body.page-geo .nav-active {
	color: rgba(18,223,113,1);
}

body.page-dcx .nav-active {
	color: #616161;
}

/* ========== BUTTONS ========== */
.btn {
	display: inline-block;
	background: linear-gradient(-90deg, #4a4a4a 0%, #2a2a2a 100%);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 10px 28px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
	border: 1px solid transparent;
}

.btn:hover {
	background: linear-gradient(180deg, #5a5a5a 0%, #3a3a3a 100%);
}

.btn-secondary {
	display: inline-block;
	background: transparent;
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 10px 28px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
	border: 1px solid #fff;
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* ========== HERO IMAGE GEOMETRIC CLIP (SVG logo shapes) ========== */
.hero-image-clip {
	clip-path: url(#hero-clip);
}

/* ========== SWIPER CUSTOM PAGINATION ========== */
.swiper-pagination-custom {
	position: relative;
	display: flex;
	gap: 8px;
	z-index: 10;
	bottom: 40px !important;
}

.swiper-pagination-custom .swiper-pagination-bullet {
	width: 40px;
	height: 3px;
	border-radius: 0;
	background: rgba(255,255,255,0.7);
	opacity: 1;
	transition: background 0.3s ease;
	cursor: pointer;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
	background: #fff;
}

/* ========== SWIPER FADE TRANSITIONS ========== */
.hero-swiper .swiper-slide {
	opacity: 0 !important;
	transition: opacity 0.8s ease;
}

.hero-swiper .swiper-slide-active {
	opacity: 1 !important;
}

/* ========== PRACTICE CARDS - slashed top-right corner ========== */
.practice-card {
	clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}

/* ========== LOCATION CARDS - side shadows only ========== */
.location-card-shadow {
	box-shadow: -2px 0 8px -2px rgba(0, 0, 0, 0.1), 2px 0 8px -2px rgba(0, 0, 0, 0.1);
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9998;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
	visibility: visible;
	opacity: 1;
}

.mobile-menu-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(4px);
}

.mobile-menu-panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 280px;
	max-width: 85vw;
	height: 100%;
	background: #1a1a1a;
	border-left: 1px solid #333;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s ease;
}

.mobile-menu.active .mobile-menu-panel {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	border-bottom: 1px solid #333;
}

.mobile-menu-close {
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	padding: 0;
	flex-shrink: 0;
}

.mobile-menu-close:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: rotate(90deg);
}

.mobile-menu-nav {
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 30px 0;
	overflow-y: auto;
}

.mobile-menu-link {
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	padding: 16px 24px;
	transition: all 0.2s ease;
	border-left: 3px solid transparent;
}

.mobile-menu-link:hover {
	background: rgba(255, 255, 255, 0.05);
	border-left-color: #fff;
}

.mobile-menu-link.active {
	border-left-color: #0f4cf5;
	color: #0f4cf5;
}

.mobile-menu-footer {
	padding: 24px;
	border-top: 1px solid #333;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mobile-menu-phone {
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 600;
	text-align: center;
	padding: 12px;
	transition: color 0.2s ease;
}

.mobile-menu-phone:hover {
	color: #0f4cf5;
}

.btn-mobile {
	width: 100%;
	text-align: center;
}

@media (min-width: 768px) {
	.mobile-menu {
		display: none;
	}
}

/* ========== PARTNERS CAROUSEL - smooth linear scroll ========== */
.partners-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

/* ========== CONTACT MODAL ========== */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
	opacity: 1;
	visibility: visible;
}

.modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	backdrop-filter: blur(4px);
}

.modal-content {
	position: relative;
	background: #1a1a1a;
	border: 1px solid #333;
	border-radius: 6px;
	max-width: 600px;
	width: 90%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 40px;
	z-index: 1;
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.modal.active .modal-content {
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: transparent;
	border: none;
	color: #fff;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.4s ease;
	padding: 0;
	flex-shrink: 0;
}

.modal-close svg {
	flex-shrink: 0;
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: rotate(90deg);
}

.modal-header {
	margin-bottom: 30px;
	color: #fff;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-group label {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: #242424;
	border: 1px solid #3a3a3a;
	color: #fff;
	padding: 12px 16px;
	border-radius: 3px;
	font-size: 0.875rem;
	font-family: inherit;
	transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #5a5a5a;
	background: #2a2a2a;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #666;
}

.form-group select {
	cursor: pointer;
}

.form-group select option {
	background: #242424;
	color: #fff;
}

.form-actions {
	margin-top: 10px;
}

.form-actions .btn {
	width: 100%;
	text-align: center;
	padding: 14px 28px;
	font-size: 0.875rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1023px) {
	.hero-image-clip {
		clip-path: none;
	}
}

@media (max-width: 640px) {
	.modal-content {
		padding: 30px 20px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.modal-close {
		top: 15px;
		right: 15px;
	}
}

/* ========== SECTOR EXPERTISE CARDS - equal height ========== */
.sector-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.sector-card-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}
