:root {
	--ac-bg: #000000;
	--ac-surface: #111111;
	--ac-border: #333333;
	--ac-text-primary: #ffffff;
	--ac-text-secondary: #cccccc;
	--ac-accent: #ffffff;
	--ac-radius: 8px;
	--ac-transition: all 0.3s ease;
}

.auxth-careers-wrapper {
	font-family: 'Outfit', sans-serif;
	color: var(--ac-text-primary);
	background-color: var(--ac-bg);
	padding: 0;
	line-height: 1.6;
}

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

.ac-section {
	padding: 80px 0;
}

.ac-heading {
	font-family: 'Marcellus', serif;
	font-weight: 800;
	margin-top: 0;
	color: var(--ac-text-primary);
}

.ac-section-title {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 48px;
}

.ac-text-center {
    text-align: center;
}

.ac-mt-4 {
    margin-top: 24px;
}

/* Hero */
.ac-hero {
	text-align: center;
	padding: 120px 0;
}

.ac-hero-title {
	font-size: 4rem;
	margin-bottom: 24px;
}

.ac-hero-subtitle {
	font-size: 1.1rem;
	color: var(--ac-text-secondary);
	max-width: 800px;
	margin: 0 auto 40px;
}

.ac-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
}

/* Buttons */
.ac-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 32px;
	border-radius: 30px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--ac-transition);
	cursor: pointer;
}

/* Base button styles - Elementor controls can override these */
.ac-btn-primary {
	background-color: #931A1D;
	color: #ffffff;
}

.ac-btn-primary:hover {
	filter: brightness(0.9);
}

.ac-btn-secondary {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

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

/* Grid */
.ac-grid {
	display: grid;
	gap: 24px;
}

.ac-grid-4 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.ac-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Cards */
.ac-card {
	background: var(--ac-surface);
	border: 1px solid var(--ac-border);
	padding: 40px 32px;
	border-radius: var(--ac-radius);
	transition: var(--ac-transition);
    text-align: center;
}

.ac-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-4px);
}

.ac-card-icon {
	color: #931A1D;
	margin-bottom: 24px;
}

.ac-card-title {
    font-family: 'Marcellus', serif;
	font-size: 1.5rem;
	margin: 0 0 16px;
}

.ac-card-text {
	color: var(--ac-text-secondary);
	margin: 0;
	font-size: 1rem;
}

.ac-opp-card {
    padding: 60px 40px;
}

/* Bullets */
.ac-culture {
    background-color: var(--ac-surface);
}
.ac-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}
.ac-bullets li {
    font-size: 1.1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--ac-border);
    display: flex;
    align-items: center;
}
.ac-bullets li:last-child {
    border-bottom: none;
}
.ac-bullet-icon {
    color: #931A1D;
    margin-right: 16px;
    font-weight: bold;
}

/* Process Timeline */
.ac-process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.ac-process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--ac-border);
    z-index: 1;
}
.ac-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 25%;
}
.ac-process-number {
    width: 50px;
    height: 50px;
    background: #931A1D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 16px;
}
.ac-process-title {
    font-size: 1.1rem;
    margin: 0;
}

/* CTA */
.ac-cta {
    background-color: var(--ac-surface);
    padding: 100px 0;
}
.ac-cta-title {
    font-size: 3rem;
    margin-bottom: 16px;
}
.ac-cta-text {
    font-size: 1.2rem;
    color: var(--ac-text-secondary);
    margin-bottom: 40px;
}

/* Animations */
.ac-fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.ac-fade-in.ac-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 768px) {
    .ac-hero-title { font-size: 2.5rem; }
    .ac-hero-actions { flex-direction: column; }
    .ac-process-timeline { flex-direction: column; align-items: center; }
    .ac-process-timeline::before { display: none; }
    .ac-process-step { width: 100%; margin-bottom: 32px; }
}
