/**
 * Vessel Charter — Main Stylesheet
 *
 * @package Vessel_Charter
 * @since   1.0.0
 */

/* ==========================================================================
   CSS Custom Properties
   ========================================================================== */

:root {
	--vc-primary: #082C54;
	--vc-ocean: #0B6FBF;
	--vc-gold: #D9A441;
	--vc-gold-hover: #c4922f;
	--vc-white: #FFFFFF;
	--vc-light: #F7F8FA;
	--vc-dark: #1D2939;
	--vc-gray: #667085;
	--vc-border: rgba(8, 44, 84, 0.08);

	--font-heading: 'Poppins', sans-serif;
	--font-body: 'Inter', sans-serif;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;

	--shadow-sm: 0 2px 8px rgba(8, 44, 84, 0.06);
	--shadow-md: 0 8px 24px rgba(8, 44, 84, 0.1);
	--shadow-lg: 0 16px 48px rgba(8, 44, 84, 0.14);

	--transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--header-height: 80px;
	--top-bar-height: 42px;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.7;
	color: var(--vc-dark);
	background-color: var(--vc-white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.25;
	color: var(--vc-primary);
}

a {
	color: var(--vc-ocean);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--vc-gold);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

/* Screen reader only */
.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 24px;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--vc-gold);
	color: var(--vc-primary);
	font-weight: 600;
	border-radius: var(--radius-sm);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.vc-btn {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	padding: 0.75rem 1.75rem;
	border-radius: var(--radius-md);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all var(--transition);
	border: 2px solid transparent;
	white-space: nowrap;
}

.btn-gold {
	background: var(--vc-gold);
	color: var(--vc-primary);
	border-color: var(--vc-gold);
}

.btn-gold:hover,
.btn-gold:focus {
	background: var(--vc-gold-hover);
	border-color: var(--vc-gold-hover);
	color: var(--vc-primary);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(217, 164, 65, 0.35);
}

.btn-primary.vc-btn {
	background: var(--vc-ocean);
	border-color: var(--vc-ocean);
	color: var(--vc-white);
}

.btn-primary.vc-btn:hover {
	background: var(--vc-primary);
	border-color: var(--vc-primary);
	color: var(--vc-white);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.btn-outline-light.vc-btn {
	border-color: rgba(255, 255, 255, 0.5);
	color: var(--vc-white);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(8px);
}

.btn-outline-light.vc-btn:hover {
	background: var(--vc-white);
	color: var(--vc-primary);
	border-color: var(--vc-white);
}

.btn-outline-primary.vc-btn {
	border-color: var(--vc-ocean);
	color: var(--vc-ocean);
}

.btn-outline-primary.vc-btn:hover {
	background: var(--vc-ocean);
	color: var(--vc-white);
}

/* ==========================================================================
   Section Utilities
   ========================================================================== */

.section-padding {
	padding: 100px 0;
}

.section-label {
	display: inline-block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.8125rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--vc-gold);
	margin-bottom: 0.75rem;
}

.section-title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.0625rem;
	color: var(--vc-gray);
	max-width: 640px;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 3.5rem;
}

.bg-light {
	background-color: var(--vc-light) !important;
}

/* Glass effect */
.glass-card {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius-lg);
}

/* ==========================================================================
   Top Header Bar
   ========================================================================== */

.top-header {
	background: var(--vc-primary);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.8125rem;
	padding: 0.5rem 0;
	position: relative;
	z-index: 1030;
}

.top-header a {
	color: rgba(255, 255, 255, 0.85);
}

.top-header a:hover {
	color: var(--vc-gold);
}

.top-header-info {
	gap: 1.5rem;
}

.top-header-info li {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.top-header-info i {
	color: var(--vc-gold);
	font-size: 0.875rem;
}

/* Social Icons */
.vc-social-icons {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vc-social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.8125rem;
	transition: all var(--transition);
}

.vc-social-icons a:hover {
	background: var(--vc-gold);
	color: var(--vc-primary);
	transform: translateY(-2px);
}

.top-header-social a {
	width: 28px;
	height: 28px;
}

/* ==========================================================================
   Main Navigation
   ========================================================================== */

.site-header {
	position: fixed;
	top: var(--top-bar-height);
	left: 0;
	right: 0;
	z-index: 1020;
	transition: all var(--transition);
}

.vc-navbar {
	padding: 0.875rem 0;
	transition: all var(--transition);
}

.vc-navbar .container {
	display: flex;
	align-items: center;
}

/* Transparent state (homepage) */
.home .site-header:not(.is-scrolled) .vc-navbar {
	background: transparent;
}

.home .site-header:not(.is-scrolled) .nav-link {
	color: rgba(255, 255, 255, 0.9);
}

.home .site-header:not(.is-scrolled) .nav-link:hover,
.home .site-header:not(.is-scrolled) .nav-item.active .nav-link {
	color: var(--vc-gold);
}

.home .site-header:not(.is-scrolled) .site-logo-text {
	color: var(--vc-white);
}

.home .site-header:not(.is-scrolled) .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.4);
}

.home .site-header:not(.is-scrolled) .navbar-toggler-icon {
	filter: invert(1);
}

/* Scrolled / solid state */
.site-header.is-scrolled .vc-navbar,
.vc-navbar {
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled {
	top: 0;
}

.site-header.is-scrolled + .site-main,
body:not(.home) .site-main {
	padding-top: calc(var(--header-height) + var(--top-bar-height));
}

body.home .site-main {
	padding-top: 0;
}

/* Logo */
.site-logo-text {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	color: var(--vc-primary);
	font-family: var(--font-heading);
	font-size: 1.125rem;
	letter-spacing: 0.04em;
	text-decoration: none;
}

.site-logo-text:hover {
	color: var(--vc-ocean);
}

.site-logo-text .logo-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--vc-ocean), var(--vc-primary));
	border-radius: var(--radius-sm);
	color: var(--vc-white);
	font-size: 1.25rem;
}

.site-logo-text strong {
	font-weight: 700;
}

.custom-logo-link img {
	max-height: 50px;
	width: auto;
}

/* Nav links */
.vc-navbar .nav-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--vc-dark);
	padding: 0.5rem 1rem !important;
	position: relative;
}

.vc-navbar .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 2px;
	background: var(--vc-gold);
	transition: all var(--transition);
	transform: translateX(-50%);
}

.vc-navbar .nav-link:hover::after,
.vc-navbar .nav-item.active .nav-link::after {
	width: 60%;
}

.nav-cta .btn-gold {
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.hero-background {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-image,
.hero-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(8, 44, 84, 0.88) 0%,
		rgba(8, 44, 84, 0.65) 40%,
		rgba(11, 111, 191, 0.45) 100%
	);
}

.hero-content {
	position: relative;
	z-index: 2;
	flex: 1;
	display: flex;
	align-items: center;
	padding-top: calc(var(--header-height) + var(--top-bar-height));
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(217, 164, 65, 0.15);
	border: 1px solid rgba(217, 164, 65, 0.3);
	color: var(--vc-gold);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.8125rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
}

.hero-headline {
	font-size: clamp(2rem, 5vw, 3.25rem);
	color: var(--vc-white);
	margin-bottom: 1.25rem;
	max-width: 700px;
}

.hero-subheadline {
	font-size: clamp(1rem, 2vw, 1.1875rem);
	color: rgba(255, 255, 255, 0.82);
	max-width: 580px;
	margin-bottom: 2rem;
	line-height: 1.75;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

/* Hero Stats */
.hero-stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.hero-stat-card {
	padding: 1.25rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	transition: transform var(--transition), box-shadow var(--transition);
}

.hero-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-stat-card .stat-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(217, 164, 65, 0.2);
	border-radius: var(--radius-md);
	color: var(--vc-gold);
	font-size: 1.25rem;
	flex-shrink: 0;
}

.hero-stat-card .stat-number {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--vc-white);
	line-height: 1.2;
}

.hero-stat-card .stat-label {
	display: block;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.3;
}

.hero-stats-mobile {
	position: relative;
	z-index: 2;
	padding: 0 0 3rem;
	margin-top: -2rem;
}

.hero-stats-mobile .hero-stat-card {
	padding: 1rem;
	flex-direction: column;
	text-align: center;
}

/* Wave Divider */
.wave-divider {
	position: relative;
	z-index: 3;
	margin-top: auto;
	line-height: 0;
}

.wave-divider svg {
	width: 100%;
	height: 80px;
	display: block;
}

.wave-path {
	fill: var(--vc-white);
}

.wave-path-1 {
	animation: waveMove 8s ease-in-out infinite;
}

.wave-path-2 {
	fill: var(--vc-light);
	opacity: 0.6;
	animation: waveMove 6s ease-in-out infinite reverse;
}

@keyframes waveMove {
	0%, 100% { d: path("M0,60 C360,120 720,0 1080,60 C1260,90 1380,80 1440,60 L1440,120 L0,120 Z"); }
	50% { d: path("M0,70 C360,30 720,110 1080,50 C1260,70 1380,90 1440,70 L1440,120 L0,120 Z"); }
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust-section {
	background: var(--vc-white);
}

.trust-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.trust-logo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 80px;
	background: var(--vc-light);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-md);
	transition: all var(--transition);
	cursor: default;
}

.trust-logo-placeholder:hover {
	border-color: var(--vc-ocean);
	box-shadow: var(--shadow-sm);
	transform: translateY(-3px);
}

.trust-logo-placeholder .logo-abbr {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--vc-primary);
	letter-spacing: 0.05em;
}

.trust-logo-placeholder .logo-name {
	font-size: 0.625rem;
	color: var(--vc-gray);
	text-align: center;
	margin-top: 0.25rem;
	line-height: 1.2;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-image-wrap {
	position: relative;
}

.about-image {
	width: 100%;
	object-fit: cover;
	box-shadow: var(--shadow-lg);
}

.about-image-badge {
	position: absolute;
	bottom: 2rem;
	left: -1.5rem;
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
	box-shadow: var(--shadow-md);
}

.about-image-badge .badge-number {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 2rem;
	color: var(--vc-gold);
	line-height: 1;
}

.about-image-badge .badge-text {
	font-size: 0.8125rem;
	color: var(--vc-primary);
	font-weight: 600;
	max-width: 140px;
	line-height: 1.3;
	margin-top: 0.25rem;
}

.about-image-accent {
	position: absolute;
	top: -1rem;
	right: -1rem;
	width: 120px;
	height: 120px;
	border: 3px solid var(--vc-gold);
	border-radius: var(--radius-xl);
	z-index: -1;
	opacity: 0.4;
}

.about-intro {
	font-size: 1.0625rem;
	color: var(--vc-gray);
}

.about-features {
	margin: 1.75rem 0;
}

.about-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 0.875rem 0;
	border-bottom: 1px solid var(--vc-border);
}

.about-feature-item:last-child {
	border-bottom: none;
}

.about-feature-item .feature-icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--vc-ocean), var(--vc-primary));
	border-radius: var(--radius-sm);
	color: var(--vc-white);
	font-size: 1.125rem;
	flex-shrink: 0;
}

.about-feature-item .feature-text {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
}

.about-feature-item .feature-text strong {
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	color: var(--vc-primary);
}

.about-feature-item .feature-text span {
	font-size: 0.875rem;
	color: var(--vc-gray);
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.service-card {
	border-radius: var(--radius-lg);
	overflow: hidden;
}

.service-card-inner {
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	height: 100%;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.service-card-inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--vc-ocean), var(--vc-gold));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition);
}

.service-card:hover .service-card-inner {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.service-card:hover .service-card-inner::before {
	transform: scaleX(1);
}

.service-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vc-light);
	border-radius: var(--radius-md);
	color: var(--vc-ocean);
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
	transition: all var(--transition);
}

.service-card:hover .service-icon {
	background: linear-gradient(135deg, var(--vc-ocean), var(--vc-primary));
	color: var(--vc-white);
}

.service-title {
	font-size: 1.1875rem;
	margin-bottom: 0.75rem;
}

.service-desc {
	font-size: 0.9375rem;
	color: var(--vc-gray);
	margin-bottom: 1.25rem;
	line-height: 1.65;
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--vc-ocean);
	transition: gap var(--transition);
}

.service-link:hover {
	gap: 0.625rem;
	color: var(--vc-gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
	background: var(--vc-primary);
	color: rgba(255, 255, 255, 0.75);
}

/* ── Prompt 2: Section 7 — Why Choose Us ── */
.why-choose-section {
	background: var(--vc-white);
}

.why-card-inner {
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	padding: 2rem;
	height: 100%;
	transition: all var(--transition);
	position: relative;
	overflow: hidden;
}

.why-card-inner::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--vc-ocean), var(--vc-gold));
	transform: scaleX(0);
	transition: transform var(--transition);
}

.why-card:hover .why-card-inner {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.why-card:hover .why-card-inner::after {
	transform: scaleX(1);
}

.why-card-icon {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(11, 111, 191, 0.1), rgba(8, 44, 84, 0.08));
	border-radius: var(--radius-md);
	color: var(--vc-ocean);
	font-size: 1.375rem;
	margin-bottom: 1.25rem;
	transition: all var(--transition);
}

.why-card:hover .why-card-icon {
	background: linear-gradient(135deg, var(--vc-ocean), var(--vc-primary));
	color: var(--vc-white);
}

.why-card-title {
	font-size: 1.125rem;
	margin-bottom: 0.625rem;
}

.why-card-desc {
	font-size: 0.9375rem;
	color: var(--vc-gray);
	margin: 0;
	line-height: 1.65;
}

/* ── Prompt 2: Section 8 — Featured Vessels ── */
.vessel-card-inner {
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	height: 100%;
	transition: all var(--transition);
}

.vessel-card:hover .vessel-card-inner {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: transparent;
}

.vessel-card-image {
	position: relative;
	overflow: hidden;
}

.vessel-card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.vessel-card:hover .vessel-card-image img {
	transform: scale(1.06);
}

.vessel-status {
	position: absolute;
	top: 1rem;
	left: 1rem;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.6875rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
}

.vessel-status.status-available {
	background: rgba(34, 197, 94, 0.9);
	color: var(--vc-white);
}

.vessel-status.status-chartered {
	background: rgba(239, 68, 68, 0.9);
	color: var(--vc-white);
}

.vessel-status.status-pending {
	background: rgba(217, 164, 65, 0.9);
	color: var(--vc-primary);
}

.vessel-category-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: rgba(8, 44, 84, 0.85);
	backdrop-filter: blur(8px);
	color: var(--vc-white);
	font-size: 0.6875rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 50px;
}

.vessel-card-body {
	padding: 1.5rem;
}

.vessel-card-title {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.vessel-card-title a {
	color: var(--vc-primary);
}

.vessel-card-title a:hover {
	color: var(--vc-ocean);
}

.vessel-meta {
	margin-bottom: 0.75rem;
}

.vessel-meta li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--vc-gray);
	margin-bottom: 0.375rem;
}

.vessel-meta i {
	color: var(--vc-ocean);
}

.vessel-excerpt {
	font-size: 0.875rem;
	color: var(--vc-gray);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.vessel-rate {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding: 0.75rem 1rem;
	background: var(--vc-light);
	border-radius: var(--radius-sm);
	margin-bottom: 1rem;
}

.vessel-rate .rate-label {
	font-size: 0.75rem;
	color: var(--vc-gray);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.vessel-rate .rate-value {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--vc-ocean);
}

.vessel-card-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.vessel-card-actions .vc-btn {
	flex: 1;
	justify-content: center;
	min-width: 0;
}

/* ── Prompt 2: Section 9 — Process Timeline ── */
.process-timeline {
	position: relative;
}

.process-step {
	text-align: center;
	padding: 2rem 1.25rem;
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	transition: all var(--transition);
	position: relative;
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--vc-ocean);
}

.process-step-number {
	width: 52px;
	height: 52px;
	margin: 0 auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--vc-ocean), var(--vc-primary));
	border-radius: 50%;
	color: var(--vc-white);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
}

.process-connector {
	position: absolute;
	top: 4.5rem;
	right: -50%;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--vc-ocean), var(--vc-gold));
	opacity: 0.3;
	z-index: 0;
}

.process-step-icon {
	width: 44px;
	height: 44px;
	margin: 0 auto 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vc-light);
	border-radius: var(--radius-sm);
	color: var(--vc-gold);
	font-size: 1.125rem;
}

.process-step-title {
	font-size: 1.0625rem;
	margin-bottom: 0.5rem;
}

.process-step-desc {
	font-size: 0.875rem;
	color: var(--vc-gray);
	margin: 0;
	line-height: 1.6;
}

/* ── Prompt 2: Section 10 — Statistics ── */
.statistics-section {
	position: relative;
	overflow: hidden;
}

.statistics-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--vc-primary) 0%, var(--vc-ocean) 100%);
}

.statistics-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-label-light {
	color: var(--vc-gold);
}

.stat-counter-card {
	padding: 1.5rem 0.5rem;
}

.stat-counter-icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: var(--vc-gold);
	font-size: 1.25rem;
}

.stat-counter-number {
	display: block;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: var(--vc-white);
	line-height: 1.2;
	margin-bottom: 0.375rem;
}

.stat-counter-label {
	display: block;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.3;
}

/* ── Prompt 2: Section 11 — Industries ── */
.industry-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 1.75rem 1rem;
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	transition: all var(--transition);
	min-height: 140px;
}

.industry-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--vc-ocean);
	background: linear-gradient(135deg, rgba(11, 111, 191, 0.04), rgba(217, 164, 65, 0.04));
}

.industry-card-icon {
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--vc-light);
	border-radius: var(--radius-md);
	color: var(--vc-ocean);
	font-size: 1.375rem;
	margin-bottom: 0.875rem;
	transition: all var(--transition);
}

.industry-card:hover .industry-card-icon {
	background: linear-gradient(135deg, var(--vc-ocean), var(--vc-primary));
	color: var(--vc-white);
}

.industry-card-title {
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.3;
}

/* ── Prompt 2: Section 12 — Testimonials ── */
.testimonials-section {
	background: var(--vc-white);
}

.testimonials-carousel {
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-card {
	background: var(--vc-light);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-xl);
	padding: 3rem 2.5rem;
	text-align: center;
	margin: 0 1rem;
}

.testimonial-stars {
	color: var(--vc-gold);
	font-size: 1rem;
	margin-bottom: 1.25rem;
	display: flex;
	justify-content: center;
	gap: 0.25rem;
}

.testimonial-quote {
	font-size: 1.0625rem;
	color: var(--vc-dark);
	line-height: 1.75;
	font-style: italic;
	margin-bottom: 1.5rem;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.testimonial-avatar {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vc-white);
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

.testimonial-name {
	display: block;
	font-family: var(--font-heading);
	font-weight: 600;
	font-style: normal;
	font-size: 1rem;
	color: var(--vc-primary);
}

.testimonial-company {
	display: block;
	font-size: 0.8125rem;
	color: var(--vc-gray);
}

.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
	width: 44px;
	height: 44px;
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	opacity: 1;
}

.testimonials-carousel .carousel-control-prev {
	left: -22px;
}

.testimonials-carousel .carousel-control-next {
	right: -22px;
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
	filter: invert(27%) sepia(50%) saturate(1000%) hue-rotate(182deg);
	width: 1.25rem;
	height: 1.25rem;
}

.testimonials-carousel .carousel-indicators {
	margin-bottom: -2.5rem;
}

.testimonials-carousel .carousel-indicators button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--vc-border);
	border: none;
	opacity: 1;
}

.testimonials-carousel .carousel-indicators button.active {
	background: var(--vc-ocean);
}

/* ── Prompt 2: Section 13 — FAQ ── */
.faq-intro {
	color: var(--vc-gray);
	margin-bottom: 1.5rem;
	line-height: 1.7;
}

.faq-accordion .accordion-item {
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-md) !important;
	margin-bottom: 0.75rem;
	overflow: hidden;
	background: var(--vc-white);
}

.faq-accordion .accordion-button {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--vc-primary);
	padding: 1.125rem 1.5rem;
	background: var(--vc-white);
	box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
	background: var(--vc-light);
	color: var(--vc-ocean);
}

.faq-accordion .accordion-button:focus {
	box-shadow: 0 0 0 0.2rem rgba(11, 111, 191, 0.15);
}

.faq-accordion .accordion-body {
	font-size: 0.9375rem;
	color: var(--vc-gray);
	line-height: 1.7;
	padding: 0 1.5rem 1.25rem;
}

/* ── Prompt 2: Section 14 — CTA ── */
.cta-section {
	position: relative;
	padding: 120px 0;
	overflow: hidden;
}

.cta-background {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--vc-primary);
}

.cta-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(8, 44, 84, 0.92), rgba(11, 111, 191, 0.78));
}

.cta-content {
	position: relative;
	z-index: 2;
	max-width: 700px;
	margin: 0 auto;
}

.cta-headline {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	color: var(--vc-white);
	margin-bottom: 1rem;
}

.cta-text {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 2rem;
	line-height: 1.75;
}

.cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
}

/* ── Prompt 2: Section 15 — Latest News ── */
.news-card {
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: all var(--transition);
}

.news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.news-card-image {
	display: block;
	overflow: hidden;
}

.news-card-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
	transform: scale(1.05);
}

.news-card-placeholder {
	height: 200px;
	background: linear-gradient(135deg, var(--vc-light), rgba(11, 111, 191, 0.08));
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--vc-ocean);
	font-size: 2.5rem;
}

.news-card-body {
	padding: 1.5rem;
}

.news-card-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.8125rem;
	color: var(--vc-gray);
	margin-bottom: 0.625rem;
}

.news-card-category {
	color: var(--vc-ocean);
	font-weight: 600;
}

.news-card-title {
	font-size: 1.0625rem;
	margin-bottom: 0.625rem;
}

.news-card-title a {
	color: var(--vc-primary);
}

.news-card-title a:hover {
	color: var(--vc-ocean);
}

.news-card-excerpt {
	font-size: 0.875rem;
	color: var(--vc-gray);
	margin-bottom: 1rem;
	line-height: 1.6;
}

.news-card-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	color: var(--vc-ocean);
	transition: gap var(--transition);
}

.news-card-link:hover {
	gap: 0.625rem;
	color: var(--vc-gold);
}

/* ── Prompt 2: Section 16 — Partners Marquee ── */
.partners-marquee {
	overflow: hidden;
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
	display: flex;
	width: max-content;
	animation: marqueeScroll 30s linear infinite;
}

.partners-marquee:hover .partners-track {
	animation-play-state: paused;
}

@keyframes marqueeScroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.partner-logo-item {
	flex-shrink: 0;
	padding: 0 1.5rem;
}

.partner-logo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 72px;
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-md);
	transition: all var(--transition);
}

.partner-logo-placeholder:hover {
	border-color: var(--vc-ocean);
	box-shadow: var(--shadow-sm);
}

.partner-abbr {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 1rem;
	color: var(--vc-primary);
}

.partner-name {
	font-size: 0.5625rem;
	color: var(--vc-gray);
	margin-top: 0.2rem;
	text-align: center;
	max-width: 140px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* ── Prompt 2: Section 17 — Full Footer ── */

.footer-main {
	padding: 4rem 0 3rem;
}

.footer-brand .site-logo-text {
	color: var(--vc-white);
	margin-bottom: 1rem;
}

.footer-brand .site-logo-text:hover {
	color: var(--vc-gold);
}

.footer-tagline {
	font-size: 0.9375rem;
	line-height: 1.65;
	margin-bottom: 1.5rem;
	max-width: 320px;
}

.footer-social.vc-social-icons a {
	width: 36px;
	height: 36px;
	font-size: 0.9375rem;
}

.footer-heading {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1rem;
	color: var(--vc-white);
	margin-bottom: 1.25rem;
	position: relative;
	padding-bottom: 0.75rem;
}

.footer-heading::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30px;
	height: 2px;
	background: var(--vc-gold);
}

.footer-menu li {
	margin-bottom: 0.625rem;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	transition: all var(--transition);
}

.footer-menu a:hover {
	color: var(--vc-gold);
	padding-left: 4px;
}

.footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.875rem;
	font-size: 0.9375rem;
}

.footer-contact i {
	color: var(--vc-gold);
	margin-top: 0.2rem;
	flex-shrink: 0;
}

.footer-contact a {
	color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
	color: var(--vc-gold);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 1.25rem 0;
}

.copyright {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
	margin: 0;
}

.footer-legal a {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
	color: var(--vc-gold);
}

/* Footer Newsletter */
.footer-newsletter {
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding: 2.5rem 0;
}

.newsletter-heading {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 1.25rem;
	color: var(--vc-white);
	margin-bottom: 0.5rem;
}

.newsletter-text {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
}

.newsletter-form .input-group {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-md);
	overflow: hidden;
	padding: 0.25rem;
}

.newsletter-form .form-control {
	background: transparent;
	border: none;
	color: var(--vc-white);
	padding: 0.75rem 1rem;
	font-size: 0.9375rem;
}

.newsletter-form .form-control::placeholder {
	color: rgba(255, 255, 255, 0.45);
}

.newsletter-form .form-control:focus {
	background: transparent;
	box-shadow: none;
	color: var(--vc-white);
}

.footer-powered {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

.footer-powered a {
	color: rgba(255, 255, 255, 0.5);
}

.footer-powered a:hover {
	color: var(--vc-gold);
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	width: 48px;
	height: 48px;
	background: var(--vc-gold);
	color: var(--vc-primary);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px);
	transition: all var(--transition);
	z-index: 1010;
	box-shadow: var(--shadow-md);
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.back-to-top:hover {
	background: var(--vc-ocean);
	color: var(--vc-white);
	transform: translateY(-4px);
}

/* ==========================================================================
   Content Templates
   ========================================================================== */

.page-header {
	background: var(--vc-light);
}

.page-title {
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 0;
}

.content-card {
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow var(--transition);
}

.content-card:hover {
	box-shadow: var(--shadow-md);
}

.content-card-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.content-card-body {
	padding: 1.5rem;
}

.content-card-title {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.content-card-title a {
	color: var(--vc-primary);
}

.content-card-title a:hover {
	color: var(--vc-ocean);
}

.content-card-meta {
	font-size: 0.8125rem;
	margin-bottom: 0.75rem;
}

.content-card-link {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

/* 404 Page */
.error-404 {
	min-height: 50vh;
	display: flex;
	align-items: center;
}

.error-icon i {
	font-size: 4rem;
	color: var(--vc-ocean);
}

.error-code {
	font-size: 6rem;
	font-weight: 700;
	color: var(--vc-primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.error-title {
	font-size: 1.75rem;
	margin-bottom: 1rem;
}

.error-message {
	color: var(--vc-gray);
	max-width: 480px;
	margin: 0 auto;
}

/* Sidebar */
.sidebar .widget {
	background: var(--vc-light);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}

.sidebar .widget-title {
	font-size: 1rem;
	margin-bottom: 1rem;
}

/* Pagination */
.pagination-nav .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	margin: 0 0.25rem;
	border-radius: var(--radius-sm);
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--vc-dark);
	background: var(--vc-light);
	transition: all var(--transition);
}

.pagination-nav .page-numbers.current,
.pagination-nav .page-numbers:hover {
	background: var(--vc-ocean);
	color: var(--vc-white);
}

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-in-up,
.fade-in-left,
.fade-in-right {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left {
	transform: translateX(-30px);
}

.fade-in-right {
	transform: translateX(30px);
}

.fade-in-up.is-visible,
.fade-in-left.is-visible,
.fade-in-right.is-visible {
	opacity: 1;
	transform: translate(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.fade-in-up, .fade-in-left, .fade-in-right {
		opacity: 1;
		transform: none;
		transition: none;
	}
	.partners-track {
		animation: none;
	}
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
