/**
 * Homepage Styles
 * Modern design with logo colors (blue and green)
 *
 * @package Together_Theme
 */

/* ============================================
   Base Reset
   ============================================ */
* {
	box-sizing: border-box;
}

/* ============================================
   Typography - Open Sans (inherited from body)
   ============================================ */

/* ============================================
   Color Variables - Brand Guide Colors
   ============================================ */
:root {
	--together-dark-teal: #1f3441;
	--together-dark-blue: #0f172a;
	--together-blue: #447AB3; /* Brand Blue from brand guide */
	--together-green: #97C354; /* Brand Green from brand guide */
	--together-white: #ffffff;
	--together-text-light: rgba(255, 255, 255, 0.9);
	--together-text-muted: rgba(255, 255, 255, 0.7);
	
	/* Brand color tints */
	--together-blue-90: rgba(68, 122, 179, 0.9);
	--together-blue-70: rgba(68, 122, 179, 0.7);
	--together-blue-50: rgba(68, 122, 179, 0.5);
	--together-blue-30: rgba(68, 122, 179, 0.3);
	--together-blue-10: rgba(68, 122, 179, 0.1);
	--together-green-90: rgba(151, 195, 84, 0.9);
	--together-green-70: rgba(151, 195, 84, 0.7);
	--together-green-50: rgba(151, 195, 84, 0.5);
	--together-green-30: rgba(151, 195, 84, 0.3);
	--together-green-10: rgba(151, 195, 84, 0.1);
}

/* ============================================
   Base Layout Fixes
   ============================================ */
.together-homepage {
	width: 100%;
	overflow-x: hidden;
}

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

/* Ensure proper display for common elements */
.together-homepage section {
	display: block;
	width: 100%;
}

.together-homepage .section-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

/* ============================================
   Header Styles
   ============================================ */
.together-header {
	background: #fff; /* White background */
	padding: 20px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.header-left {
	flex-shrink: 0;
}

.site-branding .site-logo,
.site-branding .custom-logo-link {
	display: block;
	text-decoration: none;
}

.site-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	text-transform: lowercase;
	letter-spacing: -0.5px;
}

.main-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 30px;
	align-items: center;
}

.nav-menu li {
	margin: 0;
}

.nav-menu a {
	color: #1a1a1a; /* Black text */
	text-decoration: none;
	font-weight: 500;
	font-size: 1rem;
	transition: color 0.3s ease;
	padding: 8px 0;
}

.nav-menu a:hover {
	color: var(--together-blue);
}

.header-right {
	display: flex;
	gap: 12px;
	align-items: center;
}

.header-cta-button {
	padding: 10px 20px;
	border-radius: 25px;
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.header-cta-cyan {
	background: var(--together-blue);
	color: var(--together-white);
}


.header-cta-pink {
	background: var(--together-green);
	color: var(--together-white);
}

.header-cta-pink:hover {
	background: #6bb81a;
	color: var(--together-white);
	text-decoration: none;
}

/* Account Menu */
.account-menu-wrapper {
	position: relative;
}

.account-menu-trigger {
	display: flex;
	align-items: center;
	gap: 10px;
	background: none;
	border: none;
	color: #1a1a1a; /* Black text */
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 8px;
	transition: background 0.3s ease;
	font-family: "Open Sans", sans-serif;
	font-size: 0.9375rem;
}

.account-menu-trigger:hover {
	background: rgba(0, 0, 0, 0.05);
}

.account-menu-trigger[aria-expanded="true"] {
	background: rgba(0, 0, 0, 0.1);
}

.account-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.account-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.account-name {
	font-weight: 500;
}

.account-dropdown-icon {
	width: 16px;
	height: 16px;
	transition: transform 0.3s ease;
}

.account-menu-trigger[aria-expanded="true"] .account-dropdown-icon {
	transform: rotate(180deg);
}

.account-menu-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	min-width: 240px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	z-index: 1000;
	overflow: hidden;
}

.account-menu-wrapper.active .account-menu-dropdown,
.account-menu-dropdown.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.account-menu-list {
	list-style: none;
	padding: 8px 0;
	margin: 0;
}

.account-menu-list li {
	margin: 0;
}

.account-menu-list a {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 20px;
	color: #1a1a1a;
	text-decoration: none;
	font-size: 0.9375rem;
	transition: background 0.2s ease;
	font-family: "Open Sans", sans-serif;
}

.account-menu-list a:hover {
	background: #f5f5f5;
	color: #1a1a1a;
	text-decoration: none;
}

.account-menu-list a svg {
	flex-shrink: 0;
	color: #666;
	width: 20px;
	height: 20px;
}

.account-menu-list a:hover svg {
	color: var(--together-blue);
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 4px;
	padding: 8px;
}

.menu-toggle-icon {
	width: 24px;
	height: 2px;
	background: #1a1a1a; /* Black for white background */
	transition: all 0.3s ease;
}

/* ============================================
   Hero Banner Section
   ============================================ */
.together-hero-banner {
	position: relative;
	overflow: hidden;
	min-height: 600px;
	padding: 80px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* Fallback gradient background when no image is set */
	background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
}

.hero-background-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	filter: blur(8px);
	-webkit-filter: blur(8px);
	transform: scale(1.1); /* Prevents blur edge artifacts */
	z-index: 0;
}

.hero-background-image::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.3); /* Dark overlay for better text readability */
	z-index: 1;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
	width: 100%;
	text-align: center;
}

.hero-content {
	color: #fff;
	position: relative;
	z-index: 10;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 40px;
	color: #fff;
	text-align: center;
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.5rem;
		margin-bottom: 30px;
	}
}

.hero-control-box {
	background: transparent;
	border: 1px solid #fff;
	border-radius: 12px;
	padding: 10px 50px;
	margin: 0 auto 30px;
	max-width: 850px;
}

.control-box-text {
	color: #fff;
	font-size: calc(1.5rem + 4px);
	line-height: 1.5;
	margin-bottom: 6px;
	text-align: center;
}

.control-box-text:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.hero-control-box {
		padding: 20px 25px;
	}
	
	.control-box-text {
		font-size: 1.25rem;
	}
}

.hero-description {
	font-size: 1.125rem;
	color: #fff;
	margin-bottom: 40px;
	line-height: 1.7;
	text-align: center;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 768px) {
	.hero-description {
		font-size: 1rem;
		margin-bottom: 30px;
	}
}

.hero-cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.hero-cta-button {
	display: inline-block;
	padding: 16px 40px;
	font-size: 1.125rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
	font-family: "Open Sans", sans-serif;
}

.hero-cta-primary {
	background: #6BCB77; /* Light green */
	color: #fff;
	border-color: #6BCB77;
}

.hero-cta-primary:hover {
	background: #5AB868;
	border-color: #5AB868;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(107, 203, 119, 0.4);
	color: #fff;
}

.hero-cta-secondary {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
	color: #fff;
}

@media (max-width: 768px) {
	.hero-cta-button {
		padding: 14px 32px;
		font-size: 1rem;
		width: 100%;
		max-width: 280px;
	}
	
	.hero-cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

.hero-disclaimer {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	margin-top: 20px;
	margin-bottom: 0;
}

/* ============================================
   Latest Jobs Section (Card Format)
   ============================================ */
.together-latest-jobs {
	padding: 80px 20px;
	background: #fff;
}

.together-latest-jobs .container {
	max-width: 1200px;
	margin: 0 auto;
}

.together-latest-jobs .section-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 40px;
}

.together-latest-jobs .section-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 10px;
	text-align: center;
}

.together-latest-jobs .section-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.job-type-filters {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 10px 24px;
	border: 1px solid #e0e0e0;
	border-radius: 25px;
	background: #fff;
	color: #666;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Open Sans", sans-serif;
}

.filter-btn:hover {
	background: #f5f5f5;
}

.filter-btn.active {
	background: #447AB3;
	color: #fff;
	border-color: #447AB3;
}

.latest-jobs-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.latest-job-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.latest-job-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.latest-job-card.hidden {
	display: none;
}

.latest-job-card.load-more-hidden {
	display: none;
}

/* Latest Jobs Load More */
.latest-jobs-load-more-wrapper {
	text-align: center;
	margin-top: 40px;
}

.latest-jobs-load-more-btn {
	background: var(--together-blue);
	color: var(--together-white);
	border: none;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Open Sans", sans-serif;
}

.latest-jobs-load-more-btn:hover {
	background: #3a7bc8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(68, 122, 179, 0.3);
}

.job-card-content {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.job-company-logo {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
}

.job-company-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-logo-placeholder {
	width: 100%;
	height: 100%;
	background: #447AB3;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
}

.job-details-main {
	flex: 1;
}

.job-title-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.job-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.job-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
}

.job-title a:hover {
	color: #447AB3;
}

.job-badge {
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
}

.featured-badge {
	background: #34A853;
	color: #fff;
}

.filled-badge {
	background: #ff4444;
	color: #fff;
}

.job-meta-row {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.job-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #666;
}

.job-meta-icon {
	width: 16px;
	height: 16px;
	color: #999;
	flex-shrink: 0;
}

.job-tags-row {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.job-tag {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

.job-type-tag {
	background: #e3f2fd;
	color: #447AB3;
}

.urgent-tag {
	background: #fff3e0;
	color: #ff9800;
}

.job-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.bookmark-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
	transition: color 0.3s ease;
	padding: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bookmark-btn:hover {
	color: #447AB3;
}

.apply-now-btn {
	padding: 10px 24px;
	background: #447AB3;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.apply-now-btn:hover {
	background: #2d3dd3;
	color: #fff;
	text-decoration: none;
	transform: translateY(-1px);
}

.deadline-closed {
	font-size: 14px;
	color: #999;
	font-style: italic;
}

.together-latest-jobs .no-jobs {
	text-align: center;
	padding: 40px 0;
	color: #999;
	font-size: 16px;
}

/* ============================================
   Featured Jobs Section (Legacy)
   ============================================ */
.together-featured-jobs {
	padding: 100px 20px;
	background: var(--together-white);
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
	flex-wrap: wrap;
	gap: 20px;
}

.together-featured-jobs .section-header {
	justify-content: center;
	text-align: center;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--together-dark-teal);
	margin: 0;
	line-height: 1.2;
}

.section-subtitle {
	font-size: 1.125rem;
	color: #64748b;
	margin: 10px 0 0 0;
}

.browse-all-link {
	color: var(--together-blue);
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: color 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.browse-all-link:hover {
	color: #3a7bc8;
	text-decoration: underline;
}

.jobs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 24px;
}

.job-card {
	background: var(--together-white);
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	transition: all 0.3s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	position: relative;
}

.job-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.job-card-cta {
	background: #dc2626;
	border-color: #dc2626;
}

.job-card-cta:hover {
	background: #b91c1c;
}

.job-cta-link {
	color: var(--together-white);
	text-decoration: none;
	font-weight: 700;
	font-size: 1.125rem;
	display: block;
	text-align: center;
	padding: 20px 0;
}

.job-location-top {
	font-size: 0.75rem;
	color: #64748b;
	margin-bottom: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.job-title {
	font-size: 1.125rem;
	font-weight: 600;
	margin: 0 0 16px 0;
	line-height: 1.4;
}

.job-title a {
	color: var(--together-dark-teal);
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.job-title a:hover {
	color: var(--together-blue);
}

.job-details {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 16px;
}

.job-detail-item {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #64748b;
	font-size: 0.875rem;
}

.job-icon {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	color: #64748b;
}

.job-posted-date {
	font-size: 0.75rem;
	color: #94a3b8;
	text-align: right;
	margin-top: auto;
	padding-top: 12px;
}

/* ============================================
   Why Us Section
   ============================================ */
/* Legacy why-us styles - kept for backwards compatibility if needed */
.together-why-us {
	padding: 100px 20px;
	background: var(--together-white);
	color: var(--together-dark-teal);
}

/* ============================================
   What Together We Succeed Is - And Isn't Section
   ============================================ */
.together-what-is-isnt {
	padding: 80px 20px;
	background: #fff;
}

.together-what-is-isnt .container {
	max-width: 1200px;
	margin: 0 auto;
}

.together-what-is-isnt .section-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

.together-what-is-isnt .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #447AB3;
	margin: 0;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-align: center;
}

.what-is-isnt-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
}

.what-box {
	border-radius: 24px;
	padding: 50px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	min-height: 400px;
}

.what-it-is-box {
	background: #F0FDF4; /* Light green background */
}

.what-it-isnt-box {
	background: #E3F2FD; /* Light blue background */
}

.card-background-blobs {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	overflow: hidden;
}

.what-it-is-box .blob-1 {
	position: absolute;
	top: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: rgba(107, 203, 119, 0.3); /* Light green blob */
	border-radius: 50% 30% 60% 40% / 50% 40% 60% 30%;
	transform: rotate(45deg);
	z-index: 1;
}

.what-it-is-box .blob-2 {
	position: absolute;
	bottom: -30px;
	left: -30px;
	width: 200px;
	height: 200px;
	background: rgba(151, 195, 84, 0.4); /* Medium green blob */
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	transform: rotate(-30deg);
	z-index: 1;
}

.what-it-isnt-box .blob-1 {
	position: absolute;
	bottom: -50px;
	right: -50px;
	width: 300px;
	height: 300px;
	background: rgba(68, 122, 179, 0.3); /* Light blue blob */
	border-radius: 50% 30% 60% 40% / 50% 40% 60% 30%;
	transform: rotate(-45deg);
	z-index: 1;
}

.what-it-isnt-box .blob-2 {
	position: absolute;
	top: -30px;
	left: -30px;
	width: 200px;
	height: 200px;
	background: rgba(135, 206, 250, 0.4); /* Light blue blob */
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	transform: rotate(30deg);
	z-index: 1;
}

.card-content {
	flex: 1;
	z-index: 3;
	position: relative;
	max-width: 70%;
}

.what-box .card-title {
	font-size: 2rem;
	font-weight: 700;
	margin: 0 0 30px;
	line-height: 1.2;
	text-align: center;
}

.what-it-is-box .card-title {
	color: #1a1a1a;
}

.what-it-isnt-box .card-title {
	color: #1a1a1a;
}

.card-items {
	list-style: none;
	padding: 0;
	margin: 0;
}

.card-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.card-item:last-child {
	margin-bottom: 0;
}

.item-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.item-text {
	font-size: 1rem;
	line-height: 1.7;
}

.what-it-is-box .item-text {
	color: #1a1a1a;
}

.what-it-isnt-box .item-text {
	color: #1a1a1a;
}

@media (max-width: 1024px) {
	.what-box {
		min-height: 350px;
		padding: 40px 30px;
	}
	
	.card-content {
		max-width: 100%;
	}
}

@media (max-width: 768px) {
	.together-what-is-isnt {
		padding: 60px 20px;
	}
	
	.together-what-is-isnt .section-title {
		font-size: 2rem;
	}
	
	.what-is-isnt-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.what-box {
		min-height: 350px;
		padding: 40px 30px;
	}
	
	.what-box .card-title {
		font-size: 1.75rem;
		margin-bottom: 24px;
	}
	
	.item-text {
		font-size: 0.9375rem;
	}
}

.benefits-carousel {
	display: flex;
	gap: 30px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 20px 0;
}

.benefit-item {
	background: var(--together-white);
	border: 2px solid #e5e7eb;
	border-radius: 20px;
	padding: 50px;
	text-align: center;
	min-width: 100%;
	flex-shrink: 0;
	scroll-snap-align: start;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
	font-size: 4rem;
	margin-bottom: 30px;
}

.benefit-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--together-dark-teal);
	margin-bottom: 20px;
}

.benefit-description {
	font-size: 1.125rem;
	color: #64748b;
	line-height: 1.8;
}

.carousel-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

.carousel-prev,
.carousel-next {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--together-white);
	border: 2px solid #e5e7eb;
	font-size: 1.75rem;
	color: var(--together-dark-teal);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.carousel-prev:hover,
.carousel-next:hover {
	background: var(--together-blue);
	border-color: var(--together-blue);
	color: var(--together-white);
	transform: scale(1.1);
}

.carousel-dots {
	display: flex;
	gap: 10px;
}

.carousel-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: var(--together-blue);
	width: 32px;
	border-radius: 6px;
}

/* ============================================
   Testimonials Section
   ============================================ */
.together-testimonials {
	padding: 100px 20px;
	background: var(--together-white);
	color: var(--together-dark-teal);
}

.together-testimonials .section-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 60px;
}

.together-testimonials .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 15px 0;
	line-height: 1.2;
	text-align: center;
}

.together-testimonials .section-subtitle {
	font-size: 1rem;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

.testimonials-slider-wrapper {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.testimonials-slider {
	display: flex;
	gap: 30px;
	overflow: hidden;
	margin-bottom: 40px;
}

.testimonial-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	flex: 0 0 calc(33.333% - 20px);
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.testimonial-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transform: translateY(-4px);
}

.testimonial-card-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
	position: relative;
}

.testimonial-avatar {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
	background: #f0f0f0;
}

.testimonial-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.testimonial-avatar-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5e7eb;
}

.testimonial-avatar-placeholder .testimonial-avatar-img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
}

.testimonial-author-info {
	flex: 1;
	min-width: 0;
}

.testimonial-author-name {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 5px 0;
	line-height: 1.3;
}

.testimonial-author-role {
	font-size: 0.875rem;
	color: #64748b;
	margin: 0;
	line-height: 1.4;
}

.testimonial-quote-icon {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	opacity: 0.3;
}

.testimonial-quote-icon svg {
	width: 100%;
	height: 100%;
}

.testimonial-card-content {
	flex: 1;
}

.testimonial-text {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: #4a5568;
	margin: 0;
}

.testimonials-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 40px;
}

.testimonial-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #e5e7eb;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.testimonial-dot:hover {
	background: #cbd5e0;
}

.testimonial-dot.active {
	background: #1a1a1a;
	width: 12px;
	height: 12px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.testimonial-card {
		flex: 0 0 calc(50% - 15px);
	}
}

@media (max-width: 768px) {
	.together-testimonials {
		padding: 60px 20px;
	}
	
	.together-testimonials .section-title {
		font-size: 2rem;
	}
	
	.testimonial-card {
		flex: 0 0 100%;
	}
	
	.testimonials-slider {
		gap: 20px;
	}
}

/* ============================================
   Companies & Candidates Sections
   ============================================ */
.together-companies,
.together-candidates {
	padding: 100px 20px;
	background: var(--together-white);
}

.companies-carousel-wrapper,
.candidates-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
}

.companies-carousel,
.candidates-carousel {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	flex: 1;
	padding: 10px 0;
}

.companies-carousel::-webkit-scrollbar,
.candidates-carousel::-webkit-scrollbar {
	display: none;
}

.companies-carousel,
.candidates-carousel {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

.carousel-nav {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--together-dark-teal);
	border: 2px solid var(--together-dark-teal);
	font-size: 1.75rem;
	color: var(--together-white);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.carousel-nav:hover {
	background: var(--together-blue);
	border-color: var(--together-blue);
	transform: scale(1.1);
}

.company-card,
.candidate-card {
	background: var(--together-white);
	border: 2px solid #e5e7eb;
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	min-width: 220px;
	flex-shrink: 0;
	scroll-snap-align: start;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-card:hover,
.candidate-card:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transform: translateY(-4px);
	border-color: var(--together-blue);
}

.company-link,
.candidate-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.company-logo,
.candidate-photo {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	margin: 0 auto 20px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--together-cyan) 0%, var(--together-pink) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-logo img,
.candidate-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-logo.placeholder,
.candidate-photo.placeholder {
	background: linear-gradient(135deg, var(--together-blue) 0%, var(--together-green) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.business-icon,
.person-icon {
	width: 48px;
	height: 48px;
	color: var(--together-white);
}

.company-name,
.candidate-name {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--together-dark-teal);
	margin: 0 0 16px 0;
}

.view-profile-btn {
	padding: 12px 24px;
	background: var(--together-blue);
	color: var(--together-white);
	border: none;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 100%;
}

.view-profile-btn:hover {
	background: #3a7bc8;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(74, 144, 226, 0.4);
}

.carousel-pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}

.pagination-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pagination-dot.active {
	background: var(--together-blue);
	width: 32px;
	border-radius: 6px;
}

/* ============================================
   Recent News Section
   ============================================ */
.together-recent-news {
	padding: 100px 20px;
	background: var(--together-white);
	color: var(--together-dark-teal);
}

.together-recent-news .section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 50px;
	flex-wrap: wrap;
	gap: 20px;
}

.together-recent-news .section-header-left {
	flex: 1;
	min-width: 300px;
}

.together-recent-news .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1e3a5f;
	margin: 0 0 10px 0;
	line-height: 1.2;
}

.together-recent-news .section-description {
	font-size: 1rem;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

.together-recent-news .section-header-right {
	display: flex;
	align-items: center;
}

.together-recent-news .browse-all-link {
	color: #447AB3;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 600;
	transition: color 0.3s ease;
	white-space: nowrap;
}

.together-recent-news .browse-all-link:hover {
	color: #2d3dd3;
	text-decoration: none;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

@media (max-width: 1200px) {
	.news-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1024px) {
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.news-grid {
		grid-template-columns: 1fr;
	}
}

.news-load-more-wrapper {
	text-align: center;
	margin-top: 50px;
}

.news-load-more-btn {
	padding: 14px 32px;
	background: #447AB3;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Open Sans", sans-serif;
}

.news-load-more-btn:hover {
	background: #2d3dd3;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(68, 122, 179, 0.4);
}

.news-load-more-btn.loading {
	opacity: 0.7;
	cursor: not-allowed;
}

.news-card {
	background: var(--together-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	transform: translateY(-2px);
}

.news-image-link {
	display: block;
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 aspect ratio */
	background: #f0f0f0;
}

.news-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
	border-radius: 12px 12px 0 0;
}

.news-image-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.news-image-placeholder svg {
	width: 100%;
	height: 100%;
}

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

.news-content {
	padding: 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.news-meta {
	font-size: 0.875rem;
	color: #64748b;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.news-date {
	color: #64748b;
}

.news-separator {
	color: #1a1a1a;
	font-weight: 600;
}

.news-comments {
	color: #64748b;
}

.news-title {
	font-size: 1rem;
	font-weight: 400;
	margin: 0;
	line-height: 1.4;
	flex: 1;
}

.news-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}

.news-title a:hover {
	color: #447AB3;
}

.no-jobs,
.no-companies,
.no-candidates,
.no-news,
.no-testimonials {
	text-align: center;
	padding: 80px 20px;
	color: #64748b;
	font-size: 1.125rem;
}

/* ============================================
   Footer Styles
   ============================================ */
.together-footer {
	background: rgba(68, 122, 179, 0.08); /* Light blue background */
	color: #1a1a1a;
	padding: 60px 0 30px;
	position: relative;
	overflow: hidden;
}

/* Add soft blob shapes to footer */
.together-footer::before,
.together-footer::after {
	content: '';
	position: absolute;
	width: 500px;
	height: 500px;
	border-radius: 50% 30% 60% 40% / 50% 40% 60% 30%;
	z-index: 1;
	pointer-events: none;
	opacity: 0.6;
}

.together-footer::before {
	top: -150px;
	left: -150px;
	background: rgba(68, 122, 179, 0.15); /* Muted blue blob */
	transform: rotate(45deg);
}

.together-footer::after {
	bottom: -150px;
	right: -150px;
	background: rgba(68, 122, 179, 0.2); /* Slightly darker muted blue blob */
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	transform: rotate(-30deg);
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
	position: relative;
	z-index: 2;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.footer-discover-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	margin: 0;
}

.footer-nav-buttons {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-nav-menu li {
	margin: 0;
}

.footer-nav-menu a {
	padding: 10px 20px;
	border: 2px solid #447AB3;
	border-radius: 25px;
	color: #1a1a1a; /* Black text */
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
	transition: all 0.3s ease;
}

.footer-nav-menu a:hover {
	border-color: #447AB3;
	background: rgba(68, 122, 179, 0.1);
	color: #447AB3;
}

.footer-middle {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 60px;
	position: relative;
	z-index: 2;
}

.footer-column-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	margin: 0 0 20px 0;
}

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

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

.footer-links a {
	color: #1a1a1a; /* Black text */
	text-decoration: none;
	font-size: 0.9375rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #447AB3; /* Blue on hover */
}

/* Update testimonial quote icon color for white background */
.together-testimonials .testimonial-quote-icon {
	color: var(--together-blue);
	opacity: 0.2;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 40px;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	flex-wrap: wrap;
	gap: 30px;
	position: relative;
	z-index: 2;
}

.footer-logo .site-logo-footer,
.footer-logo .custom-logo-link {
	display: block;
	margin-bottom: 16px;
}

.site-title-footer {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	text-transform: lowercase;
}

.footer-copyright {
	color: #1a1a1a; /* Black text */
	font-size: 0.9375rem;
	margin: 0;
}

.footer-social {
	display: flex;
	gap: 12px;
}

.social-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid #447AB3;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1a1a1a; /* Black text */
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 1.125rem;
}

.social-icon:hover {
	border-color: var(--together-blue);
	background: rgba(74, 144, 226, 0.1);
	color: var(--together-blue);
	transform: translateY(-2px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
	.hero-container {
		grid-template-columns: 1fr;
		gap: 50px;
	}
	
	.hero-right-section {
		height: 500px;
	}
	
	.hero-person-image {
		width: 250px;
		height: 400px;
	}
	
	.testimonial-item {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.header-container {
		flex-wrap: wrap;
	}
	
	.menu-toggle {
		display: flex;
	}
	
	.main-navigation {
		order: 3;
		width: 100%;
		margin-top: 20px;
	}
	
	.nav-menu {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		display: none;
	}
	
	.nav-menu.active {
		display: flex;
	}
	
	.header-right {
		margin-left: auto;
	}
	
	.hero-container {
		grid-template-columns: 1fr;
		gap: 40px;
		padding-bottom: 60px;
	}

	.hero-right-section {
		height: 400px;
		order: -1;
	}
	
	.hero-person-image {
		width: 200px;
		height: 350px;
	}
	
	.corporate-logos {
		gap: 15px;
	}
	
	.logo-circle {
		width: 50px;
		height: 50px;
	}
	
	.logo-circle svg {
		width: 20px;
		height: 20px;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-title .highlight-blue {
		font-size: 2.8rem;
	}
	
	.search-form-wrapper {
		flex-direction: column;
		border-radius: 12px;
		padding: 12px;
	}

	.search-input-group {
		border-bottom: 1px solid #e0e0e0;
		padding: 12px 0;
	}

	.search-input-group:last-of-type {
		border-bottom: none;
	}

	.search-button {
		width: 100%;
		border-radius: 8px;
		margin-top: 8px;
	}

	.hero-companies {
		justify-content: center;
		gap: 20px;
	}
	
	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.section-title {
		font-size: 2rem;
	}
	
	.jobs-grid,
	.news-grid {
		grid-template-columns: 1fr;
	}
	
	.benefits-tabs {
		flex-direction: column;
		width: 100%;
	}
	
	.tab-button {
		width: 100%;
	}
	
	.benefit-item {
		padding: 30px 20px;
	}
	
	.companies-carousel-wrapper,
	.candidates-carousel-wrapper,
	.testimonials-carousel-wrapper {
		flex-direction: column;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}
	
	.carousel-nav,
	.testimonial-nav {
		position: absolute;
		z-index: 2;
	}
	
	.carousel-nav.prev,
	.testimonial-nav.prev {
		left: 10px;
	}
	
	.carousel-nav.next,
	.testimonial-nav.next {
		right: 10px;
	}

	.benefits-tabs {
		flex-direction: column;
		width: 100%;
	}

	.tab-button {
		width: 100%;
	}

	.benefit-content-wrapper {
		padding: 30px 20px;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}
	
	.news-load-more-btn {
		width: 100%;
	}

	.jobs-grid {
		grid-template-columns: 1fr;
	}
	
	.job-card-content {
		flex-direction: column;
		gap: 16px;
	}
	
	.job-actions {
		width: 100%;
		justify-content: space-between;
	}
	
	.apply-now-btn {
		flex: 1;
		text-align: center;
	}
	
	.footer-top {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

/* ============================================
   Most Popular Jobs Section
   ============================================ */
.together-popular-jobs {
	padding: 80px 0;
	background-color: #fff;
}

.together-popular-jobs .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.together-popular-jobs .section-header {
	text-align: center;
	margin-bottom: 40px;
}

.together-popular-jobs .section-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 10px;
}

.together-popular-jobs .section-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.job-category-filters {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.filter-tab {
	padding: 10px 24px;
	border: none;
	border-radius: 25px;
	background-color: #f5f5f5;
	color: #666;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Open Sans", sans-serif;
}

.filter-tab:hover {
	background-color: #e0e0e0;
}

.filter-tab.active {
	background-color: #1a1a1a;
	color: #fff;
}

.popular-jobs-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.popular-job-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-job-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.job-card-header {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 16px;
}

.company-logo {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.company-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.company-logo.placeholder {
	background: var(--together-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
}

.job-title-wrapper {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.job-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
}

.job-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s ease;
}

.job-title a:hover {
	color: var(--together-blue);
}

.featured-badge {
	background: var(--together-green);
	color: #fff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 4px;
	text-transform: uppercase;
}

.bookmark-btn {
	background: none;
	border: none;
	cursor: pointer;
	color: #999;
	transition: color 0.3s ease;
	padding: 4px;
}

.bookmark-btn:hover {
	color: var(--together-blue);
}

.job-details {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.job-detail-item {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: #666;
}

.job-icon {
	flex-shrink: 0;
}

.job-badges {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.job-badge {
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

.job-type-badge {
	background: #e3f2fd;
	color: var(--together-blue);
}

.urgent-badge {
	background: #fff3e0;
	color: #ff9800;
}

.popular-job-card.hidden {
	display: none;
}

/* ============================================
   Registration Cards Section
   ============================================ */
/* ============================================
   Registration Cards Section
   ============================================ */
.together-registration-cards {
	padding: 80px 0;
	background-color: #cde7b8;
}

.together-registration-cards .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.together-registration-cards .section-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

.together-registration-cards .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #447AB3;
	margin: 0;
	text-align: center;
}

.registration-cards-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.registration-card {
	background: #fff;
	border: 1px solid #E0E0E0;
	border-radius: 12px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.registration-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.registration-card.highlighted {
	border: 1px solid #6BCB77;
}

.card-icon {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.card-icon svg {
	width: 48px;
	height: 48px;
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #447AB3;
	margin: 0 0 16px;
	line-height: 1.3;
}

.card-description {
	font-size: 0.9375rem;
	color: #666;
	margin: 0;
	line-height: 1.6;
}

/* ============================================
   Pricing Plans Section
   ============================================ */
.together-pricing-plans {
	padding: 80px 0;
	background-color: #fff;
}

.together-pricing-plans .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.together-pricing-plans .section-header {
	text-align: center;
	margin-bottom: 50px;
}

.together-pricing-plans .section-title {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 16px;
}

.together-pricing-plans .section-subtitle {
	font-size: 16px;
	color: #666;
	margin: 0;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.pricing-plans-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.pricing-plan-card {
	background: #fff;
	border-radius: 12px;
	padding: 40px 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pricing-plan-card.highlighted {
	border: 2px solid var(--together-blue);
}

.plan-header {
	margin-bottom: 24px;
}

.plan-name {
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 12px;
}

.plan-price {
	font-size: 36px;
	font-weight: 700;
	color: var(--together-blue);
	margin: 0;
}

.plan-icon {
	margin: 24px 0;
	color: var(--together-blue);
	display: flex;
	justify-content: center;
}

.plan-features {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
	text-align: left;
}

.plan-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 0;
	font-size: 14px;
	color: #666;
}

.check-icon {
	color: var(--together-blue);
	flex-shrink: 0;
}

.plan-button {
	display: inline-block;
	width: 100%;
	padding: 14px 24px;
	background: #f5f5f5;
	color: var(--together-blue);
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	text-align: center;
}

.plan-button:hover {
	background: #e0e0e0;
	color: var(--together-blue);
	text-decoration: none;
}

.plan-button.highlighted {
	background: var(--together-blue);
	color: #fff;
}

.plan-button.highlighted:hover {
	background: #3a7bc8;
	color: #fff;
}

/* ============================================
   Updated Footer Styles
   ============================================ */
/* Footer styles are now in header-footer.css - this section removed to avoid duplication */

.footer-main {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
	gap: 40px;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.footer-brand {
	max-width: 300px;
}

.footer-logo {
	margin-bottom: 20px;
}

.footer-logo-icon {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--together-blue);
	border-radius: 8px;
	text-align: center;
	line-height: 40px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin-right: 12px;
}

.site-title-footer {
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	text-decoration: none;
}

.footer-contact {
	font-size: 14px;
	color: #1a1a1a; /* Black text */
	line-height: 1.8;
}

.contact-label {
	margin: 0 0 8px;
	color: #1a1a1a; /* Black text */
}

.contact-phone {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	margin: 0 0 12px;
}

.contact-address,
.contact-email {
	margin: 0 0 8px;
	color: #1a1a1a; /* Black text */
}

.footer-column-title {
	font-size: 18px;
	font-weight: 700;
	color: #1a1a1a; /* Black text */
	margin: 0 0 20px;
}

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

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

.footer-links a {
	color: #1a1a1a; /* Black text */
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #447AB3; /* Blue on hover */
}

.footer-links a.footer-link-highlight {
	color: #ff6b9d; /* Reddish-pink accent color for highlighted links */
	font-weight: 500;
}

.footer-links a.footer-link-highlight:hover {
	color: #ff8fb3;
}

.footer-apps {
	max-width: 250px;
}

.apps-description {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 20px;
}

.app-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.app-button {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	transition: background 0.3s ease;
}

.app-button:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	text-decoration: none;
}

.app-button svg {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
	.popular-jobs-grid {
		grid-template-columns: 1fr;
	}
	
	.pricing-plans-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-main {
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
}

@media (max-width: 1024px) {
	.registration-cards-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.together-registration-cards .section-title {
		font-size: 2rem;
	}
	
	.registration-cards-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.registration-card {
		padding: 24px;
	}
	
	.card-icon {
		margin-bottom: 16px;
	}
	
	.card-icon svg {
		width: 40px;
		height: 40px;
	}
	
	.card-title {
		font-size: 1.125rem;
		margin-bottom: 12px;
	}
	
	.card-description {
		font-size: 0.875rem;
	}
}

/* ============================================
   How Access Works Section
   ============================================ */
.together-how-access-works {
	padding: 80px 20px;
	background: rgba(68, 122, 179, 0.08); /* Light blue background */
}

.together-how-access-works .container {
	max-width: 1200px;
	margin: 0 auto;
}

.together-how-access-works .section-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

.together-how-access-works .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #447AB3;
	margin: 0 0 20px 0;
	text-decoration: underline;
	text-align: center;
}

.section-disclaimer {
	text-align: center;
	color: #1a1a1a;
	font-size: 1rem;
	margin-top: 30px;
}

.how-access-works-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.access-card {
	background: #fff;
	border: 1px solid #E0E0E0;
	border-radius: 12px;
	padding: 40px 30px;
}

.access-card .card-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 30px 0;
}

.access-card .card-items {
	list-style: none;
	padding: 0;
	margin: 0;
}

.access-card .card-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
}

.access-card .card-item:last-child {
	margin-bottom: 0;
}

.access-card .item-icon {
	flex-shrink: 0;
	margin-top: 2px;
}

.access-card .item-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #1a1a1a;
}

/* ============================================
   Platform Snapshot Section
   ============================================ */
.together-platform-snapshot {
	padding: 80px 20px;
	background: rgba(151, 195, 84, 0.08); /* Light green background */
}

.together-platform-snapshot .container {
	max-width: 1200px;
	margin: 0 auto;
}

.together-platform-snapshot .section-header {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

.together-platform-snapshot .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #447AB3;
	margin: 0;
	text-align: center;
}

.platform-snapshot-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.snapshot-card {
	background: #fff;
	border: 1px solid #E0E0E0;
	border-radius: 12px;
	padding: 30px 20px;
	text-align: center;
}

.snapshot-card.highlighted {
	border: 2px solid #6BCB77;
}

.snapshot-text {
	font-size: 1rem;
	color: #1a1a1a;
	line-height: 1.6;
}

/* ============================================
   Used by Organisations Who Value Access Section
   ============================================ */
.together-orgs-value-access {
	padding: 80px 20px;
	background: rgba(68, 122, 179, 0.05); /* Very light blue background */
}

.together-orgs-value-access .container {
	max-width: 1200px;
	margin: 0 auto;
}

.together-orgs-value-access .section-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}

.together-orgs-value-access .section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #447AB3;
	margin: 0 0 20px 0;
	text-align: center;
}

.section-intro {
	text-align: center;
	color: #1a1a1a;
	font-size: 1.125rem;
	line-height: 1.7;
	margin: 0;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.orgs-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 50px;
}

.testimonial-box {
	background: #fff;
	border: 1px solid #E0E0E0;
	border-radius: 12px;
	padding: 30px;
}

.testimonial-quote {
	font-size: 1.125rem;
	color: #6BCB77;
	line-height: 1.7;
	margin: 0 0 20px 0;
	font-style: normal;
}

.testimonial-attribution {
	display: block;
	font-size: 1rem;
	color: #1a1a1a;
	font-style: normal;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.how-access-works-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	
	.platform-snapshot-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.orgs-testimonials-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.together-how-access-works .section-title {
		font-size: 2rem;
	}
	
	.together-platform-snapshot .section-title {
		font-size: 2rem;
	}
	
	.together-orgs-value-access .section-title {
		font-size: 2rem;
	}
	
	.access-card {
		padding: 30px 20px;
	}
	
	.platform-snapshot-grid {
		grid-template-columns: 1fr;
	}
}
